:root {
  --navy: #0C2C55;
  --teal-dark: #296374;
  --teal-light: #629FAD;
  --cream: #EDEDCE;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(12, 44, 85, 0.12);
  --shadow-hover: 0 8px 40px rgba(12, 44, 85, 0.22);
  --radius: 12px;
  --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 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.3; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { font-size: 1rem; color: #3a3a3a; }

/* --- SECTION WRAPPER --- */
section { padding: 80px 0; }
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- SECTION LABEL --- */
.section-label {
  display: inline-block;
  background: var(--cream);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  color: var(--navy);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--teal-dark);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 48px;
}

.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px; /* FIXED */
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(12,44,85,0.3);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(41,99,116,0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

/* Scroll-triggered fade (JS adds .visible) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.15s; }
.animate-on-scroll.delay-2 { transition-delay: 0.30s; }
.animate-on-scroll.delay-3 { transition-delay: 0.45s; }
.animate-on-scroll.delay-4 { transition-delay: 0.60s; }


/* ============================================
   NAVBAR
============================================ */
/* Logo box */
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: white;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* base nav link */
.nav-link {
  position: relative;
  font-weight: 500;
  color: #222;
  transition: 0.3s ease;
  padding: 6px 10px;
}

/* hover effect */
.nav-link:hover {
  color: var(--teal-dark);
}

/* underline (hidden by default) */
.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 10px;
  transition: 0.3s ease;
}

/* hover underline */
.nav-link:hover::after {
  width: calc(100% - 20px);
}

/* ACTIVE LINK */
.nav-link.active {
  color: var(--navy);
  font-weight: 600;
}

/* active underline */
.nav-link.active::after {
  width: calc(100% - 20px);
}
/* ============================================
   HERO SECTION
============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 60%, var(--teal-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(98,159,173,0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Floating geometric shapes */
.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: float 6s ease-in-out infinite;
}
.shape-1 { width: 320px; height: 320px; background: var(--cream); top: -60px; right: -60px; animation-delay: 0s; }
.shape-2 { width: 180px; height: 180px; background: var(--teal-light); bottom: 10%; left: 5%; animation-delay: 2s; }
.shape-3 { width: 100px; height: 100px; background: var(--white); top: 40%; right: 15%; animation-delay: 4s; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero h1 .highlight {
  color: var(--cream);
  position: relative;
}

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
  animation: fadeUp 0.9s 0.25s ease both;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  animation: fadeUp 0.9s 0.45s ease both;
}
.stat-item {
  border-left: 3px solid var(--teal-light);
  padding-left: 14px;
}
.stat-number {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-price-tag .price { font-size: 1.8rem; font-weight: 800; color: var(--navy); }
.hero-price-tag .per  { font-size: 0.8rem; color: var(--teal-dark); }

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.hero-content {
  flex: 1;
  max-width: 600px;
}

/* RIGHT IMAGE */
.hero-image {
  flex: 1;
  display: flex;
  padding-top: 100px;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}



/* ============================================
   SERVICES
============================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid #e8ecef;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--teal-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--cream), #d6d9b8);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  transform: rotate(5deg) scale(1.08);
}

.service-card:hover .service-icon i {
  color: #fff;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p  { font-size: 0.9rem; color: #555; }

/* ============================================
   PRICING
============================================ */
.pricing { background: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
  background: linear-gradient(145deg, var(--navy), var(--teal-dark));
  color: var(--white);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-badge {
  position: absolute;
  top: 18px; right: -28px;
  background: var(--teal-light);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.plan-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.pricing-card.popular .plan-name { color: var(--teal-light); }

.plan-price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-card.popular .plan-price { color: var(--white); }
.plan-price span { font-size: 1.1rem; font-weight: 400; }

.plan-year {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 24px;
}
.pricing-card.popular .plan-year { color: rgba(255,255,255,0.6); }

.plan-features {
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-card.popular .plan-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.12);
}
.plan-features li::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.pricing-card.popular .plan-features li::before {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ============================================
   BENEFITS
============================================ */
.benefits { background: var(--white); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-visual .center-circle {
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 0 0 24px rgba(12,44,85,0.08), 0 0 0 48px rgba(12,44,85,0.04);
}
.benefits-visual .center-circle small {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
}

.orbit-item {
  position: absolute;
  background: var(--white);
  border: 2px solid var(--cream);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.orbit-1 { top: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-2 { top: 30%; right: 2%; animation-delay: 1s; }
.orbit-3 { bottom: 30%; right: 2%; animation-delay: 2s; }
.orbit-4 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 1.5s; }
.orbit-5 { top: 30%; left: 2%; animation-delay: 0.5s; }
.orbit-6 { bottom: 30%; left: 2%; animation-delay: 2.5s; }

.benefits-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1.5px solid #eaeaea;
  transition: var(--transition);
}
.benefit-item:hover {
  border-color: var(--teal-light);
  background: #f8feff;
  transform: translateX(6px);
  box-shadow: var(--shadow);
}
.benefit-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.benefit-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.benefit-item p  { font-size: 0.88rem; color: #666; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-label { background: rgba(255,255,255,0.12); color: var(--cream); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name  { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.author-title { color: rgba(255,255,255,0.55); font-size: 0.78rem; }


/* ============================================
   CONTACT
============================================ */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 { color: var(--navy); margin-bottom: 8px; }
.contact-info p  { color: #555; margin-bottom: 28px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.contact-item-label { font-size: 0.78rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { font-weight: 600; color: var(--navy); font-size: 1rem; }

.cta-btns-contact { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
  border: 3px solid var(--white);
}

/* Inquiry Form */
.inquiry-form {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.inquiry-form h3 { color: var(--navy); margin-bottom: 6px; }
.inquiry-form .form-subtitle { color: #888; font-size: 0.88rem; margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  background: #fafafa;
  transition: var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(98,159,173,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,44,85,0.35);
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85); /* FIX: more visible */
  padding: 60px 0 28px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BRAND TEXT */
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 14px 0 20px;
  color: rgba(255,255,255,0.75); /* FIX visibility */
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
}
.social-btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}
/* HEADINGS */
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

/* LIST FIX (IMPORTANT) */
.footer-col ul {
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

/* LINK FIX */
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75); /* FIX visibility */
  transition: var(--transition);
  display: inline-block; /* FIX alignment */
}

.footer-col ul li a:hover {
  color: var(--teal-light);
  padding-left: 4px;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6); /* FIX visibility */
  flex-wrap: wrap;
  gap: 10px;
}

/* ============================================
   FLOATING WHATSAPP
============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: pulse 2.5s infinite;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.1);
}

.whatsapp-tooltip {
  background: var(--white);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1020px) {
  .hero-card { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 20px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.popular { transform: scale(1); }
}

@media (max-width: 480px) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual { display: none; }
  .cta-btns-contact { flex-direction: column; }
  .whatsapp-float { bottom: 16px; right: 16px; }
}
html, body {
  overflow-x: hidden;
}



/*VIRTUAL BOX PAGE*/
.pricing-grid {
  display: flex;
  justify-content: center;
}
/*HERO */
.hero-center {
  min-height: 70vh; /* reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
}

.hero-content-center {
  max-width: 720px;
  margin: 0 auto;
}

.hero-center h1 {
  margin: 20px 0;
}

.hero-center p {
  margin-bottom: 30px;
}

.hero-center .hero-btns {
  justify-content: center;
}

/*WHO IS FOR*/
.who-for-advanced {
  background: #f9fbfc;
}

.who-list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .who-list {
    grid-template-columns: 1fr;
  }
}

.who-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  transition: var(--transition);
}

.who-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-light);
}

