/* ================================================================
   ADHONAI INVESTMENTS COMPANY LTD — STYLESHEET
   ----------------------------------------------------------------
   Color Palette — "Professional Light"
   • Orange      #E9631A  → CTAs, icons, highlights
   • Deep Navy   #0D2137  → Navbar, footer, headings
   • Teal        #1B5E70  → Secondary brand accent
   • White       #FFFFFF  → Body background
   • Off-white   #EEF2F7  → Alternate section background
   • Charcoal    #374151  → Body text
   • Gold-amber  #F5A054  → Hero accents on dark overlays
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  --bg-primary:     #FFFFFF;
  --bg-secondary:   #EEF2F7;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #F8FAFC;
  --navbar-bg:      rgba(13, 33, 55, 0.97);

  --text-heading:   #0D2137;
  --text-body:      #374151;
  --text-muted:     #6B7280;

  --accent:         #E9631A;
  --accent-hover:   #C8521A;
  --accent-glow:    rgba(233, 99, 26, 0.25);
  --teal:           #1B5E70;
  --teal-dark:      #0D2137;

  --border:         rgba(13, 33, 55, 0.09);
  --border-accent:  rgba(233, 99, 26, 0.22);

  --shadow-sm:  0 2px 8px rgba(13,33,55,0.06), 0 1px 3px rgba(13,33,55,0.04);
  --shadow-md:  0 6px 28px rgba(13,33,55,0.09), 0 2px 10px rgba(13,33,55,0.05);
  --shadow-lg:  0 12px 48px rgba(13,33,55,0.12), 0 4px 18px rgba(13,33,55,0.07);
  --shadow-xl:  0 24px 72px rgba(13,33,55,0.16);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --transition: 0.3s ease;
  --font: 'Poppins', sans-serif;
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background-color: var(--bg-primary);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; transition: color var(--transition); }

h1, h2, h3, h4, h5 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.2;
}

p { color: var(--text-body); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* ----------------------------------------------------------------
   3. LAYOUT HELPERS
   ---------------------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 100px 0; }

.section-alt { background: var(--bg-secondary); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(233, 99, 26, 0.10);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid var(--border-accent);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 14px;
  color: var(--text-heading);
  font-weight: 800;
}

.section-title--left { text-align: left; }

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
  color: #fff;
}

/* Used only on dark hero overlay — white ghost button */
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-2px);
}

/* Used on dark CTA banner */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
  color: #fff;
}

.btn-lg   { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }


/* ----------------------------------------------------------------
   5. SCROLL ANIMATIONS
   ---------------------------------------------------------------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.75s ease forwards;
}
.hero-left > *:nth-child(1) { animation-delay: 0.15s; }
.hero-left > *:nth-child(2) { animation-delay: 0.30s; }
.hero-left > *:nth-child(3) { animation-delay: 0.45s; }
.hero-left > *:nth-child(4) { animation-delay: 0.55s; }
.hero-left > *:nth-child(5) { animation-delay: 0.65s; }
.hero-right { animation-delay: 0.50s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------------------------------
   6. NAVIGATION
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: var(--navbar-bg);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(13,33,55,0.28);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-brand:hover .brand-logo { transform: scale(1.08); }

.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--accent) 0%, #C8521A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.nav-brand:hover .brand-icon { transform: rotate(-8deg) scale(1.05); }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
/* Always on dark navbar — white text */
.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}
.brand-sub {
  font-size: 0.60rem;
  color: rgba(255,255,255,0.58);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links — always on dark navbar */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 15px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: #fff; }
.nav-link:hover::after,
.nav-link.active::after { width: 55%; }

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta { padding: 10px 22px; font-size: 0.83rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { display: block; }


/* ----------------------------------------------------------------
   7. HERO — two-column desktop layout
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,0.94) 0%,
    rgba(13,33,55,0.78) 50%,
    rgba(27,94,112,0.62) 100%
  );
}

/* Two-column content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 160px 48px 90px;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* Left column */
.hero-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}

/* Right column */
.hero-right {
  flex-shrink: 0;
  width: 340px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.80rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--accent); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .text-accent {
  color: #F5A054;   /* warm amber — stands out on dark */
  display: block;
}

.hero-slogan {
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  color: rgba(255,255,255,0.82);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Stats panel — right column glass card */
.hero-stats {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 0;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #F5A054;
  line-height: 1;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.scroll-indicator {
  width: 26px; height: 44px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-dot {
  width: 4px; height: 9px;
  background: #F5A054;
  border-radius: 3px;
  animation: scrollBounce 2.2s ease infinite;
}
@keyframes scrollBounce {
  0%   { transform: translateY(0);    opacity: 1; }
  80%  { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}


/* ----------------------------------------------------------------
   8. SERVICES PREVIEW
   ---------------------------------------------------------------- */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px 34px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.preview-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lg);
}

.preview-icon {
  width: 72px; height: 72px;
  background: rgba(233,99,26,0.08);
  border: 1px solid rgba(233,99,26,0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.6rem;
  color: var(--accent);
  transition: all 0.35s ease;
}
.preview-card:hover .preview-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  border-color: transparent;
  transform: scale(1.12) rotate(6deg);
}

.preview-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-heading);
}
.preview-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
}

