/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2E;
  --navy2: #132240;
  --navy3: #1A2E4A;
  --orange: #2d3338;         /* Deep Slate Grey (Primary Accent) */
  --orange2: #81868d;        /* Medium Steel Grey (Hover/Secondary) */
  --orange-glow: rgba(94,109,126,0.12); /* Subtle Grey Glow */
  --cream: #F9F8F5;
  --white: #FFFFFF;
  --text: #0D1B2E;
  --text-mid: #3A4C60;
  --text-light: #7A8B99;
  --border: rgba(13,27,46,0.1);
  --shadow: 0 4px 28px rgba(13,27,46,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,46,0.14);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --r: 8px;
  --rl: 16px;
  --t: all 0.28s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }

.section-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(2rem,4vw,3rem);
  font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--orange); }
.section-desc { font-size: 0.97rem; color: var(--text-mid); max-width: 520px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.nav-logo.home-icon {
  color: var(--white); /* Matches your navbar text color */
  display: flex;
  align-items: center;
  transition: var(--t);
}

.nav-logo.home-icon:hover {
  color: var(--orange2); /* Matches your hover effect on other links */
  transform: scale(1.1);
}

.nav-logo.home-icon svg {
  width: 28px;
  height: 28px;
}
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.78rem 1.8rem; border-radius: var(--r);
  font-family: var(--font-b); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; border: none; transition: var(--t);
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy2); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: #25D366; color: var(--white); }
.btn-whatsapp:hover { background: #20B858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--t);
}
.navbar.scrolled {
  background: rgba(21, 22, 22, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(54, 52, 52, 0.25);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0.85rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 56px; width: auto; object-fit: contain; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2.25rem; }
.nav-links a { font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.75); letter-spacing: 0.02em; transition: var(--t); }
.nav-links a:hover { color: var(--orange2); }
.nav-cta {
  padding: 0.5rem 1.4rem !important; background: var(--orange) !important;
  color: var(--white) !important; border-radius: var(--r) !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--orange2) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--t); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(232,93,38,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 80%, rgba(24,58,110,0.5) 0%, transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  padding-top: 110px; padding-bottom: 80px;
}
.hero-badge {
  .hero-badge {
  /* ... keep your existing padding and border styles ... */
  
  font-family: var(--font-d); /* Uses Cormorant Garamond */
  font-style: italic;         /* Matches the 'em' style in your headings */
  color: var(--orange2);      /* Uses the same slate/steel grey accent */
  text-transform: none;      /* Removes the all-caps look to make it softer */
  font-size: 0.95rem;         /* Slightly larger for better readability in serif */
}
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.38rem 1.1rem;
  background: rgba(12, 8, 6, 0.12); border: 1px solid rgba(90, 79, 75, 0);
  border-radius: 100px; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; color: var(--orange2); text-transform: uppercase;
  margin-bottom: 1.75rem; animation: fadeUp 0.7s ease both;
}
.hero h1 {
  font-family: var(--font-d); font-size: clamp(2.8rem,5.5vw,4.5rem);
  font-weight: 600; color: var(--white); line-height: 1.1;
  margin-bottom: 1.25rem; animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--orange2); }
.hero-text > p {
  font-size: 1.02rem; color: rgba(255,255,255,0.62); max-width: 500px;
  margin-bottom: 2rem; line-height: 1.85; animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3.5rem; animation: fadeUp 0.7s 0.3s ease both; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 1.75rem; animation: fadeUp 0.7s 0.4s ease both; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-d); font-size: 1.9rem; font-weight: 700; color: var(--orange2); line-height: 1; }
.stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 3px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.12); }