.who-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.who-text h3 {
  margin-bottom: 4px;
  color: var(--navy);
}

.who-text p {
  font-size: 0.9rem;
  color: #555;
}

/*PROCESS*/
/* SECTION */
.process {
  background: var(--cream);
  padding: 100px 0;
}

/* STEPS WRAPPER */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 60px;
  position: relative;
}

/* CONNECTING LINE */
.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  height: 2px;
  background: #505050;
  z-index: 0;
}

/* STEP */
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

/* NUMBER CIRCLE */
.step-number {
  width: 70px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 auto 15px;
  box-shadow: var(--shadow);
}

/* LAST STEP (CHECKMARK) */
.step-number.done {
  background: var(--teal-light);
  color: white;
  border: none;
}

/* TEXT */
.process-step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.process-step p {
  font-size: 0.9rem;
  color: #555;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .process-steps::before {
    display: none;
  }
}

/*CTA*/
.cta-advanced {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 20px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-left {
  max-width: 500px;
}

.cta-left h2 {
  margin-bottom: 12px;
}

.cta-left p {
  margin-bottom: 20px;
  color: rgba(255,255,255,0.85);
}

.cta-points {
  list-style: none;
  padding: 0;
}

.cta-points li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.cta-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-right {
    align-items: center;
  }
}