.preview-cta { text-align: center; }


/* ----------------------------------------------------------------
   9. ABOUT
   ---------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content .section-tag { display: inline-block; margin-bottom: 14px; }

.about-text {
  font-size: 0.97rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 34px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(233,99,26,0.08);
  border: 1px solid rgba(233,99,26,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.about-feature:hover .feature-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.08);
}

.about-feature h4 { font-size: 0.97rem; margin-bottom: 5px; color: var(--text-heading); }
.about-feature p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

/* Pinterest Grid */
.pinterest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 12px;
  height: 420px;
}

.pin-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pin-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.pin-item:hover img { transform: scale(1.07); }

.pin-tall { grid-row: span 2; }
.pin-wide { grid-column: span 2; }


/* ----------------------------------------------------------------
   10. FULL SERVICES
   ---------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-accent);
}

.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,55,0.82), transparent 60%);
}

/* Floating icon chip */
.service-icon {
  position: absolute;
  top: 168px;
  right: 20px;
  width: 54px; height: 54px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(233,99,26,0.50);
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-card:hover .service-icon {
  background: var(--teal);
  transform: rotate(10deg) scale(1.1);
}

.service-body { padding: 34px 24px 28px; }
.service-body h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--text-heading); }
.service-body > p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.83rem;
  color: var(--text-body);
}
.service-list li i {
  color: var(--accent);
  font-size: 0.72rem;
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   11. TESTIMONIALS
   ---------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.stars { color: #F59E0B; font-size: 0.82rem; display: flex; gap: 3px; }

.testimonial-quote {
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.30;
  line-height: 1;
}

.testimonial-card > p {
  font-size: 0.90rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-footer h4 { font-size: 0.95rem; margin-bottom: 2px; color: var(--text-heading); }
.testimonial-footer span { font-size: 0.78rem; color: var(--text-muted); }


/* ----------------------------------------------------------------
   12. CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,55,0.93) 0%,
    rgba(27,94,112,0.82) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 18px;
  font-weight: 800;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ----------------------------------------------------------------
   13. CONTACT
   ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 26px; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px; height: 50px;
  background: rgba(233,99,26,0.08);
  border: 1px solid rgba(233,99,26,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-detail:hover .contact-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.06);
}

.contact-detail h4 { font-size: 0.92rem; margin-bottom: 5px; color: var(--text-heading); }
.contact-detail p,
.contact-detail a  { font-size: 0.88rem; color: var(--text-muted); display: block; line-height: 1.75; }
.contact-detail a:hover { color: var(--accent); }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* Form */
.contact-form-wrap {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form h3 { font-size: 1.45rem; margin-bottom: 30px; color: var(--text-heading); }

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

.form-group {
  position: relative;
  margin-bottom: 18px;
}
.form-group--full { grid-column: 1 / -1; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px 14px 46px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-family: var(--font);
  font-size: 0.88rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group textarea {
  padding-left: 16px;
  resize: vertical;
  min-height: 140px;
}
.form-group select { cursor: pointer; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group select option {
  background: var(--bg-card);
  color: var(--text-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(233,99,26,0.12);
}

.form-group > i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color var(--transition);
}
.form-group:focus-within > i { color: var(--accent); }

/* Success Message */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(46,160,67,0.10);
  border: 1px solid rgba(46,160,67,0.32);
  color: #16a34a;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 18px;
  font-weight: 500;
}
.form-success.show { display: flex; }


/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.footer { background: #0D2137; }

.footer-top { padding: 80px 0 48px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.1fr 1.3fr;
  gap: 48px;
}

/* Brand */
.footer-brand .nav-brand { margin-bottom: 14px; }

.footer-slogan {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.70);
  font-style: italic;
  margin-bottom: 8px;
}

.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 9px; }

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer columns */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links ul,
.footer-services ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a,
.footer-services a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.48);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.footer-links a i,
.footer-services a i { font-size: 0.62rem; color: var(--accent); transition: transform var(--transition); }
.footer-links a:hover,
.footer-services a:hover { color: #F5A054; padding-left: 4px; }
.footer-links a:hover i,
.footer-services a:hover i { transform: translateX(3px); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item i { color: var(--accent); font-size: 0.85rem; margin-top: 4px; flex-shrink: 0; }
.footer-contact-item span,
.footer-contact-item a  { font-size: 0.82rem; color: rgba(255,255,255,0.48); display: block; line-height: 1.75; }
.footer-contact-item a:hover { color: #F5A054; }

.footer-cta {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
  font-size: 0.83rem;
  padding: 11px 18px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }


/* ----------------------------------------------------------------
   15. WHATSAPP FLOAT & BACK TO TOP
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 90px; right: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.65rem;
  z-index: 999;
  box-shadow: 0 4px 22px rgba(37,211,102,0.50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.8s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.13);
  box-shadow: 0 6px 32px rgba(37,211,102,0.65);
  color: #fff;
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 22px rgba(37,211,102,0.50); }
  50%      { box-shadow: 0 4px 22px rgba(37,211,102,0.50), 0 0 0 12px rgba(37,211,102,0.10); }
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #0D2137;
  color: #fff;
  font-size: 0.78rem;
  padding: 6px 13px;
  border-radius: 6px;
  white-space: nowrap;
  font-family: var(--font);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0D2137;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  background: var(--accent);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 22px var(--accent-glow);
}


/* ----------------------------------------------------------------
   16. RESPONSIVE — LARGE DESKTOP (≥ 1400px)
   ---------------------------------------------------------------- */
@media (min-width: 1400px) {
  .hero-content { padding: 180px 64px 100px; }
  .hero-right   { width: 380px; }
}


/* ----------------------------------------------------------------
   17. RESPONSIVE — TABLET (≤ 1100px)
   ---------------------------------------------------------------- */
@media (max-width: 1100px) {
  /* Hero stacks vertically */
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 150px 32px 80px;
    gap: 48px;
  }
  .hero-left { max-width: 700px; }
  .hero-right { width: 100%; max-width: 480px; }

  /* Stats go horizontal again on tablet */
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 24px;
    gap: 0;
  }
  .stat { align-items: center; padding: 14px 24px; }
  .stat-divider { width: 1px; height: 48px; }

  .hero-desc { margin: 0 auto 40px; }

  .hero-actions { justify-content: center; }

  /* Grids */
  .about-grid    { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid  { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pinterest-grid { height: 380px; }

  .preview-grid  { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ----------------------------------------------------------------
   18. RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }

  /* Mobile Nav */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 82vw);
    height: 100vh;
    background: #0D2137;
    flex-direction: column;
    align-items: flex-start;
    padding: 96px 24px 32px;
    transition: right 0.38s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}


/* ----------------------------------------------------------------
   19. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero-content { padding: 130px 20px 60px; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .hero-stats {
    flex-direction: column;
    gap: 0;
    padding: 16px 20px;
  }
  .stat { align-items: flex-start; padding: 16px 0; }
  .stat-divider { width: 100%; height: 1px; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  .preview-grid { grid-template-columns: 1fr; }

  .pinterest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .pin-tall, .pin-wide { grid-row: auto; grid-column: auto; }
  .pin-item { height: 200px; }

  .section-title { font-size: 1.65rem; }
  .hero-title    { font-size: 2.2rem; }
}
