/* =============================================
   LIGHTLOFTS LTD — Main Stylesheet
   Navy Blue Brand Scheme
   ============================================= */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Navy — sampled directly from logo */
  --navy:        #1a2a6c;   /* deep logo navy */
  --navy-mid:    #2e47a4;   /* mid blue for buttons on dark */
  --navy-bright: #4a6fd4;   /* bright blue — readable on dark bg */
  --navy-light:  #7a9de8;   /* light blue for labels/tags */
  --navy-glow:   rgba(74, 111, 212, 0.25);

  /* Backgrounds — very dark navy-tinted */
  --dark:   #06101e;   /* main page background */
  --dark-2: #0a1628;   /* alternate section */
  --dark-3: #0f1f38;   /* card / surface */
  --dark-4: #152844;   /* input / deep card */

  /* Text */
  --white:     #ffffff;
  --off-white: #dde5f5;   /* slightly blue-tinted white */
  --muted:     #7a8db0;   /* blue-grey muted text */

  /* Borders & accents */
  --border:      rgba(74, 111, 212, 0.22);
  --border-hover: rgba(74, 111, 212, 0.6);

  --nav-height: 80px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { color: var(--muted); font-weight: 300; }

/* --- Utility Classes --- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section-padding { padding: 100px 0; }
.text-navy { color: var(--navy-bright); }
.text-center { text-align: center; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy-bright);
  margin-bottom: 1rem;
  display: block;
}

.section-title { margin-bottom: 1.5rem; }

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: var(--transition);
}

.btn-navy {
  background: var(--navy-mid);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--navy-glow);
}

.btn-outline {
  border: 1px solid var(--navy-bright);
  color: var(--navy-bright);
}

.btn-outline:hover {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--navy-glow);
}

/* Legacy alias so existing HTML .btn-gold still works */
.btn-gold { background: var(--navy-mid); color: var(--white); }
.btn-gold:hover {
  background: var(--navy-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--navy-glow);
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 2rem;
}

.nav.scrolled {
  background: rgba(6, 16, 30, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  border-radius: 3px;
  /* White bg logo on dark nav — add a subtle white pill */
  background: #fff;
  padding: 3px 6px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-logo-text span { color: var(--navy-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--navy-bright);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--navy-mid) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 3px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy-bright) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Navy gradient matches logo palette */
  background: linear-gradient(135deg, #06101e 0%, #0a1c3a 50%, #06101e 100%);
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,16,30,0.92) 40%, rgba(6,16,30,0.3) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--navy-bright);
}

.hero h1 { max-width: 700px; margin-bottom: 1.5rem; color: var(--white); }
.hero h1 span { color: var(--navy-bright); }

.hero-desc {
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  color: rgba(221, 229, 245, 0.75);
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--navy-bright), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.5); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-bright);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =============================================
   ABOUT INTRO
   ============================================= */
.about-intro { background: var(--dark-2); }

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-img-wrap { position: relative; }

.about-intro-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 3px;
}

.about-intro-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  border: 2px solid var(--navy-mid);
  border-radius: 3px;
  z-index: -1;
}

.about-intro-badge {
  position: absolute;
  bottom: 30px; left: -30px;
  background: var(--navy-mid);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 3px;
  text-align: center;
}

.badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-intro-text .section-subtitle { max-width: 100%; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 20px; height: 20px;
  background: var(--navy-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon::after {
  content: '✓';
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-item p { color: var(--off-white); font-weight: 400; font-size: 0.95rem; }

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-preview { background: var(--dark); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.service-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,16,30,0.97) 0%, rgba(6,16,30,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}

.service-card-number {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--navy-bright);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-card h3 { color: var(--white); margin-bottom: 0.5rem; }

.service-card p {
  font-size: 0.9rem;
  color: rgba(221, 229, 245, 0.75);
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover p { max-height: 100px; }

.service-card-arrow {
  width: 40px; height: 40px;
  border: 1px solid var(--navy-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--navy-bright);
  font-size: 1.2rem;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover .service-card-arrow {
  transform: translateY(0);
  opacity: 1;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--dark-2); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}


/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-us { background: var(--dark); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.why-card {
  padding: 2.5rem 2rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 3px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--navy-bright);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(10, 22, 60, 0.5);
}

.why-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }

.why-card h4 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.why-card p { font-size: 0.9rem; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  /* Deep navy gradient for CTA — on-brand and bold */
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(221,229,245,0.8); max-width: 500px; margin: 0 auto 2rem; }

.btn-dark {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}

.btn-dark:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  height: 45vh;
  min-height: 350px;
  background: var(--dark-2);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,108,0.12) 0%, transparent 60%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--navy-bright); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story { background: var(--dark-2); }

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
}

.about-story-images img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.about-story-images img:first-child { grid-row: span 2; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.value-card {
  padding: 2rem;
  background: var(--dark-3);
  border-left: 3px solid var(--navy-mid);
  border-radius: 3px;
}

.value-card h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p { font-size: 0.9rem; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full { background: var(--dark); }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

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

.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }

.service-row-img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: 3px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--off-white);
  font-size: 0.9rem;
}