/*PRICING*/
.pricing-split {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pricing-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}

.pricing-content {
  text-align: left;
}

.price-box {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  margin: 20px 0;
}

.price-box span {
  font-size: 1rem;
  color: var(--teal-dark);
}

.pricing-features {
  margin: 25px 0;
  padding: 0;
}

.pricing-features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
}

.pricing-content .hero-btns {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }

  .pricing-content {
    text-align: center;
  }
}

/*COWORKING*/
/*HERO SECTION*/
.coworking-hero {
  background: var(--white);
  padding: 120px 0;
}

/* LAYOUT */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.hero-left h1 {
  font-size: 2.8rem;
  color: var(--navy);
  margin: 20px 0;
}

.hero-left h1 span {
  color: var(--teal-dark);
}

.hero-left p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 520px;
}

/* BADGE */
.hero-badge {
  background: var(--cream);
  color: var(--teal-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* RIGHT IMAGE */
.hero-right {
  position: relative;
}

/* IMAGE CARD STYLE */
.hero-right img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-hover);
}

/* OPTIONAL FLOAT SHAPE (adds premium feel) */
.hero-right::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: 20px;
  bottom: -20px;
  right: -20px;
  z-index: -1;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left p {
    margin: 0 auto 30px;
  }

  .hero-right::after {
    display: none;
  }
}

/*SPACES*/
.spaces {
  padding: 100px 0;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.space-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.space-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.space-card h3 {
  margin: 16px 16px 6px;
}

.space-card p {
  padding: 0 16px 20px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.space-card:hover {
  transform: translateY(-8px);
}

/* ============================================
   AMENITIES — UPGRADED
============================================ */
.amenities {
  background: var(--cream);
  padding: 80px 0;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 22px;
  border: 1.5px solid #e5e9ec;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* Colored left bar on hover */
.amenity-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--navy), var(--teal-light));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: var(--transition);
  border-radius: 0 0 0 14px;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-light);
}
.amenity-card:hover::after { transform: scaleY(1); }

.amenity-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cream), #d6d9b8);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  transform: scale(1.08) rotate(4deg);
}

.amenity-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.amenity-card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.amenity-card:hover .amenity-icon-wrap i {
  color: var(--white);
}



/* ============================================
   COWORKING PRICING — UPGRADED
============================================ */
.coworking-pricing {
  padding: 80px 0;
  background: #f5f7fa;
}

.cw-price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1.5px solid #e5e9ec;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cw-price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--teal-light);
}

/* Popular card */
.cw-price-card.cwp-popular {
  background: linear-gradient(145deg, var(--navy) 0%, var(--teal-dark) 100%);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.03);
}
.cw-price-card.cwp-popular:hover {
  transform: scale(1.03) translateY(-8px);
}

