:root {
  /* Current Theme (Default) */
  --navy: #0a1628;
  --navy-mid: #142040;
  --gold: #c8a84b;
  --gold-light: #e0c97a;
  --cream: #f9f5ee;
  --text: #1a1a2e;
  --muted: #5a6278;
  --border: #e2d9c8;
  --white: #ffffff;

  /* Theme Alternative 1 (Slate & Emerald) */

  /* --navy: #1e293b;
  --navy-mid: #334155;
  --gold: #10b981;
  --gold-light: #34d399;
  --cream: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff; */


  /* Theme Alternative 2 (Charcoal & Ruby) */

  /* --navy: #1a1a1a;
  --navy-mid: #2d2d2d;
  --gold: #e11d48;
  --gold-light: #f43f5e;
  --cream: #fff1f2;
  --text: #171717;
  --muted: #737373;
  --border: #e5e5e5;
  --white: #ffffff; */

}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 114px;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

.nav-logo-text {
  color: var(--white);
}

.nav-logo-text span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--gold-light);
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Animate bars to X when open */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE DROPDOWN MENU */
.mobile-menu {
  display: none;
  background: rgba(10, 22, 40, 0.98);
  border-top: 1px solid rgba(200, 168, 75, 0.2);
  padding: 8px 0 16px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li a {
  display: block;
  padding: 13px 24px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--gold);
  background: rgba(200, 168, 75, 0.05);
}

.mobile-cta {
  display: block;
  margin: 16px 24px 0;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 12px 24px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-cta:hover {
  background: var(--gold-light) !important;
}

/* HERO */
.hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%,
      rgba(200, 168, 75, 0.08) 0%,
      transparent 60%),
    radial-gradient(ellipse at 10% 80%,
      rgba(200, 168, 75, 0.05) 0%,
      transparent 50%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 168, 75, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 168, 75, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 44px;
  font-weight: 300;
  max-width: 520px;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--gold);
  border: 1px solid rgba(200, 168, 75, 0.5);
  padding: 15px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 168, 75, 0.08);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 700;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  font-weight: 700;
}

/* HERO CARD */
.hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 75, 0.2);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.hero-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 24px;
  filter: grayscale(10%);
}

