/* ===========================
   SWIFT CENTRE MICROFINANCE
   style.css
=========================== */

:root {
  --purple: #6B21A8;
  --purple-light: #7C3AED;
  --purple-mid: #9333EA;
  --purple-pale: #F3E8FF;
  --purple-dark: #3B0764;
  --yellow: #FACC15;
  --yellow-dark: #EAB308;
  --yellow-pale: #FEFCE8;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-900: #111827;
  --font: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(107,33,168,0.10);
  --shadow-lg: 0 8px 48px rgba(107,33,168,0.18);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--purple-light);
  border-color: var(--purple-light);
}
.btn-outline:hover {
  background: var(--purple-pale);
  transform: translateY(-2px);
}

.btn-nav {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-yellow {
  background: var(--yellow);
  color: var(--purple-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(250,204,21,0.4);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-white-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); }

.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin: 8px 0 16px; }
.section-header p { color: var(--gray-600); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.8); }

.section-tag {
  display: inline-block;
  background: var(--purple-pale);
  color: var(--purple-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.highlight { color: var(--purple-mid); }
.highlight-yellow { color: var(--yellow); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(107,33,168,0.1);
  padding: 12px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-swift { color: var(--purple-light); }
.logo-centre { color: var(--gray-900); }
.logo-micro { color: var(--gray-600); font-weight: 500; font-size: 0.85em; }

.navbar:not(.scrolled) .logo-micro { color: rgba(255,255,255,0.7); }

.navbar:not(.scrolled) .logo-centre { color: var(--white); }
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.navbar:not(.scrolled) .nav-links a:hover { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--purple-mid);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--gray-900); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 40%, var(--purple-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--yellow);
  top: -200px; right: -150px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: white;
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 200px; height: 200px;
  background: var(--yellow);
  top: 50%; left: 30%;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,204,21,0.15);
  border: 1px solid rgba(250,204,21,0.3);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before { content: '✦'; font-size: 10px; }

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-text h1 .highlight { color: var(--yellow); }

.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 1.8rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

.hero-image-wrap { position: relative; }
.hero-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  aspect-ratio: 4/5;
  max-height: 560px;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hero-img-card:hover .hero-img { transform: scale(1.04); }

.hero-img-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-pale);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-color: transparent;
  color: var(--white);
}
.service-card.featured:hover { box-shadow: 0 16px 60px rgba(107,33,168,0.4); }

.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--purple-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 48px; height: 48px; }
.service-icon-wrap.purple { color: var(--purple-light); }
.service-icon-wrap.yellow { color: var(--yellow); }

.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.service-card.featured h3 { color: var(--white); }
.service-card p { color: var(--gray-600); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }
.service-card.featured p { color: rgba(255,255,255,0.8); }

.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--purple-mid);
  font-weight: 700;
}
.service-card.featured .service-features li { color: rgba(255,255,255,0.75); }
.service-card.featured .service-features li::before { color: var(--yellow); }

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-light);
  transition: gap var(--transition);
}
.service-card.featured .service-link { color: var(--yellow); }
.service-link:hover { text-decoration: underline; }

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  width: 75%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0; left: 0;
}
.about-img-secondary {
  width: 60%;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0; right: 0;
  border: 4px solid var(--white);
}
.about-float-card {
  position: absolute;
  bottom: 120px; left: -20px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.float-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.float-label { font-size: 0.78rem; font-weight: 500; opacity: 0.85; }

.about-content { padding-left: 8px; }
.about-content h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; margin: 8px 0 20px; line-height: 1.25; }
.about-content > p { color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }

.about-values { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 36px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value-icon {
  width: 44px; height: 44px;
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.value-item strong { display: block; font-weight: 600; margin-bottom: 2px; }
.value-item p { color: var(--gray-600); font-size: 0.9rem; margin: 0; }

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0;
  background: var(--gray-50);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,33,168,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-more { text-align: center; margin-top: 40px; }



/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  top: -100px; right: 10%;
}
.cta-shape-2 {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(250,204,21,0.1);
  bottom: -80px; left: 5%;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); font-weight: 700; max-width: 520px; line-height: 1.35; }
.cta-text p { color: rgba(255,255,255,0.8); margin-top: 10px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-centered { text-align: center; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-pale);
}
.contact-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}
.contact-card strong { font-weight: 700; font-size: 0.95rem; color: var(--gray-900); }
.contact-card span, .contact-card a { color: var(--gray-600); font-size: 0.9rem; }
.contact-card a:hover { color: var(--purple-mid); }

.contact-social-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn.phone {
  background: linear-gradient(135deg, var(--purple-light), var(--purple-mid));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.3);
}
.social-btn.phone:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }
.social-btn.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.social-btn.instagram:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(220,39,67,0.4); }
.social-btn.facebook {
  background: #1877F2;
  color: var(--white);
}
.social-btn.facebook:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(24,119,242,0.4); }

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

.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: var(--purple-pale);
  color: var(--purple-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo-centre { color: var(--white); }
.footer .logo-micro { color: rgba(255,255,255,0.5); }
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--purple-mid); }

.footer-links h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.5rem;
  width: 48px; height: 48px;
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.8rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--purple-mid); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--purple-dark);
    justify-content: center;
    align-items: center;
    gap: 36px;
    z-index: 999;
  }
  .nav-links.mobile-open a {
    font-size: 1.3rem;
    color: var(--white) !important;
  }
  .nav-links.mobile-open::after {
    content: '';
    position: fixed;
    bottom: 40px;
    left: 50%; transform: translateX(-50%);
    width: 120px; height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
  }

  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-img-card { max-height: none; aspect-ratio: 4/3; }
  .hero-img { object-fit: contain; object-position: center; background: rgba(0,0,0,0.15); }

  .services-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 300px; }
  .about-img-main { width: 85%; height: 240px; }
  .about-img-secondary { width: 65%; height: 180px; }
  .about-float-card { bottom: 60px; left: -10px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}
