/* ============================================
   Trustfin Marketing & Financing Services LLC SPC
   Main Stylesheet
============================================ */

:root {
  --navy: #0B2A5B;
  --navy-dark: #081f47;
  --navy-light: #143a78;
  --gold: #C8A24D;
  --gold-light: #d9b66a;
  --gold-dark: #a8852f;
  --white: #ffffff;
  --light: #f7f9fc;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --dark: #1f2937;
  --shadow-sm: 0 2px 8px rgba(11, 42, 91, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 42, 91, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 42, 91, 0.12);
  --radius: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}





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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  background: #ffffff;
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 162, 77, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(11, 42, 91, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===================== Navbar ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(11, 42, 91, 0.06);
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(11, 42, 91, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

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

.logo img {
  height: 120px;       /* Desktop size */
  width: auto;
  object-fit: contain;
}

/* Hover effect (premium feel) */
.logo img:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .logo img {
    height: 120px;
  }
}

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

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.nav-menu a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(200, 162, 77, 0.08);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
  content: '▾';
  font-size: 12px;
  margin-left: 2px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  border-top: 3px solid var(--gold);
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  display: block;
}
.dropdown-menu li a:hover {
  background: var(--light);
  color: var(--gold);
  padding-left: 18px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--gold); }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--navy);
  cursor: pointer;
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(11, 42, 91, 0.92) 0%, rgba(11, 42, 91, 0.75) 60%, rgba(11, 42, 91, 0.45) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(200, 162, 77, 0.18);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
  border: 1px solid rgba(200, 162, 77, 0.3);
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 22px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.15rem;
  margin-bottom: 36px;
  opacity: 0.92;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Mini stats below hero */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat strong {
  font-family: 'Playfair Display', serif;
  display: block;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat span { font-size: 14px; opacity: 0.85; }

/* ===================== Sections ===================== */
section { padding: 90px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  padding: 0 30px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--gold);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--gray); font-size: 1.05rem; }

/* ===================== About Intro ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content .section-eyebrow { padding: 0; }
.about-content .section-eyebrow::before,
.about-content .section-eyebrow::after { display: none; }
.about-content h2 { font-size: 2.3rem; margin-bottom: 18px; }
.about-content p { color: var(--gray); margin-bottom: 16px; }
.about-features {
  list-style: none;
  margin: 22px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy);
}
.about-features li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===================== Services ===================== */
.bg-light { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(11, 42, 91, 0.04);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 162, 77, 0.3);
}
.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon {
  position: absolute;
  bottom: -28px; left: 24px;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: var(--shadow-md);
}
.service-body {
  padding: 40px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-body p {
  color: var(--gray);
  margin-bottom: 20px;
  flex: 1;
}
.service-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); gap: 12px; }

/* ===================== Why Choose ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.why-card {
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  transform: rotateY(180deg);
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 0.95rem; }

/* ===================== Process ===================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 70px; height: 70px;
  background: var(--white);
  color: var(--navy);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--gold);
  color: #fff;
  transform: scale(1.1);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 0.95rem; }

/* ===================== CTA ===================== */
.cta-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 162, 77, 0.15), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
  position: relative;
}
.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative;
}

/* ===================== Testimonials ===================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px; right: 26px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray); font-style: italic; margin-bottom: 22px; }
.client-info { display: flex; align-items: center; gap: 14px; }
.client-avatar {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.client-info strong { display: block; color: var(--navy); font-weight: 700; }
.client-info span { font-size: 13px; color: var(--gray); }

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid var(--gray-light);
  margin-top: 60px;
}
.trust-item strong {
  font-family: 'Playfair Display', serif;
  display: block;
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 700;
}
.trust-item span { color: var(--gray); font-weight: 500; }
.trust-item strong em { color: var(--gold); font-style: normal; }

/* ===================== Contact Highlight ===================== */
.contact-highlight {
  background: linear-gradient(120deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-highlight h2 { color: #fff; font-size: 2.2rem; margin-bottom: 16px; }
.contact-highlight p { opacity: 0.9; margin-bottom: 26px; }

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.contact-info-list li .icon-circle {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-list small { display: block; opacity: 0.7; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* ===================== Page Header (inner pages) ===================== */
.page-header {
  background: linear-gradient(120deg, rgba(11, 42, 91, 0.92), rgba(11, 42, 91, 0.78)),
              url('../images/header-bg.jpg') center/cover;
  color: #fff;
  padding: 170px 0 80px;
  text-align: center;
  position: relative;
}
.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: 0.8; }

/* ===================== Service Page ===================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-detail-content h2 { font-size: 2rem; margin-bottom: 18px; }
.service-detail-content h3 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--navy); }
.service-detail-content p { color: var(--gray); margin-bottom: 16px; }
.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.service-detail-content ul li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--dark);
}
.service-detail-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.service-side-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.service-side-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.service-side-card p { opacity: 0.85; margin-bottom: 24px; font-size: 0.95rem; }
.service-side-card .btn { width: 100%; margin-bottom: 10px; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card .b-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 14px;
}
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.benefit-card p { color: var(--gray); font-size: 0.95rem; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.doc-card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--transition);
}
.doc-card:hover {
  border-color: var(--gold);
  background: var(--light);
}
.doc-card .d-icon {
  width: 42px; height: 42px;
  background: rgba(200, 162, 77, 0.12);
  color: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.doc-card strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.doc-card span { color: var(--gray); font-size: 0.9rem; }

/* ===================== Contact Form ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  color: #fff;
  padding: 50px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-info-card h2 { color: #fff; font-size: 1.8rem; margin-bottom: 12px; }
.contact-info-card > p { opacity: 0.85; margin-bottom: 32px; }

.contact-form-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.contact-form-card h2 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-card > p { color: var(--gray); margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.social-icons { display: flex; gap: 12px; margin-top: 24px; }
.social-icons a {
  width: 42px; height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.map-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ===================== Footer ===================== */
.footer {
  background: var(--navy-dark);
  color: #c9d3e3;
  padding: 80px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-col p { color: #a8b6cc; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a {
  color: #a8b6cc;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a::before {
  content: '›';
  color: var(--gold);
  font-weight: 700;
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #a8b6cc;
}
.footer-contact-list .ic {
  color: var(--gold);
  font-size: 16px;
  width: 22px;
  flex-shrink: 0;
}
.footer-contact-list a { color: #a8b6cc; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9d3e3;
  transition: var(--transition);
  font-size: 15px;
}
.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.9rem;
}

/* ===================== WhatsApp Float ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe5b;
}
@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== Scroll Animation ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}
.fade-in.visible { opacity: 1; }

/* ===================== Responsive ===================== */
@media (max-width: 992px) {
  .about-grid,
  .service-detail-grid,
  .contact-layout,
  .contact-highlight {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-side-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-highlight { padding: 40px 30px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .mobile-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 14px 18px; border-radius: 8px; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--light);
    padding: 6px;
    margin: 6px 0 6px 18px;
    border-top: none;
    border-left: 3px solid var(--gold);
    border-radius: 8px;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-cta .nav-phone { display: none; }
  .nav-cta .btn { padding: 10px 18px; font-size: 13px; }
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-stats { gap: 25px; margin-top: 35px; }
  .hero-stat strong { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card { padding: 36px 26px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section-head h2 { font-size: 1.6rem; }
}
