/* ============================================
   SHIVANG GUPTA & ASSOCIATES — Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy:      #0f1c2e;
  --navy-mid:  #162231;
  --navy-light:#1e3350;
  --gold:      #c9a84c;
  --gold-light:#e2c97e;
  --white:     #ffffff;
  --off-white: #f8f6f1;
  --text:      #2c2c2c;
  --text-muted:#666666;
  --border:    rgba(201,168,76,0.25);
  --shadow:    0 4px 32px rgba(15,28,46,0.12);
  --shadow-lg: 0 12px 48px rgba(15,28,46,0.18);
  --radius:    10px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h:     72px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   NAVIGATION
   ============================================ */
#main-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }

#navbar {
  height: var(--nav-h);
  background: rgba(15,28,46,0.97);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-lg); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 60px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  transition: transform var(--transition);
  /* Invert colors to make black text white */
  filter: invert(1) hue-rotate(180deg);
}
.nav-logo:hover .logo-img {
  transform: scale(1.02);
}
/* Legacy text logo styles (kept for fallback) */
.logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 0;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}

.nav-contact {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.nav-contact a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-contact a:hover { color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  padding: 24px 32px 32px;
  transform: translateY(-110%);
  transition: transform var(--transition);
  z-index: 999;
}
.mobile-menu.open { 
    transform: translateY(0);
    background: var(--navy);

}
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mob-link {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--gold-light); }
.mob-contact { display: flex; flex-direction: column; gap: 10px; }
.mob-contact a {
  color: var(--gold-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   HERO / CAROUSEL
   ============================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
  pointer-events: none;
  z-index: 1;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0s linear 0s;
  pointer-events: all;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

/* Slide backgrounds — gradient fallbacks (replace with real images if available) */
.slide-bg-1 { background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 40%, #0d2137 100%); }
.slide-bg-2 { background: linear-gradient(135deg, #1a0d00 0%, #3d2b00 40%, #1a1200 100%); }
.slide-bg-3 { background: linear-gradient(135deg, #001a0d 0%, #003320 40%, #001a10 100%); }
.slide-bg-4 { background: linear-gradient(135deg, #1a0020 0%, #2d004d 40%, #12001a 100%); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,28,46,0.88) 0%, rgba(15,28,46,0.55) 60%, rgba(15,28,46,0.3) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: left;
}

.slide-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.slide-heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.slide-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.slide-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* Slide animation */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide.active .reveal-up { 
  opacity: 1; 
  transform: translateY(0); 
}
.slide.active .delay-1 { transition-delay: 0.15s; }
.slide.active .delay-2 { transition-delay: 0.3s; }
.slide.active .delay-3 { transition-delay: 0.45s; }

/* Ensure first slide content is visible on load */
.slide[data-index="0"] {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide[data-index="0"] .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

/* Slide controls */
.slide-controls {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
.slide-prev, .slide-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.slide-prev:hover, .slide-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.slide-dots { display: flex; gap: 8px; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
  cursor: default;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-about, .section-faq, .section-contact { padding: 100px 0; }
.section-services, .section-testimonials { padding: 100px 0; background: var(--navy); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-heading.light { color: var(--white); }

.accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-top: 18px;
  border-radius: 2px;
}
.accent-line.centered { margin: 18px auto 0; }

.section-subheading {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}
.section-subheading.light { color: rgba(255,255,255,0.65); }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.about-image {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.about-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(15,28,46,0.22);
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 18px;
  text-align: justify;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-left: 4px solid var(--gold);
}
.visual-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.vc-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.visual-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.visual-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
}
.service-card:hover::before { transform: scaleX(1); }

.sc-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

.sc-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 18px;
  transition: background var(--transition);
}
.service-card:hover .sc-icon { background: rgba(201,168,76,0.2); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid rgba(15,28,46,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 22px 28px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question { background: var(--navy); color: var(--white); }
.faq-item.open .faq-question .faq-icon { color: var(--gold-light); }

.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-answer.open { 
  max-height: 800px;
  transition: max-height 0.45s ease;
}
.faq-answer p {
  padding: 20px 28px 24px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--off-white);
  margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
  transition: background var(--transition), border-color var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.35);
}

.tcard-quote { color: var(--gold); font-size: 1.6rem; opacity: 0.6; }
.tcard-text {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.tcard-footer { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.tcard-service {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.tcard-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.tcard-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.tslider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}
.tslider-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.tslider-dots { display: flex; gap: 8px; }
.tdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.tdot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 28px;
}
.contact-map iframe { display: block; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cdetail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cdetail > i {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  margin-top: 2px;
}
.cdetail strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.cdetail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cdetail a { color: var(--navy); transition: color var(--transition); }
.cdetail a:hover { color: var(--gold); }

/* Contact Form */
/* Form Validation Error States */
.form-group input.input-error,
.form-group textarea.input-error {
  border-color: var(--error-border);
  background-color: var(--error-bg);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-group input.input-error:focus,
.form-group textarea.input-error:focus {
  border-color: var(--error-border);
  box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.15);
}

.form-error {
  display: none;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--error-color);
  margin-top: 6px;
  margin-left: 0;
  padding: 4px 8px;
  background: rgba(198, 40, 40, 0.05);
  border-left: 2px solid var(--error-color);
  border-radius: 2px;
  animation: slideIn 0.3s ease;
}

.form-error::before {
  content: '✕ ';
  font-weight: 600;
  margin-right: 4px;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-form-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 40px 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group label i { color: var(--gold); margin-right: 6px; }
.form-group label span { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(15,28,46,0.15);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  width: 100%;
  justify-content: center;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}
.btn-submit:active { transform: translateY(0); }

.form-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  min-height: 24px;
}
.form-msg.success { color: #2e7d32; }
.form-msg.error   { color: #c62828; }

.form-ack {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); }

.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(201,168,76,0.15); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin-bottom: 16px;
  /* Invert colors to make black text white */
  filter: invert(1) hue-rotate(180deg);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-tagline {
  margin-top: 10px;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li { font-size: 0.85rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-col p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-disclaimer { margin-top: 6px; font-size: 0.76rem; color: rgba(255,255,255,0.28); }

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.contact-fab {
  display: none !important;
  /* Hidden as requested by user */
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}

.fab-main {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.fab-main:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
.fab-main.open { transform: rotate(45deg); }

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition);
}
.fab-options.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.fab-opt {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  box-shadow: var(--shadow);
}
.fab-opt:hover {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

/* Fallback: make content visible if JS doesn't load */
.no-js .fade-in,
.no-js .fade-in-left,
.no-js .fade-in-right {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.services-grid .service-card:nth-child(2)  { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(3)  { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4)  { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(5)  { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(6)  { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(7)  { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(8)  { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(9)  { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(10) { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(11) { transition-delay: 0.14s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { position: relative; top: 0; max-width: 400px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .container { padding: 0 20px; }
  .hide-mobile { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 48px; max-width: 260px; }
  .section-about, .section-faq, .section-contact { padding: 72px 0; }
  .section-services, .section-testimonials { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .slide-content { padding: 0 24px; }
  .slide-heading { font-size: 2rem; }
  .about-stats { gap: 24px; flex-wrap: wrap; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-fab { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .slide-heading { font-size: 1.7rem; }
  .slide-body { font-size: 0.92rem; }
  .slide-cta { padding: 12px 24px; font-size: 0.8rem; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
