/* ============================================
   TESTIMONIALS PAGE STYLES
   Standalone CSS for testimonials.html
   ============================================ */

/* ----- RESET & BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  padding-top: 90px;
  background: #f8f9fa;
}

/* ----- HEADER (Fixed) - Updated to match index ----- */
header {
  background: #ffffff;
  color: #081a2c;
  padding: 8px 5%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 9999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  min-height: 90px;
  max-height: 90px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}

.logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #081a2c;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.logo span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #081a2c;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 5px;
  z-index: 9999;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #081a2c;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #081a2c;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 500;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f0c040;
}

.phone {
  font-weight: bold;
  color: #f0c040;
  font-size: 15px;
  flex-shrink: 0;
}

/* ----- PAGE HEADER ----- */
.page-header {
  background: #081a2c;
  padding: 120px 8% 60px;
  text-align: center;
  border-bottom: 3px solid #f0c040;
}

.page-header h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
}

.page-header h1 span {
  color: #f0c040;
  font-weight: 700;
}

.page-header .subtitle {
  color: #d8dde8;
  font-size: 20px;
  margin-top: 10px;
  font-weight: 300;
}

/* ----- TESTIMONIALS LIST ----- */
.testimonials-list {
  padding: 70px 8%;
  background: #f8f9fa;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-item {
  background: #fff;
  padding: 40px 45px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #f0c040;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-item blockquote {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin: 0 0 20px 0;
  padding: 0;
  quotes: none;
}

.testimonial-item blockquote::before {
  content: '\201C';
  font-size: 48px;
  color: #f0c040;
  font-family: Georgia, serif;
  line-height: 0;
  margin-right: 8px;
  vertical-align: middle;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #081a2c;
  letter-spacing: 0.5px;
}

/* ----- CTA SECTION ----- */
.cta-section {
  position: relative;
  background: url('../img/pattern.png');
  background-size: cover;
  padding: 70px 8%;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 44, 0.92);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-content p {
  color: #d8dde8;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn i {
  margin-right: 10px;
}

.cta-btn.primary {
  background: #f0c040;
  color: #081a2c;
  border: 2px solid #f0c040;
}

.cta-btn.primary:hover {
  background: transparent;
  color: #f0c040;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #f0c040;
}

.cta-btn.secondary:hover {
  background: #f0c040;
  color: #081a2c;
  transform: translateY(-3px);
}

/* ----- FOOTER ----- */
.footer {
  position: relative;
  background: #081a2c;
  background-image: url('../img/pattern.png');
  background-size: cover;
  color: #fff;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 26, 44, 0.95);
}

.footer-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 8% 35px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding-bottom: 35px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}

.footer-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: #f0c040;
  transition: all 0.35s ease;
  border-radius: 2px;
}

.footer-nav a:hover::after,
.footer-nav a.active::after {
  width: 100%;
}

