/* ══════════════════════════════════════════════
   UPLOAD — Digital Solutions  |  style.css
   ══════════════════════════════════════════════
   TABLE OF CONTENTS
   1.  Reset & Base
   2.  CSS Variables
   3.  Scrollbar
   4.  Navbar
   5.  Mobile Menu / Hamburger
   6.  Hero
   7.  Upload Particles (Hero + CTA)
   8.  Buttons
   9.  Section Headers (shared)
   10. Trust Bar
   11. Services
   12. Why Us
   13. Process
   14. Packages
   15. FAQ
   16. CTA / Contact
   17. Footer
   18. Responsive
   ══════════════════════════════════════════════ */


/* ── 1. RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  overflow-x: hidden;
}


/* ── 2. CSS VARIABLES ── */
:root {
  --beige:        #e8ddb8;
  --beige-light:  #f4ead1;
  --beige-mid:    #f7f3de;
  --orange:       #d84315;
  --orange-dark:  #bf360c;
  --orange-glow:  rgba(216, 67, 21, 0.45);
  --text-dark:    #2d2d2d;
  --text-mid:     #444;
  --white:        #ffffff;
  --radius:       12px;
  --shadow-card:  0 12px 32px rgba(0, 0, 0, 0.09);
  --transition:   all .3s cubic-bezier(.4, 0, .2, 1);
}


/* ── 3. SCROLLBAR ── */
::-webkit-scrollbar          { width: 6px; }
::-webkit-scrollbar-track    { background: var(--beige); }
::-webkit-scrollbar-thumb    { background: var(--orange); border-radius: 3px; }


/* ── 4. NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(232, 221, 184, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: var(--transition);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 56px;
  transition: transform .4s ease;
}
.logo img:hover {
  transform: translateY(-3px) scale(1.04);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--orange-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-text span {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  text-decoration: none;
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s ease;
}
.nav-links a:hover {
  color: var(--orange);
  background: rgba(216, 67, 21, 0.07);
}
.nav-links a:hover::after {
  width: calc(100% - 32px);
}

/* Nav CTA button */
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 14px var(--orange-glow);
  font-weight: 600 !important;
}
.nav-cta::after        { display: none !important; }
.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px var(--orange-glow) !important;
}


/* ── 5. MOBILE MENU / HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--orange-dark);
  border-radius: 2px;
  display: block;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--beige-light);
  padding: 16px 20px;
  border-bottom: 2px solid var(--orange);
}
.mobile-menu a {
  text-decoration: none;
  color: var(--orange-dark);
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  transition: background .2s;
}
.mobile-menu a:hover { background: rgba(216, 67, 21, 0.08); }
.mobile-menu.open    { display: flex; }


/* ── 6. HERO ── */
.hero {
  position: relative;
  text-align: center;
  padding: 110px 20px 90px;
  overflow: hidden;
  min-height: 480px;
}

/* Faint background image watermark */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("assets/upload-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 700px;
  opacity: 0.07;
  pointer-events: none;
}

/* Radial glow overlay */
.hero::after {
  content: "";
  position: absolute;
  top: 42%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.08) 55%,
    rgba(255, 255, 255, 0)    75%
  );
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%   { opacity: .6; transform: translate(-50%, -50%) scale(1); }
  50%  { opacity: .9; transform: translate(-50%, -50%) scale(1.05); }
  100% { opacity: .6; transform: translate(-50%, -50%) scale(1); }
}

/* Background illustration */
.hero-illustration {
  position: absolute;
  top: 55%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1400px;
  max-width: none;
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
  animation: floatHero 12s ease-in-out infinite;
}
@keyframes floatHero {
  0%   { transform: translate(-50%, -52%); }
  50%  { transform: translate(-50%, -48%); }
  100% { transform: translate(-50%, -52%); }
}
.hero-illustration img {
  width: 100%;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1)   30%,
    rgba(0, 0, 0, 0.6) 55%,
    rgba(0, 0, 0, 0)   85%
  );
}

