/* Local Fonts - Perfect Setup with Latin-Ext */
/* inter-300 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-300.woff2') format('woff2');
}
/* inter-regular (400) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-regular.woff2') format('woff2');
}
/* inter-500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-500.woff2') format('woff2');
}
/* inter-600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v20-latin_latin-ext-600.woff2') format('woff2');
}

/* outfit-regular (400) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-regular.woff2') format('woff2');
}
/* outfit-600 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-600.woff2') format('woff2');
}
/* outfit-700 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-700.woff2') format('woff2');
}
/* outfit-800 */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/outfit-v15-latin_latin-ext-800.woff2') format('woff2');
}

:root {
  /* Colors */
  --primary: #001b3a; /* Deep Royal Navy Blue */
  --primary-dark: #001229;
  --secondary: #d4af37; /* Metallic Royal Gold */
  --secondary-hover: #c5a028;
  --bg-color: #faf9f6; 
  --surface-color: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #555555;
  --text-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.9);

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows & Transitions */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 32px rgba(211, 47, 47, 0.15); /* Tinted shadow */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 20px 0;
}

.site-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 100px;
  width: auto;
  transition: var(--transition);
}

.site-footer .logo img {
  max-height: 130px; /* Even larger for footer as requested */
}

.logo:hover img {
  transform: scale(1.05);
}

.logo span {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links li:not(.dropdown):hover > a::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

/* ================= DROPDOWN MENU ================= */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: var(--surface-color);
  box-shadow: var(--shadow-md);
  border-radius: 12px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 25px;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-menu li a::after {
  display: none;
}

.dropdown-menu li a:hover {
  background: rgba(211, 47, 47, 0.05);
  color: var(--primary);
}

.caret {
  font-size: 0.75rem;
  margin-left: 5px;
  transition: var(--transition);
}

.dropdown:hover .caret {
  transform: rotate(180deg);
}

/* Base Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #001229 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(0, 27, 58, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 27, 58, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #b8860b 100%);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.hero h1 span {
  color: var(--secondary) !important;
}

.nav-cta {
  display: none; /* Mobile */
}
@media (min-width: 992px) {
  .nav-cta {
    display: block;
  }
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ================= PAGE HEADER (Inner Pages) ================= */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero.webp');
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .page-header {
    padding: 160px 0 60px !important;
  }
  .page-header h1 {
    font-size: 2rem !important;
  }
  .breadcrumb {
    font-size: 0.85rem;
    flex-wrap: wrap;
    line-height: 1.4;
  }
}

.page-header h1 {
  color: var(--text-white);
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  opacity: 0.9;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px; /* Increased offset for larger header */
  background-color: var(--bg-color);
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-white);
}

.hero-label {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--secondary);
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-white);
}

.hero p {
  font-size: 1.3rem;
  color: #ffffff !important;
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  height: 80%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: blob 10s infinite alternate;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes blob {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
  }
}

/* ================= SECTION STYLES ================= */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-header .subtitle {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-size: 2.5rem;
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  padding: 50px 35px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(0,0,0,0.03);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--secondary) 0%, #b8860b 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.15);
  border-color: var(--secondary);
}

.service-card:hover h3, .service-card:hover p {
  /* Keep it white if we want a full color flip, but user said lacivert was bad. 
     Let's do a more subtle gold glow instead of a full flip. */
}

.service-icon {
  width: 90px;
  height: 90px;
  background: rgba(212,175,55,0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--secondary);
  transition: all 0.4s ease;
  transform: rotate(-5deg);
}

.service-card:hover .service-icon {
  background: var(--secondary);
  color: white;
  transform: rotate(0deg) scale(1.1);
}