.hero-visual { animation: fadeUp 0.7s 0.2s ease both; }
.hero-img-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rl); padding: 2.5rem; position: relative;
}
.hero-logo-display { width: 100%; max-width: 320px; margin: 0 auto 1.5rem; }
.hero-img-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 0.75rem 1rem; margin-bottom: 1rem;
}
.hero-img-badge span { color: var(--orange2); font-size: 1.1rem; }
.hero-img-badge div { display: flex; flex-direction: column; }
.hero-img-badge strong { font-size: 0.85rem; color: var(--white); font-weight: 500; }
.hero-img-badge div span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hero-price-tag {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--orange); border-radius: var(--r); padding: 0.9rem 1.25rem;
}
.hpt-from { font-size: 0.78rem; color: rgba(255,255,255,0.8); font-weight: 400; }
.hpt-price { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; color: var(--white); }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--navy2); border-top: 1px solid rgba(255,255,255,0.06); }
.trust-inner {
  display: flex; align-items: center; justify-content: space-around;
  padding: 1.5rem 2rem; flex-wrap: wrap; gap: 1.5rem;
}
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-num { font-family: var(--font-d); font-size: 1.6rem; font-weight: 700; color: var(--orange2); line-height: 1; }
.trust-label { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; margin-top: 3px; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: center; }
.about-img-block {
  background: var(--navy); border-radius: var(--rl);
  padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden;
}
.about-img-block::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 260px; height: 260px; background: var(--orange-glow); border-radius: 50%;
}
.about-logo-img { width: 220px; margin: 0 auto 1.5rem; position: relative; z-index: 1; }
.about-doha-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; color: var(--orange2); text-transform: uppercase;
  position: relative; z-index: 1;
}
.about-right > p { font-size: 0.96rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.85; }
.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar { display: flex; align-items: flex-start; gap: 1rem; }
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.pillar div { display: flex; flex-direction: column; }
.pillar strong { font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.pillar span { font-size: 0.82rem; color: var(--text-light); }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-featured {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem;
}
.sf-card {
  background: var(--white); border-radius: var(--rl); padding: 2rem;
  border: 1px solid var(--border); transition: var(--t); position: relative; overflow: hidden;
}
.sf-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sf-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--orange); color: var(--white); font-size: 0.7rem;
  font-weight: 500; padding: 3px 10px; border-radius: 100px;
}
.sf-featured { border: 2px solid var(--orange); }
.sf-num { font-family: var(--font-d); font-size: 2.5rem; font-weight: 700; color: rgba(232,93,38,0.15); line-height: 1; margin-bottom: 0.5rem; }
.sf-icon { font-size: 2rem; margin-bottom: 1rem; }
.sf-card h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.sf-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1rem; }
.sf-link { font-size: 0.85rem; color: var(--orange); font-weight: 500; transition: var(--t); }
.sf-link:hover { color: var(--orange2); letter-spacing: 0.03em; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sg-card {
  background: var(--white); border-radius: var(--r); padding: 1.5rem;
  border: 1px solid var(--border); transition: var(--t); position: relative;
}
.sg-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: var(--t);
}
.sg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sg-card:hover::after { transform: scaleX(1); }
.sg-num { font-family: var(--font-d); font-size: 2rem; font-weight: 700; color: rgba(232,93,38,0.12); display: block; line-height: 1; margin-bottom: 0.4rem; }
.sg-card h4 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.sg-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ===== PROCESS / TIMELINE ===== */
.process { background: var(--navy); }
.process .section-label { color: var(--orange2); }
.process .section-title { color: var(--white); }
.process .section-desc { color: rgba(255,255,255,0.5); }

.timeline { display: flex; align-items: flex-start; gap: 0; justify-content: center; flex-wrap: wrap; }
.tl-arrow { font-size: 1.5rem; color: var(--orange); align-self: flex-start; margin-top: 36px; padding: 0 0.5rem; flex-shrink: 0; }
.tl-item { display: flex; flex-direction: column; align-items: center; max-width: 220px; flex: 1; }
.tl-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(232,93,38,0.12); border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0;
}
.tl-last { background: var(--orange); }
.tl-step { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--orange2); }
.tl-last .tl-step { color: var(--white); }
.tl-card { text-align: center; padding: 0 0.75rem; }
.tl-icon { font-size: 1.5rem; display: block; margin-bottom: 0.6rem; }
.tl-card h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.tl-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ===== SPECIAL OFFER ===== */