/* Inner content wrapper */
.hero-inner {
  position: relative;
  z-index: 2;
  animation: heroFloat 8s ease-in-out infinite;
}
@keyframes heroFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* Badge pill above title */
.hero-badge {
  display: inline-block;
  background: rgba(216, 67, 21, 0.12);
  border: 1.5px solid rgba(216, 67, 21, 0.3);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

/* Main heading */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 62px;
  font-weight: 900;
  color: var(--orange-dark);
  letter-spacing: -1px;
  line-height: 1.08;
  position: relative;
  display: inline-block;
  animation: fadeUp 1s ease .15s both;
}
.hero-title::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -10px;
  width: 0; height: 3px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: lineGrow 1.5s ease .8s forwards;
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 140px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.hero-sub {
  font-size: 19px;
  color: var(--text-mid);
  max-width: 640px;
  margin: 28px auto 36px;
  line-height: 1.65;
  animation: fadeUp 1s ease .3s both;
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .45s both;
}

/* Stats row */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
  animation: fadeUp 1s ease .6s both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1;
}
.stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}


/* ── 7. UPLOAD PARTICLES ── */
/* Hero */
.upload-particles span {
  position: absolute;
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 12px solid var(--orange);
  opacity: 0.25;
  animation: floatArrow 8s linear infinite;
}
.upload-particles span:nth-child(1) { left: 15%; animation-delay: 0s; }
.upload-particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
.upload-particles span:nth-child(3) { left: 45%; animation-delay: 4s; }
.upload-particles span:nth-child(4) { left: 60%; animation-delay: 1s; }
.upload-particles span:nth-child(5) { left: 80%; animation-delay: 3s; }
@keyframes floatArrow {
  0%   { transform: translateY(80px) scale(.8); opacity: .25; }
  20%  { opacity: .50; }
  100% { transform: translateY(-220px) scale(1); opacity: 0; }
}

/* CTA section */
.cta-particles span {
  position: absolute;
  width: 0; height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 14px solid var(--orange);
  opacity: .25;
  animation: floatUpload 8s linear infinite;
}
.cta-particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
.cta-particles span:nth-child(2) { left: 25%; animation-delay: 2s; }
.cta-particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
.cta-particles span:nth-child(4) { left: 70%; animation-delay: 1s; }
.cta-particles span:nth-child(5) { left: 85%; animation-delay: 3s; }
@keyframes floatUpload {
  0%   { transform: translateY(120px) scale(.8); opacity: 0; }
  20%  { opacity: .5; }
  100% { transform: translateY(-220px) scale(1); opacity: 0; }
}


/* ── 8. BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 16px 38px;
  text-decoration: none;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 6px 18px var(--orange-glow);
  transition: var(--transition);
  animation: pulse 4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 6px  15px rgba(216, 67, 21, 0.35); }
  50%  { box-shadow: 0 12px 30px rgba(216, 67, 21, 0.55); }
  100% { box-shadow: 0 6px  15px rgba(216, 67, 21, 0.35); }
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(216, 67, 21, 0.55);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  padding: 15px 34px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(216, 67, 21, 0.08);
  transform: translateY(-3px);
}


/* ── 9. SECTION HEADERS (shared) ── */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1.15;
}
.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.65;
}


/* ── 10. TRUST BAR ── */
.trust-bar {
  background: var(--orange-dark);
  padding: 18px 20px;
  overflow: hidden;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.trust-item span { font-size: 20px; }


/* ── 11. SERVICES ── */
.services-section {
  background: var(--beige-mid);
  padding: 100px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1.5px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.13);
  border-color: rgba(216, 67, 21, 0.2);
}

.service-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
}