.hero-card-name {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-card-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero-card-creds {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.cred-badge {
  background: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* MARQUEE */
.marquee-bar {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 999;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  color: var(--navy);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 40px;
  border-right: 1px solid rgba(10, 22, 40, 0.2);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
section {
  padding: 96px 32px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 580px;
  font-weight: 300;
}

/* ABOUT */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.value-item {
  background: var(--white);
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.value-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.highlight-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.highlight-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--navy);
  transition: height 0.3s;
  z-index: 0;
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover .service-icon,
.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: rgba(200, 168, 75, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.25s;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.service-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: rgba(0, 0, 0, 0.04);
  font-weight: 800;
  z-index: 0;
  line-height: 1;
}

/* PARTNERS */
.partners {
  background: var(--navy);
}

.partners .section-title {
  color: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

.partner-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.partner-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.partner-photo {
  width: 160px;
  height: 200px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.partner-photo-placeholder {
  width: 160px;
  height: 200px;
  background: rgba(200, 168, 75, 0.1);
  border: 2px dashed rgba(200, 168, 75, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.partner-photo-placeholder span {
  font-size: 32px;
}

.partner-photo-placeholder small {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

.partner-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.partner-info .partner-role {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.partner-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.partner-creds {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.partner-cred {
  background: rgba(200, 168, 75, 0.1);
  border: 1px solid rgba(200, 168, 75, 0.25);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 10px;
  letter-spacing: 1px;
  font-weight: 700;
}

.partner-specialties {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.specialty-tag::before {
  content: "›";
  color: var(--gold);
  font-weight: 700;
}

/* ICAI COMPLIANCE */
.icai {
  background: var(--cream);
}

.icai-box {
  background: var(--navy);
  padding: 48px;
  margin-top: 48px;
  border-left: 4px solid var(--gold);
  display: flex;
  gap: 40px;
  align-items: start;
}

.icai-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.icai-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.icai-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.icai-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.icai-point {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.icai-point::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
}

/* PROCESS */
.process {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--navy);
}

.process-step h4 {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

/* WHY US */
.why {
  background: var(--navy);
  padding: 96px 32px;
}

.why .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.why-card {
  border: 1px solid rgba(200, 168, 75, 0.15);
  padding: 32px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.why-card:hover {
  border-color: rgba(200, 168, 75, 0.4);
  background: rgba(200, 168, 75, 0.04);
}

.why-card-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}

.why-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

/* CONTACT */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.contact-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-item h5 {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-top: 3px solid var(--gold);
}

.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.full-width-contact {
  width: 100%;
}

.form-group textarea {
  min-height: 140px;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.form-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  font-family: "Lato", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.form-submit:hover {
  background: var(--gold);
  color: var(--navy);
}

.phone-wrapper {
  display: flex;
  width: 100%;
}

.phone-wrapper select {
  width: 84px;
  min-width: 84px;

  padding: 12px 10px;

  border: 1px solid var(--border);
  border-right: none;

  background: var(--cream);

  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--text);

  outline: none;
}

.phone-wrapper input {
  flex: 1;

  border: 1px solid var(--border);

  padding: 12px 16px;

  background: var(--cream);

  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: var(--text);

  outline: none;
}

/* FOOTER */
footer {
  background: rgba(5, 12, 25, 1);
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

.icai-reg {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
}

/* DISCLAIMER */
.disclaimer {
  background: rgba(200, 168, 75, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.2);
  padding: 16px 24px;
  margin-top: 32px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
}


/* --- NEW SERVICES LIST STYLES --- */
.services-list-container {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.services-list-header {
  display: flex;
  background: var(--gray-light);
  padding: 16px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e7eb;
}

.service-row {
  display: flex;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-light);
  transition: all 0.2s ease;
  align-items: center;
}

.service-row:hover {
  background-color: #f9fafb;
}

.service-row:last-child {
  border-bottom: none;
}

.sl-col-name {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-dark);
  min-width: 250px;
}

.sl-col-act {
  flex: 2;
  color: var(--gray-medium);
  font-size: 0.95rem;
  min-width: 200px;
}

.sl-col-time {
  flex: 1;
  min-width: 120px;
}

.sl-col-rate {
  flex: 1.5;
  font-weight: 500;
  min-width: 150px;
}

.svc-num {
  display: none;
}

.svc-icon {
  display: none;
}

.svc-title {
  font-size: 1.05rem;
}

.svc-link {
  color: var(--navy-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-link:hover {
  color: var(--gold);
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
}

.badge-green {
  background: #dcfce7;
  color: #166534;
}

.badge-blue {
  background: #dbeafe;
  color: #1e40af;
}

.badge-yellow {
  background: #fef9c3;
  color: #854d0e;
}

.govt-fee {
  font-size: 0.85rem;
  color: var(--gray-medium);
  font-weight: 400;
}

.rent-btn {
  display: inline-flex;
  align-items: center;
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.rent-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.services-notes {
  background: #f8fafc;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin-top: 40px;
}

.services-notes h4 {
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.services-notes ul {
  padding-left: 20px;
  color: var(--gray-medium);
  font-size: 0.95rem;
}

.services-notes li {
  margin-bottom: 8px;
}

/* --- NEW CONTACT BUTTONS --- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-email:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
}

/* RESPONSIVE UPDATES FOR SERVICES LIST */
@media (max-width: 992px) {
  .services-list-header {
    display: none;
  }

  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
    border: 1px solid rgba(200, 168, 75, 0.2);
  }

  .sl-col-name {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 12px;
  }

  .sl-col-name .svc-title {
    text-align: center;
    font-size: 1.1rem;
    display: block;
    width: 100%;
  }

  .sl-col-act,
  .sl-col-time,
  .sl-col-rate {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 0.95rem !important;
    color: var(--navy-light, #4a5568) !important;
    font-weight: 500 !important;
    margin: 0 0 8px 0;
    padding: 0;
  }

  .sl-col-time .badge {
    background: transparent !important;
    color: inherit !important;
    padding: 0 !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    border: none !important;
    border-radius: 0 !important;
  }

  .svc-num,
  .svc-icon {
    display: none !important;
  }
}

/* FLOATING ACTION BUTTONS */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9999;
}

.fab-button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-button:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  background-color: #25D366;
}

.fab-email {
  background-color: var(--gold);
}

/* HEADER ACTION BUTTONS */
.header-action-buttons {
  display: flex;
  gap: 12px;
}

.mobile-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.secondary-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
}

.secondary-cta:hover {
  background: rgba(200, 168, 75, 0.1);
}