.cwp-popular-ribbon {
  position: absolute;
  top: 30px; right: -50px;
  background: var(--teal-light);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 44px;
  transform: rotate(45deg);
}

.cwp-icon-wrap {
  width: 60px; height: 60px;
  background: var(--cream);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 14px;
  transition: var(--transition);
}
.cwp-popular .cwp-icon-wrap {
  background: rgba(255,255,255,0.12);
}
.cw-price-card:hover .cwp-icon-wrap {
  transform: rotate(5deg) scale(1.1);
}

.cwp-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.cwp-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.cwp-popular .cwp-name { color: var(--white); }

.cwp-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}
.cwp-popular .cwp-price { color: var(--white); }
.cwp-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--teal-dark);
  margin-left: 2px;
}
.cwp-popular .cwp-price span { color: rgba(255,255,255,0.65); }

.cwp-desc {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.65;
}
.cwp-popular .cwp-desc { color: rgba(255,255,255,0.72); }

.cwp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  border-top: 1.5px solid #f0f0f0;
  padding-top: 16px;
}
.cwp-popular .cwp-features { border-top-color: rgba(255,255,255,0.15); }

.cwp-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: #444;
  border-bottom: 1px solid #f8f8f8;
}
.cwp-features li:last-child { border-bottom: none; }
.cwp-popular .cwp-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.08);
}

.cwp-features li::before {
  content: '✓';
  width: 20px; height: 20px; flex-shrink: 0;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.cwp-popular .cwp-features li::before {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* Compare note */
.cwp-compare-note {
  margin-top: 44px;
  background: var(--white);
  border: 1.5px solid #e5e9ec;
  border-radius: 14px;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cwp-compare-note span {
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-cta-strip { flex-direction: column; text-align: center; }
  .cwp-compare-note    { flex-direction: column; text-align: center; }
  .cw-price-card.cwp-popular { transform: scale(1); }
  .cw-price-card.cwp-popular:hover { transform: translateY(-8px); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr; }
}

/* =========================
   CTA DARK SECTION
========================= */
.cta-dark {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle glow effect */
.cta-dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
}

/* TEXT */
.cta-dark h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cta-dark p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 25px;
}

/* BUTTON */
.cta-dark .btn-whatsapp {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 50px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .coworking-pricing {
    padding: 70px 0;
  }

  .cta-dark {
    padding: 60px 20px;
  }
}



/* ============================================
   BUSINESS REGISTRATION PAGE
   registration.css
============================================ */

/* Active nav link */
.active-link {
  color: var(--teal-dark) !important;
  background: var(--cream) !important;
  border-radius: 6px;
}

/* ============================================
   REGISTRATION HERO
============================================ */
.reg-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 60%, var(--teal-light) 100%);
  padding: 120px 0 70px;
  position: relative;
  overflow: hidden;
}
.reg-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.rh-shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.rh-shape-1 { width: 400px; height: 400px; background: var(--cream); top: -100px; right: -80px; animation: float 8s ease-in-out infinite; }
.rh-shape-2 { width: 200px; height: 200px; background: var(--white); bottom: -60px; left: 10%; animation: float 6s ease-in-out infinite 2s; }

.reg-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 380px;
}
.rhs-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rhs-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.rhs-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================
   SERVICE TYPE STRIP