.offer { background: var(--cream); }
.offer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.offer-badge {
  display: inline-block; padding: 0.35rem 1rem;
  background: rgba(232,93,38,0.1); border: 1px solid rgba(232,93,38,0.3);
  border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--orange); margin-bottom: 1rem;
}
.offer-title { font-family: var(--font-d); font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.offer-desc { font-size: 0.96rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.75rem; }
.offer-price { display: flex; flex-direction: column; gap: 2px; margin-bottom: 1.75rem; }
.price-from { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.price-amount { font-family: var(--font-d); font-size: 2.5rem; font-weight: 700; color: var(--orange); line-height: 1; }
.offer-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 2rem; }
.of-item { font-size: 0.88rem; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.of-item::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }

.offer-cards { display: flex; flex-direction: column; gap: 1rem; }
.oc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rl); padding: 1.5rem; transition: var(--t); }
.oc-card:hover { transform: translateX(4px); border-color: rgba(232,93,38,0.3); }
.oc-highlight { border: 2px solid var(--orange); background: rgba(232,93,38,0.03); }
.oc-icon { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.oc-card h4 { font-family: var(--font-d); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.oc-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.5rem; }
.oc-price { font-size: 0.85rem; font-weight: 500; color: var(--orange); }
/* Mobile Responsive: Stack them on top of each other on small screens */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
#reviewText {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 2rem;
  font-family: inherit;
  
  /* THIS LINE FIXES THE SIZE */
  resize: none; 
}
/* Matching the Feedback title to the Business Setup font */
.feedback-side h3 {
  font-family: var(--font-d); /* This uses 'Cormorant Garamond' */
  font-size: 2.2rem;          /* Adjusted for a premium look */
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
/* ===== REVIEWS ===== */
.reviews { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card { background: var(--cream); border-radius: var(--rl); padding: 2rem; border: 1px solid var(--border); transition: var(--t); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #F5A623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card > p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--orange2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 600; flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 0.88rem; font-weight: 500; color: var(--navy); }
.reviewer span { font-size: 0.78rem; color: var(--text-light); }

/* Review Card Styling */
.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  position: relative;
}

.review-stars {
  color: #FFD700; /* Gold color for stars */
  margin-bottom: 0.5rem;
  display: block;
}

.review-card h4 {
  font-family: var(--font-b);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.review-card p {
  font-style: italic;
  color: var(--text-mid);
  font-size: 0.9rem;
}
/* Styling the Name and Rating Bar */
#reviewerName, 
#reviewRating {
  width: 100%;
  height: 60px;          /* Increased height */
  padding: 0 1.5rem;     /* Increased side padding */
  font-size: 1.1rem;     /* Larger text size */
  border: 1px solid var(--border);
  border-radius: var(--r);
  background-color: var(--white);
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: var(--t);
}

/* Add a focus effect to the Name bar */
#reviewerName:focus, 
#reviewRating:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* Ensure the row gap is comfortable */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Adjust the Post Review button to be prominent */
.btn-block {
  display: block;
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  border-radius: var(--r);
}

/* ===== CONTACT ===== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-left > p { font-size: 0.96rem; color: var(--text-mid); margin-bottom: 2rem; line-height: 1.8; }
.enquire-btns { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.enq-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 0.75rem 1.25rem; border-radius: var(--r);
  font-size: 0.88rem; font-weight: 500; transition: var(--t); border: 1.5px solid transparent;
}
.enq-whatsapp { background: rgba(37,211,102,0.08); color: #1a9c49; border-color: rgba(37,211,102,0.3); }
.enq-whatsapp:hover { background: #25D366; color: var(--white); }
.enq-insta { background: rgba(193,53,132,0.06); color: #c13584; border-color: rgba(193,53,132,0.2); }
.enq-insta:hover { background: #c13584; color: var(--white); }
.enq-fb { background: rgba(24,119,242,0.06); color: #1877f2; border-color: rgba(24,119,242,0.2); }
.enq-fb:hover { background: #1877f2; color: var(--white); }
.enq-tiktok { background: rgba(0,0,0,0.04); color: #111; border-color: rgba(0,0,0,0.15); }
.enq-tiktok:hover { background: #111; color: var(--white); }
.enq-linkedin { background: rgba(0,119,181,0.06); color: #0077b5; border-color: rgba(0,119,181,0.2); }
.enq-linkedin:hover { background: #0077b5; color: var(--white); }
.enq-yt { background: rgba(255,0,0,0.06); color: #ff0000; border-color: rgba(255,0,0,0.2); }
.enq-yt:hover { background: #ff0000; color: var(--white); }
.address-block { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.75rem; }
.address-block span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.address-block p, .address-block a { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.address-block a:hover { color: var(--orange); }

.contact-form-wrap { background: var(--white); border-radius: var(--rl); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 600; color: var(--navy); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 500; color: var(--text-mid); letter-spacing: 0.05em; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.68rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--r); font-family: var(--font-b); font-size: 0.9rem;
  color: var(--text); background: var(--cream); transition: var(--t); outline: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,93,38,0.1);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none; text-align: center; padding: 1rem; margin-top: 1rem;
  background: #f0faf4; color: #1a7a3c; border-radius: var(--r); font-size: 0.88rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 0.9fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-img { height: 60px; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer-brand > p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 240px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.fs-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--t); }
.fs-btn:hover { border-color: var(--orange); color: var(--orange2); }
.footer-col h5 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--t); }
.footer-col a:hover { color: var(--orange2); }
.footer-contact-col { display: flex; flex-direction: column; gap: 0; }
.fc-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 0.75rem; }
.fc-item span { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.fc-item p, .fc-item a { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.fc-item a:hover { color: var(--orange2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 0; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--t); }
.footer-bottom-links a:hover { color: var(--orange2); }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center; color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: var(--t);
}
.float-wa:hover { background: #20B858; transform: scale(1.08); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-left { max-width: 360px; }
  .services-featured { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--navy); flex-direction: column;
    justify-content: center; align-items: center; gap: 2rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline { flex-direction: column; align-items: center; gap: 1rem; }
  .tl-arrow { transform: rotate(90deg); margin: 0; padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  .stat-divider { display: none; }
  .trust-sep { display: none; }
}
/* Reduce top and bottom space for every section */
.section {
  padding: 50px 0 !important; 
}

/* Specifically target the distance between headers and grids */
.section-header {
  margin-bottom: 2rem !important; /* Reduces space below titles like "Our Services" */
}