.service-body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon   { font-size: 32px; margin-bottom: 12px; }
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.service-body .short {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  margin: 0;
  flex: 1;
}
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
  color: var(--text-dark);
}
.service-features li:last-child { border-bottom: none; }
.service-features li .tick {
  color: var(--orange);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.service-footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(216, 67, 21, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-footer .price-tag {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
}
.service-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}
.service-link:hover { gap: 9px; }


/* ── 12. WHY US ── */
.why-section {
  background: var(--beige);
  padding: 100px 20px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-left .big-number {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(216, 67, 21, 0.08);
  line-height: 1;
  margin-bottom: -30px;
  user-select: none;
}
.why-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--orange-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}
.why-left p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  background: var(--white);
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  border-left: 3px solid var(--orange);
  transition: var(--transition);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
.pillar-icon  { font-size: 26px; margin-bottom: 8px; }
.pillar h4    { font-size: 15px; font-weight: 700; color: var(--orange-dark); margin-bottom: 5px; }
.pillar p     { font-size: 13px; color: var(--text-mid); line-height: 1.5; }


/* ── 13. PROCESS ── */
.process-section {
  background: var(--orange-dark);
  padding: 100px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.process-section .section-header h2    { color: white; }
.process-section .section-header .eyebrow { color: rgba(255, 255, 255, 0.7); }
.process-section .section-header p    { color: rgba(255, 255, 255, 0.75); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 50px; left: 0; right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.process-step {
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-6px);
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: white;
  color: var(--orange-dark);
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.step-icon       { font-size: 28px; margin-bottom: 12px; }
.process-step h3 { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
.process-step p  { font-size: 14px; color: rgba(255, 255, 255, 0.75); line-height: 1.65; }


/* ── 14. PACKAGES ── */
.packages-section {
  background: var(--beige-mid);
  padding: 100px 20px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}

.pkg-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pkg-card.featured {
  border-color: var(--orange);
  background: linear-gradient(135deg, white 0%, rgba(216, 67, 21, 0.04) 100%);
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
}

.pkg-badge {
  position: absolute;
  top: 16px; right: 0;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px 0 0 4px;
}

.pkg-icon  { font-size: 40px; margin-bottom: 14px; }
.pkg-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--orange-dark);
  margin-bottom: 8px;
}
.pkg-desc  { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 24px; }

.pkg-list  { list-style: none; margin-bottom: 28px; }
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.pkg-list li:last-child { border: none; }
.pkg-list .tick { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

.pkg-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: var(--orange);
  color: white;
  box-shadow: 0 6px 16px var(--orange-glow);
  transition: var(--transition);
}
.pkg-cta:hover { background: var(--orange-dark); transform: translateY(-2px); }

.pkg-card:not(.featured) .pkg-cta {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: none;
}
.pkg-card:not(.featured) .pkg-cta:hover { background: rgba(216, 67, 21, 0.08); }


/* ── 15. FAQ ── */
.faq-section { background: var(--beige); padding: 100px 20px; }
.faq-wrap    { max-width: 740px; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(216, 67, 21, 0.1);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 12px;
}
.faq-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(216, 67, 21, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }


/* ── 16. CTA / CONTACT ── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--beige), var(--beige-light), var(--beige));
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
  padding: 110px 20px;
  text-align: center;
}
@keyframes gradientFlow {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.cta-inner { max-width: 860px; margin: auto; position: relative; z-index: 2; }
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--orange-dark);
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-sub { font-size: 18px; margin-bottom: 40px; color: var(--text-mid); line-height: 1.6; }

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.benefit {
  background: white;
  padding: 14px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-size: 14px;
  border-left: 3px solid var(--orange);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-button {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 18px 44px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 10px 30px var(--orange-glow);
  transition: var(--transition);
  animation: pulseCta 3s infinite;
}
@keyframes pulseCta {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 18px 44px rgba(216, 67, 21, 0.65);
}

.cta-secondary {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange-dark);
  padding: 17px 36px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
}
.cta-secondary:hover {
  background: rgba(216, 67, 21, 0.08);
  transform: translateY(-3px);
}

.cta-contact { margin-top: 30px; color: var(--text-mid); font-size: 15px; }
.cta-contact p {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* ── 17. FOOTER ── */
footer {
  background: var(--orange-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand .logo-text       { color: white; margin-bottom: 12px; }
.footer-brand .logo-text span  { color: rgba(255, 255, 255, 0.6); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 300px;
  margin-top: 8px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col a,
.footer-col p {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}


/* ── 18. RESPONSIVE ── */
@media (max-width: 900px) {
  .why-grid               { grid-template-columns: 1fr; }
  .why-left .big-number   { font-size: 80px; }
  .footer-grid            { grid-template-columns: 1fr 1fr; }
  .hero-title             { font-size: 46px; }
}

@media (max-width: 640px) {
  .nav-links              { display: none; }
  .hamburger              { display: flex; }
  .hero-title             { font-size: 36px; }
  .cta-section h2         { font-size: 34px; }
  .footer-grid            { grid-template-columns: 1fr; }
  .process-grid::before   { display: none; }
  .hero-stats             { gap: 28px; }
  .stat-num               { font-size: 30px; }
  .why-pillars            { grid-template-columns: 1fr; }
}