.footer-nav a:hover {
  color: #f0c040;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.office,
.phone {
  text-align: center;
  padding: 10px 20px;
}

.office:not(:last-child),
.phone {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact i {
  font-size: 48px;
  color: #f0c040;
  margin-bottom: 20px;
  display: block;
}

.office h3 {
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-weight: 700;
}

.office p {
  font-size: 18px;
  line-height: 1.8;
  color: #d6dde7;
  margin-bottom: 20px;
}

.office a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 700;
  color: #f0c040;
  transition: all 0.3s ease;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.office a:hover {
  color: #fff;
  border-bottom-color: #f0c040;
}

.phone p {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d6dde7;
  font-weight: 300;
}

.phone h2 {
  font-size: 48px;
  font-weight: 700;
  color: #f0c040;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  padding-top: 35px;
}

.footer-bottom p {
  font-size: 18px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-links a:hover {
  color: #f0c040;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.2);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  transition: all 0.35s ease;
  text-decoration: none;
}

.socials a:hover {
  background: #f0c040;
  border-color: #f0c040;
  color: #081a2c;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(240, 192, 64, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
  .page-header {
    padding: 100px 5% 50px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .office:not(:last-child),
  .phone {
    border-right: none;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 65px !important;
  }

  header {
    height: 65px !important;
    min-height: 65px !important;
    max-height: 65px !important;
    padding: 0 4% !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e8e8e8;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: flex !important;
    align-items: center !important;
  }

  nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
  }

  .logo {
    font-size: 13px !important;
    gap: 8px !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo span {
    font-size: 13px !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-img {
    height: 45px !important;
    width: auto !important;
    flex-shrink: 0 !important;
    display: block !important;
  }

  .hamburger {
    display: flex !important;
    margin-left: 0 !important;
    padding: 5px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    z-index: 9999 !important;
  }

  .hamburger span {
    width: 25px !important;
    height: 3px !important;
    background: #081a2c !important;
    display: block !important;
  }

  nav ul {
    display: none !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 20px 5% !important;
    gap: 0 !important;
    align-items: center !important;
    background: #ffffff !important;
    position: absolute !important;
    top: 65px !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 3px solid #f0c040 !important;
    z-index: 9998 !important;
    margin: 0 !important;
  }

  nav ul.active {
    display: flex !important;
  }

  nav ul li {
    width: 100% !important;
    list-style: none !important;
  }

  nav ul li a {
    color: #081a2c !important;
    font-size: 16px !important;
    padding: 12px 0 !important;
    width: 100% !important;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: block !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }

  nav ul li a:hover,
  nav ul li a.active {
    color: #f0c040 !important;
    background: #f8f9fa !important;
  }

  nav ul li:last-child a {
    border-bottom: none !important;
  }

  .phone {
    display: block !important;
    font-size: 11px !important;
    margin: 0 8px 0 auto !important;
    flex-shrink: 0 !important;
    color: #f0c040 !important;
    font-weight: bold !important;
  }

  .page-header {
    padding: 90px 5% 40px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header .subtitle {
    font-size: 16px;
  }

  .testimonials-list {
    padding: 50px 5%;
  }

  .testimonial-item {
    padding: 30px 25px;
  }

  .testimonial-item blockquote {
    font-size: 16px;
  }

  .client-name {
    font-size: 16px;
  }

  .cta-section {
    padding: 50px 5%;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .footer-container {
    padding: 50px 5% 30px;
  }

  .footer-nav {
    gap: 25px;
    padding-bottom: 25px;
    margin-bottom: 35px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 35px;
  }

  .office,
  .phone {
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none !important;
  }

  .office:last-child,
  .phone:last-child {
    border-bottom: none;
  }

  .footer-contact i {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .office h3 {
    font-size: 22px;
  }

  .office p {
    font-size: 16px;
  }

  .phone p {
    font-size: 18px;
  }

  .phone h2 {
    font-size: 36px;
  }

  .footer-bottom p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 55px !important;
  }

  header {
    height: 55px !important;
    min-height: 55px !important;
    max-height: 55px !important;
    padding: 0 3% !important;
  }

  .logo {
    font-size: 10px !important;
    gap: 5px !important;
  }

  .logo-img {
    height: 38px !important;
  }

  .logo span {
    font-size: 10px !important;
  }

  .phone {
    font-size: 9px !important;
    margin: 0 5px 0 auto !important;
  }

  .hamburger span {
    width: 22px !important;
    height: 2.5px !important;
  }

  nav ul {
    top: 55px !important;
    padding: 15px 4% !important;
  }

  nav ul li a {
    font-size: 14px !important;
    padding: 10px 0 !important;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .page-header .subtitle {
    font-size: 14px;
  }

  .testimonial-item {
    padding: 20px 18px;
  }

  .testimonial-item blockquote {
    font-size: 15px;
  }

  .testimonial-item blockquote::before {
    font-size: 36px;
  }

  .client-name {
    font-size: 15px;
  }

  .cta-content h2 {
    font-size: 24px;
  }

  .cta-btn {
    padding: 14px 30px;
    font-size: 16px;
  }

  .footer-nav {
    gap: 15px;
  }

  .footer-nav a {
    font-size: 13px;
  }

  .footer-logo img {
    max-width: 150px;
  }

  .office h3 {
    font-size: 19px;
  }

  .office p {
    font-size: 15px;
  }

  .phone h2 {
    font-size: 28px;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}