.service-icon i {
  font-size: 2.2rem;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 700;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ================= CONTENT SECTION (Inner Pages) ================= */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.content-body h2 {
  font-size: 2.2rem;
  margin-top: 30px;
}

.content-body p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.sidebar-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.sidebar-card h4 {
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  margin-bottom: 20px;
}

/* ================= ABOUT / STATS ================= */
.about-section {
  background-color: var(--text-dark);
  color: var(--text-white);
  position: relative;
}
.about-section h2 {
  color: var(--text-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 50px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

/* ================= CONTACT ================= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: var(--surface-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-info {
  background: var(--primary);
  color: var(--text-white);
  padding: 60px;
}
.contact-info h3 {
  color: var(--text-white);
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-info p {
  opacity: 0.9;
  margin-bottom: 40px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.icon-box {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.info-item:hover .icon-box {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.1) rotate(-5deg);
}

.info-item div h5 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary); /* High contrast gold */
  margin-bottom: 5px;
}

.info-item div span, 
.info-item div p {
  color: #ffffff;
  font-size: 1.05rem;
  word-break: break-word; /* Fix for long emails/addresses */
}

@media (max-width: 768px) {
  .contact-info {
    padding: 30px 20px !important;
  }
  .info-item {
    gap: 15px;
  }
  .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .info-item div h5 {
    font-size: 0.8rem;
  }
  .info-item div span, 
  .info-item div p {
    font-size: 0.95rem;
  }
}

.contact-form-container {
  padding: 60px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-control::placeholder {
  color: #999;
  font-size: 0.9rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--surface-color);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 30px;
  border-top: 5px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  text-align: left;
}

.footer-links h4 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
  padding-left: 5px;
}

.site-footer .logo {
  justify-content: flex-start;
  color: var(--text-white);
  margin-bottom: 20px;
}
.site-footer .logo span {
  color: var(--secondary);
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  text-align: center;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-color);
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    gap: 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 95vh;
    overflow-y: auto;
    text-align: center;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 2px;
  }
  .nav-links a {
    font-size: 1.15rem;
    display: inline-block;
    width: 100%;
    padding: 8px 0;
  }
  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    padding-left: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.02);
    border-radius: 0;
    margin-top: 5px;
    border-left: 2px solid var(--secondary);
  }
  
  .dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .mobile-toggle {
    display: block;
  }
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 170px;
    padding-bottom: 80px;
    min-height: 85vh;
    background: linear-gradient(rgba(0,15,35,0.8), rgba(0,15,35,0.8)), url('../images/hero.webp') !important;
    background-size: cover !important;
    background-position: center bottom !important;
  }
  .logo {
    font-size: 1.5rem;
  }
  .hero-content {
    margin: 0 auto;
    padding: 0 15px;
  }
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
  }
  .hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-image {
    position: relative;
    width: 100%;
    height: 400px;
    right: 0;
    top: 0;
    transform: none;
    margin-top: 50px;
    border-radius: 20px;
    animation: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info, .contact-form-container {
    padding: 40px;
  }

  .big-slogan h2 {
    font-size: 1.8rem !important;
  }
  .cta-banner h2 {
    font-size: 1.8rem !important;
  }
  .cta-banner p {
    font-size: 1rem !important;
  }
}

/* ================= LOGO SLIDER ================= */
.logo-slider {
  background: white;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 20s linear infinite;
  gap: 50px;
}

.logo-slide {
  width: 200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: var(--transition);
}

.logo-slide:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-slide span {
  font-weight: 800;
  color: var(--text-light);
  font-size: 1.2rem;
  text-transform: uppercase;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 5)); }
}

/* ================= PROCESS STEPS ================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  z-index: 2;
  position: relative;
}

.process-item h4 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.process-item::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: rgba(0,0,0,0.05);
  display: none;
}

@media (min-width: 992px) {
  .process-item:not(:last-child)::after {
    display: block;
  }
}

/* ================= FAQ ACCORDION ================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(211,47,47,0.02);
}

.faq-question .icon {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.faq-item.active .icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
  max-height: 300px;
}

/* ================= TESTIMONIALS ================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testi-body {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testi-body i {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.1;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
}

/* ================= BIG SLOGAN SECTION ================= */
.big-slogan {
  background: var(--primary);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.big-slogan .container {
  position: relative;
  z-index: 2;
}

.big-slogan h2 {
  color: white;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  margin: 0;
}

.big-slogan h2 span {
  color: var(--secondary);
}

.slogan-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url('../images/mutfak.webp') center/cover;
}

/* ================= CTA BANNER ================= */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #b8860b 100%);
  color: var(--primary);
  text-align: center;
  padding: 100px 0;
}

.cta-banner h2 {
  color: var(--primary);
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-banner p {
  color: rgba(0,27,58,0.8);
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 1.2rem;
}

/* ================= HIGHLIGHT CARD ================= */
.highlight-card {
  border: 2px dashed var(--secondary) !important;
  background: rgba(212,175,55,0.02) !important;
}

.highlight-card .service-icon {
  background: var(--secondary) !important;
  color: white !important;
  transform: rotate(0deg) !important;
}

/* ================= MOBILE STICKY CTA ================= */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
  background: white;
  padding: 0;
}

@media (min-width: 992px) {
  .mobile-sticky-cta {
    display: none;
  }
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sticky-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.call-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #001229 100%);
  color: white;
  border-top: 2px solid rgba(255,255,255,0.05);
}

.whatsapp-btn {
  background: linear-gradient(135deg, var(--secondary) 0%, #b8860b 100%);
  color: var(--primary);
  border-top: 2px solid rgba(255,255,255,0.1);
}

.sticky-btn i {
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.sticky-btn:active {
  transform: scale(0.98);
  filter: brightness(1.2);
}

/* Better spacing for specific section buttons */
.highlight-card .btn,
.about-text .btn {
  margin-top: 30px;
}

