@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --pink: #E8547A;
  --pink-dark: #c9425f;
  --pink-light: #fdeef2;
  --navy: #2D3D6B;
  --navy-light: #3d5080;
  --white: #ffffff;
  --gray: #f8f9fa;
  --text: #444444;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* ===== HEADER & NAV ===== */
header {
  background: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img { height: 55px; object-fit: contain; }

/* Logo + Instagram grouped together */
.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.insta-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.15rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.insta-badge:hover {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 5px 18px rgba(220, 39, 67, 0.45);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 5px;
  align-items: center;
}

.nav-links > li > a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.9rem;
  display: block;
}

.nav-links > li > a:hover { color: var(--pink); background: var(--pink-light); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 12px;
  min-width: 230px;
  padding: 10px 0;
  z-index: 200;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s;
}

.dropdown-menu a i { color: var(--pink); width: 16px; }
.dropdown-menu a:hover { background: var(--pink-light); color: var(--pink); }

.btn-nav {
  background: var(--pink) !important;
  color: white !important;
  border-radius: 25px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}

.btn-nav:hover { background: var(--pink-dark) !important; color: white !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; background: none; border: none; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: 0.3s; display: block; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #4a6fa5 100%);
  color: white;
  padding: 110px 20px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.08;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.07;
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(74, 144, 217, 0.2);
  border: 1px solid rgba(74, 144, 217, 0.5);
  color: #b8d8fa;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--pink); }
.hero p { font-size: 1.15rem; margin-bottom: 40px; opacity: 0.88; max-width: 580px; margin-left: auto; margin-right: auto; }

.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--pink); display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.7; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--pink);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 84, 122, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover { background: white; color: var(--navy); border-color: white; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--pink);
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--pink);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover { background: var(--pink); color: white; }

/* ===== LAYOUT ===== */
section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.2rem; color: var(--navy); font-weight: 700; margin-bottom: 12px; }
.section-title p { color: #777; font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.section-title .underline { width: 55px; height: 4px; background: var(--pink); margin: 14px auto 16px; border-radius: 2px; }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  text-decoration: none;
  color: inherit;
  display: block;
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--pink-dark));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2rem;
  color: var(--pink);
  transition: all 0.3s;
}

.service-card:hover .service-icon { background: var(--pink); color: white; }
.service-card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: #777; font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }

.card-link { color: var(--pink); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s;
}

.feature:hover { transform: translateY(-4px); }

.feature-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature h3 { color: var(--navy); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.feature p { color: #777; font-size: 0.88rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a4a8a 100%);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta-banner h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 15px; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; max-width: 550px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn-white {
  background: white;
  color: var(--navy);
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }

/* ===== AREAS ===== */
.areas-section { background: white; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.area-tag {
  background: var(--pink-light);
  color: var(--pink);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s;
}

.area-tag:hover { background: var(--pink); color: white; }

/* ===== FOOTER ===== */
footer { background: var(--navy); color: white; padding: 60px 20px 30px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand img { height: 55px; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.7; }

.footer-col h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; color: var(--pink); text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--pink); width: 14px; }
.footer-col ul li a:hover { color: var(--pink); }

.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--pink); width: 16px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: var(--pink);
  border-radius: 50%;
  opacity: 0.07;
}