.service-feature::before { content: '→'; color: var(--navy-bright); font-weight: 600; }

/* Process */
.process { background: var(--dark-2); }

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%; right: 10%;
  height: 1px;
  background: var(--border);
}

.process-step { text-align: center; position: relative; }

.step-number {
  width: 60px; height: 60px;
  background: var(--dark-2);
  border: 2px solid var(--navy-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy-bright);
  position: relative;
  z-index: 1;
}

.process-step h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 0.95rem; }
.process-step p { font-size: 0.85rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}

.contact-info h3 { color: var(--white); margin-bottom: 2rem; font-size: 1.5rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 45px; height: 45px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text { display: flex; flex-direction: column; }

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-bright);
  margin-bottom: 0.2rem;
}

.contact-detail-value { color: var(--off-white); font-size: 0.95rem; }
.contact-detail-value a { color: var(--off-white); transition: var(--transition); }
.contact-detail-value a:hover { color: var(--navy-light); }

.contact-social { margin-top: 2rem; }
.contact-social p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.social-links { display: flex; gap: 1rem; }

.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: var(--muted);
}

.social-link:hover { border-color: var(--navy-bright); color: var(--navy-bright); }

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3rem;
}

.contact-form-wrap h3 { color: var(--white); margin-bottom: 2rem; font-size: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-bright);
  box-shadow: 0 0 0 3px rgba(74, 111, 212, 0.15);
}

.form-group select option { background: var(--dark-4); }
.form-group textarea { resize: vertical; min-height: 140px; }

.form-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy-bright);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #030810;
  border-top: 1px solid var(--border);
}

.footer-main { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  margin: 1.5rem 0;
  max-width: 280px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo span { color: var(--navy-bright); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-bright);
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul li a { color: var(--muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-contact-item a { color: var(--muted); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--navy-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.8rem; }

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.instagram-section { background: var(--dark-2); }

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-bright);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.instagram-handle:hover {
  color: var(--navy-light);
  border-bottom-color: var(--navy-light);
}

.instagram-icon { font-size: 1.3rem; }

/* CTA layout */
.instagram-cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.instagram-cta-text .section-title { margin-bottom: 1rem; }

/* Mock Instagram grid */
.instagram-grid-link { display: block; text-decoration: none; }

.instagram-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 6px;
  border-radius: 4px;
  overflow: hidden;
}

.ig-tile {
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
}

.ig-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-tile--tall {
  grid-row: span 2;
}

.ig-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 42, 108, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 1.5rem;
}

.instagram-grid-link:hover .ig-tile img { transform: scale(1.06); }
.instagram-grid-link:hover .ig-tile-overlay { opacity: 1; }

.ig-tile--more {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-more-inner {
  text-align: center;
  color: var(--white);
}

.ig-more-inner p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.4rem;
}

.ig-more-inner strong { color: var(--white); }

@media (max-width: 768px) {
  .instagram-cta-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .instagram-mock-grid {
    grid-template-rows: repeat(2, 140px);
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 55px; height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  font-size: 1.6rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-row.reverse { direction: ltr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 65px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
  }

  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a { color: var(--muted); font-size: 1rem; letter-spacing: 0.05em; }
  .nav-mobile-menu a:hover { color: var(--white); }

  .hero-btns { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem; }
  .about-story-images { grid-template-columns: 1fr; grid-template-rows: auto; }
  .about-story-images img:first-child { grid-row: span 1; }
  .section-padding { padding: 70px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Instagram CTA simple section */
.instagram-cta-simple {
  padding: 2rem 0;
}

/* ======================== ICON-BASED SERVICE CARDS ======================== */
.services-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-icon-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: var(--off-white);
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
}

.service-icon-card:hover {
  border-color: var(--navy-bright);
  box-shadow: 0 8px 40px rgba(74, 111, 212, 0.15);
  transform: translateY(-4px);
}

.service-icon-number {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--navy-bright);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.service-icon-symbol {
  color: var(--navy-bright);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-icon-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-icon-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-icon-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--navy-bright);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}

.service-icon-card:hover .service-icon-arrow {
  color: var(--navy-light);
}

@media (max-width: 1024px) {
  .services-icon-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-icon-grid { grid-template-columns: 1fr; }
  .service-icon-card { padding: 2rem 1.5rem; }
}

/* ======================== TEXT-ONLY SERVICE ROWS ======================== */
.service-row-text {
  background: var(--dark-3);
  border: 1px solid rgba(74, 111, 212, 0.15);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  margin-bottom: 2rem;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-row-text:hover {
  border-color: rgba(74, 111, 212, 0.35);
  box-shadow: 0 4px 30px rgba(74, 111, 212, 0.08);
}

.service-row-text .section-label {
  margin-bottom: 0.5rem;
}

.service-row-text .section-title {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .service-row-text {
    padding: 2rem 1.5rem;
  }
}