============================================ */
.reg-types-strip {
  background: var(--cream);
  padding: 28px 0;
  border-bottom: 1px solid #ddd;
}
.reg-type-chip {
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.reg-type-chip:hover, .active-chip {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rtype-icon { font-size: 1.4rem; }

/* ============================================
   MAIN SECTION
============================================ */
.reg-main { padding: 70px 0 80px; background: #f9f9f7; }

/* ============================================
   PROGRESS BAR
============================================ */
.form-progress-wrap {
  background: var(--white);
  border-radius: 14px 14px 0 0;
  padding: 24px 28px 0;
  border: 1.5px solid #e8ecef;
  border-bottom: none;
}
.form-progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.fph-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.fph-step {
  font-size: 0.82rem;
  color: var(--teal-dark);
  font-weight: 600;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 50px;
}
.form-progress-track {
  height: 6px;
  background: #e8ecef;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--teal-light));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-step-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 20px;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
  position: relative;
}
.dot-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e8ecef;
  color: #aaa;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.dot-label {
  font-size: 0.72rem;
  color: #aaa;
  white-space: nowrap;
  font-weight: 500;
  transition: var(--transition);
}
.step-dot.active .dot-num {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(12,44,85,0.15);
}
.step-dot.active .dot-label { color: var(--navy); font-weight: 700; }
.step-dot.done .dot-num {
  background: var(--teal-dark);
  color: var(--white);
}
.step-dot.done .dot-num::after { content: '✓'; }
.step-dot.done .dot-label { color: var(--teal-dark); }
.step-connector {
  flex: 1;
  height: 2px;
  background: #e8ecef;
  margin: 0 8px;
  margin-bottom: 22px;
  min-width: 40px;
}

/* ============================================
   FORM BOX
============================================ */
.reg-form-box {
  background: var(--white);
  border: 1.5px solid #e8ecef;
  border-top: none;
  border-radius: 0 0 14px 14px;
  padding: 32px 28px 36px;
}

.fs-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 4px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #f0f0f0;
}
.fs-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.fs-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin: 0 0 2px; }
.fs-sub   { font-size: 0.86rem; color: #888; margin: 0; }

/* Form Fields */
.rform-group { margin-bottom: 4px; }
.rform-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.req { color: #e53e3e; }
.rform-group input,
.rform-group select,
.rform-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde1e7;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--navy);
  background: #fafbfc;
  transition: var(--transition);
  font-family: inherit;
}
.rform-group input:focus,
.rform-group select:focus,
.rform-group textarea:focus {
  outline: none;
  border-color: var(--teal-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(98,159,173,0.15);
}
.rform-group textarea { resize: vertical; }

/* Contact Preference Buttons */
.contact-pref-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.pref-btn {
  padding: 10px 20px;
  border: 1.5px solid #dde1e7;
  border-radius: 8px;
  background: #fafbfc;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.pref-btn:hover { border-color: var(--teal-light); background: #f0f8fa; }
.pref-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Registration Type Selector */
.reg-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 4px;
}
.rts-option {
  border: 1.5px solid #dde1e7;
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: #fafbfc;
}
.rts-option:hover {
  border-color: var(--teal-light);
  background: #f0f8fa;
  transform: translateY(-2px);
}
.rts-option.selected {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.rts-option.selected .rts-desc { color: rgba(255,255,255,0.65); }
.rts-icon  { font-size: 1.5rem; }
.rts-name  { font-weight: 700; font-size: 0.85rem; }
.rts-desc  { font-size: 0.72rem; color: #888; }

/* Add-ons Grid */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 6px;
}
.addon-card {
  border: 1.5px solid #dde1e7;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  display: block;
  background: #fafbfc;
}
.addon-card input[type="checkbox"] { display: none; }
.addon-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.addon-icon  { font-size: 1.4rem; }
.addon-name  { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.addon-price {
  font-size: 0.75rem;
  color: var(--teal-dark);
  font-weight: 600;
}
.addon-card:hover { border-color: var(--teal-light); transform: translateY(-2px); }
.addon-card:has(input:checked) {
  border-color: var(--navy);
  background: linear-gradient(135deg, rgba(12,44,85,0.06), rgba(41,99,116,0.06));
  box-shadow: 0 0 0 2px rgba(12,44,85,0.12);
}
.addon-card:has(input:checked) .addon-name { color: var(--navy); }

/* Summary Box */
.form-summary-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px;
  border: 1.5px solid #d8dbba;
}
.fsb-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.fsb-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.88rem;
}
.fsb-row:last-child { border-bottom: none; }
.fsb-row span:first-child { color: #666; }
.fsb-row span:last-child  { font-weight: 600; color: var(--navy); }

/* Nav Buttons */
.form-nav-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1.5px solid #f0f0f0;
}

/* Success Screen */
.success-anim {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: fadeUp 0.6s ease;
}
.success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.success-sub { color: #555; font-size: 1rem; }

/* ============================================
   SIDEBAR
============================================ */
.sidebar-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1.5px solid #e8ecef;
}
.sc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid #f0f0f0;
}
.sc-icon { font-size: 1.4rem; }
.sc-header h4 { margin: 0; color: var(--navy); font-size: 1rem; font-weight: 700; }