.page-hero-icon { font-size: 3.5rem; color: var(--pink); margin-bottom: 18px; }
.page-hero h1 { font-size: 2.6rem; font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 550px; margin: 0 auto 25px; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.breadcrumb .current { color: var(--pink); font-size: 0.85rem; }

/* ===== SERVICE DETAIL ===== */
.service-intro { padding-top: 70px; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.service-visual {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background: linear-gradient(135deg, var(--pink-light) 0%, #c8d9f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,84,122,0.05) 0%, rgba(45,61,107,0.08) 100%);
}

.service-text h2 { color: var(--navy); font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; }
.service-text p { color: #666; margin-bottom: 22px; line-height: 1.8; }

.checklist { list-style: none; margin-bottom: 30px; }
.checklist li {
  padding: 9px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  font-size: 0.93rem;
  border-bottom: 1px solid #f0f0f0;
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 45px;
  box-shadow: var(--shadow);
}

.contact-form-box h2 { color: var(--navy); font-size: 1.7rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-box p { color: #777; font-size: 0.9rem; margin-bottom: 30px; }

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

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 7px; color: var(--navy); font-weight: 500; font-size: 0.88rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.3s;
  outline: none;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); background: white; }

.form-group textarea { height: 130px; resize: vertical; }

.contact-info-panel h3 { color: var(--navy); font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }

.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 { color: var(--navy); font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.contact-item a { color: #666; text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.contact-item a:hover { color: var(--pink); }
.contact-item p { color: #666; font-size: 0.88rem; }

.whatsapp-card {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 28px;
}

.whatsapp-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35); }
.whatsapp-card i { font-size: 2.8rem; }
.whatsapp-card h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.whatsapp-card p { opacity: 0.85; font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    gap: 5px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  .nav-links.active { display: flex; }
  .dropdown-menu { position: static; box-shadow: none; background: var(--gray); margin-top: 5px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 30px; }

  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px; }

  .section-title h2 { font-size: 1.8rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-banner h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: 1.7rem; }
  section { padding: 60px 15px; }
  .btn-primary, .btn-secondary, .btn-white, .btn-whatsapp { padding: 13px 25px; font-size: 0.9rem; }
}

/* ===== MODERN UI/UX ENHANCEMENTS ===== */

html { scroll-behavior: smooth; }

/* Animated hero gradient */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hero {
  background: linear-gradient(-45deg, #0f1a3c, #1e3a7a, #2a4a8a, #0a1530) !important;
  background-size: 400% 400% !important;
  animation: gradientShift 18s ease infinite;
  padding: 130px 20px 110px !important;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -45%;
  left: -12%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(123,184,245,0.18) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  top: 0;
  right: 0;
  background: transparent;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  border-radius: 0;
  width: auto;
  height: auto;
  opacity: 1;
}

.hero-content { position: relative; z-index: 2; }
.hero-badge { animation: floatBadge 3.5s ease-in-out infinite; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, #7bb8f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number {
  background: linear-gradient(135deg, var(--pink), #7bb8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Frosted glass nav on scroll */
header.scrolled {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 28px rgba(0,0,0,0.08) !important;
}

/* Service card gradient border on hover */
.service-card { overflow: hidden; }
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--pink), var(--navy));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--navy);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.testimonials-section .section-title h2 { color: white; }
.testimonials-section .section-title p   { color: rgba(255,255,255,0.55); }
.testimonials-section .underline         { background: var(--pink); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 34px 28px;
  transition: all 0.35s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-6px);
  border-color: rgba(232,84,122,0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.t-stars   { color: #f59e0b; font-size: 0.95rem; letter-spacing: 3px; margin-bottom: 16px; }
.t-quote   { color: var(--pink); font-size: 2.2rem; line-height: 1; margin-bottom: 10px; font-family: Georgia, serif; opacity: 0.65; }
.t-text    { color: rgba(255,255,255,0.8); font-size: 0.91rem; line-height: 1.8; margin-bottom: 24px; }
.t-author  { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }

.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}

.t-name { color: white; font-weight: 600; font-size: 0.88rem; display: block; }
.t-city { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* Feature hover glow */
.feature:hover { box-shadow: 0 8px 32px rgba(232,84,122,0.12); }

/* CTA wave */
.cta-banner { position: relative; overflow: visible; }

/* Smooth AOS */
[data-aos] { will-change: transform, opacity; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* === HERO TEXT FIX — visible against animated gradient === */
.hero .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #ffd6e2 60%, #ff8da8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .stat-number {
  background: none !important;
  -webkit-text-fill-color: white !important;
  color: white !important;
  font-size: 2rem;
  font-weight: 800;
  display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.hero .stat-label {
  color: rgba(255,255,255,0.75) !important;
}

.hero .hero-badge {
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

/* ============================================================
   DESIGN CHIEF — HOME PAGE POLISH PASS
   ============================================================ */

/* Bigger, cleaner hero typography */
.hero h1 {
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}

.hero p {
  font-size: 1.2rem;
  max-width: 620px;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-badge {
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Hero stats divider line */
.hero-stats {
  margin-top: 70px;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero .stat-number { font-size: 2.4rem !important; letter-spacing: -1px; }
.hero .stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* Primary button polish */
.btn-primary {
  background: linear-gradient(135deg, #E8547A 0%, #c9425f 100%);
  box-shadow: 0 10px 30px rgba(232,84,122,0.35);
  padding: 16px 38px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef6f93 0%, #d8526f 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(232,84,122,0.55);
}

.btn-secondary {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
}

.btn-secondary:hover {
  background: white;
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(255,255,255,0.18);
}

/* Section title refinement */
.section-title {
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 2.6rem;
  letter-spacing: -1px;
  line-height: 1.15;
}

.section-title p {
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 620px;
}

.section-title .underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), #ff8da8);
}

/* Section pre-title eyebrow */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  border: 1px solid rgba(232,84,122,0.2);
  color: var(--pink);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Service cards — cleaner, tighter */
.services-grid {
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
}

.service-card {
  padding: 44px 28px;
  border-radius: 20px;
  border: 1px solid #eef2f9;
  box-shadow: 0 2px 20px rgba(45,61,107,0.06);
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.service-icon {
  background: linear-gradient(135deg, var(--pink-light), #fbd5dd);
  box-shadow: inset 0 0 0 1px rgba(232,84,122,0.12);
}

/* Area tags — pill style with hover lift */
.area-tag {
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  padding: 12px 18px;
}

.area-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232,84,122,0.25);
}

/* CTA banner refinement */
.cta-banner {
  background: linear-gradient(135deg, #0f1a3c 0%, #1e3a7a 60%, #0a1530 100%);
  padding: 100px 20px;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: 2.8rem;
  letter-spacing: -1px;
}

.btn-white {
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 700;
}

/* Feature cards (why-us) */
.feature {
  border-radius: 18px;
  border: 1px solid #eef2f9;
  box-shadow: 0 2px 16px rgba(45,61,107,0.05);
  transition: all 0.3s;
}

.feature-icon {
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(232,84,122,0.28);
}

/* Smooth floating pattern for hero badge */
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,184,245,0.3); }
  50%      { box-shadow: 0 0 0 12px rgba(123,184,245,0); }
}

.hero-badge { animation: floatBadge 4s ease-in-out infinite, softPulse 3s ease-out infinite; }

/* Subtle section connectors */
section { scroll-margin-top: 100px; }

/* Responsive hero */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem !important; letter-spacing: -0.5px; }
  .hero p { font-size: 1rem; }
  .section-title h2 { font-size: 2rem; }
  .cta-banner h2 { font-size: 2rem; }
  .hero-stats { gap: 28px; padding-top: 30px; margin-top: 45px; }
  .hero .stat-number { font-size: 1.8rem !important; }
}