.sc-list { list-style: none; padding: 0; margin: 0; }
.sc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f5f5f5;
}
.sc-list li:last-child { border-bottom: none; }
.sc-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

/* Process Timeline */
.process-timeline { display: flex; flex-direction: column; }
.pt-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pt-dot {
  width: 34px; height: 34px; flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pt-dot.pt-done { background: #2e7d32; }
.pt-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
}
.pt-content strong { font-size: 0.9rem; color: var(--navy); }
.pt-content span   { font-size: 0.8rem; color: #777; }
.pt-line {
  width: 2px;
  height: 24px;
  background: #e0e0e0;
  margin-left: 16px;
}

/* CTA Sidebar Card */
.sidebar-cta-card {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: 14px;
  padding: 28px 24px;
  color: var(--white);
}
.scc-title { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.sidebar-cta-card p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 20px; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 768px) {
  .reg-type-selector { grid-template-columns: repeat(2, 1fr); }
  .addon-grid { grid-template-columns: 1fr; }
  .reg-form-box { padding: 20px 16px; }
  .form-progress-wrap { padding: 20px 16px 0; }
  .dot-label { display: none; }
  .step-connector { min-width: 20px; }
  .form-nav-btns { flex-direction: column; gap: 12px; }
  .form-nav-btns button { width: 100%; justify-content: center; }
  .reg-hero { padding: 100px 0 50px; }
}

@media (max-width: 480px) {
  .reg-type-selector { grid-template-columns: 1fr 1fr; }
  .rts-desc { display: none; }
}

/* ============================================
   CONTACT HERO — SIMPLE
============================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 130px 0 70px;
}

.ch-simple-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ch-simple-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}
.ch-simple-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.ch-sc-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

.ch-sc-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ch-sc-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}
.ch-sc-value:hover { color: var(--cream); }

/* Responsive */
@media (max-width: 480px) {
  .ch-simple-cards { grid-template-columns: 1fr; }
  .contact-hero { padding: 100px 0 50px; }
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
  padding: 130px 0 70px;
}

.about-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 22px 18px;
  transition: var(--transition);
}
.about-stat-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-3px);
}
.asc-icon { font-size: 1.6rem; margin-bottom: 10px; }
.about-stat-card h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-stat-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.6;
}

/* Values */
.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1.5px solid #e5e9ec;
  transition: var(--transition);
  height: 100%;
}
.value-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.vc-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 480px) {
  .about-hero { padding: 100px 0 50px; }
}
.cwp-price-wrapper {
    margin: 15px 0;
    padding: 15px 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  }

  .cwp-price {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
  }

  .cwp-price span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
  }

  .cwp-gst {
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 107, 53, 0.1);
    border-radius: 6px;
    border-left: 3px solid #ff6b35;
  }

  .cwp-popular .cwp-gst {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-left-color: #fff;
  }

  .logo-img{
  height: 45px;
  width: auto;
}

.brand-text{
  font-size: 18px;
  line-height: 1.2;
}

/* Mobile */
@media (max-width: 768px){

  .brand-text{
    font-size: 13px;
    max-width: 180px;
    white-space: normal;
    line-height: 1.1;
  }

  .navbar-brand{
    max-width: 80%;
  }

  .navbar-toggler{
    padding: 4px 8px;
    font-size: 20px;
  }
}