*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --teal-dark: #00328b;
  --teal-mid: #0044b8;
  --teal-light: #3a6fd4;
  --teal-pale: #e6edf9;
  --blue-dark: #00328b;
  --blue-mid: #0044b8;
  --blue-pale: #e6edf9;
  --green-main: #45c900;
  --green-dark: #339900;
  --green-pale: #eafbd9;
  --gray-dark: #1a1a2e;
  --gray-mid: #5a5a72;
  --gray-light: #d0d4e0;
  --gray-pale: #f2f4f9;
  --amber: #45c900;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--gray-dark); background: var(--white); line-height: 1.7; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
}
.logo-img{
    width: 150px;
    max-width: 100%;
    height: auto;
    display: block;
}
.logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--teal-dark); text-decoration: none; }
.logo span { color: var(--gray-mid); font-weight: 400; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray-mid); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-dark); }
.nav-cta {
  background: var(--teal-dark); color: white; padding: 10px 22px;
  border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-mid); }
.tab-switcher {
  display: flex; align-items: center; gap: 4px;
  background: var(--gray-pale); border-radius: 8px; padding: 4px;
}
.tab-btn {
  padding: 7px 18px; border-radius: 5px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  transition: all 0.2s; background: transparent; color: var(--gray-mid);
}
.tab-btn.active { background: var(--white); color: var(--teal-dark); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }

/* HERO */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6edf9 50%, #eafbd9 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,50,139,0.07) 0%, transparent 70%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 60px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--teal-dark);
  padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--green-main); border-radius: 50%; }
h1 { font-family: var(--font-display); font-size: clamp(36px, 4vw, 58px); line-height: 1.15; color: var(--gray-dark); margin-bottom: 20px; }
h1 em { color: var(--green-main); font-style: normal; }
.hero-sub { font-size: 17px; color: var(--gray-mid); margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal-dark); color: white; padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; display: inline-block;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--teal-dark); padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none;
  border: 2px solid var(--teal-dark); transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { background: var(--teal-pale); }
.hero-img {
  background: var(--gray-light); border-radius: 20px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--gray-mid); text-align: center; padding: 20px;
}
.img-placeholder svg { opacity: 0.4; }
.img-placeholder p { font-size: 13px; opacity: 0.7; }
.hero-stats { display: flex; gap: 32px; margin-top: 40px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--green-main); }
.stat-label { font-size: 12px; color: var(--gray-mid); font-weight: 500; }

/* SECTIONS */
section { padding: 80px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 42px); line-height: 1.2; color: var(--gray-dark); margin-bottom: 16px; }
.section-intro { font-size: 16px; color: var(--gray-mid); max-width: 580px; margin-bottom: 48px; }

/* SERVICES CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: all 0.25s; cursor: pointer;
}
.service-card:hover { border-color: var(--green-main); box-shadow: 0 8px 24px rgba(69,201,0,0.1); transform: translateY(-3px); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px;
}
.service-card h3 { font-size: 15px; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--gray-mid); }

/* EXPANDABLE SERVICES */
.services-detail { display: flex; flex-direction: column; gap: 12px; }
.service-item {
  border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden;
}
.service-toggle {
  width: 100%; background: var(--white); border: none; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--gray-dark); text-align: left; transition: background 0.2s;
}
.service-toggle:hover { background: var(--gray-pale); }
.service-toggle .arrow { width: 20px; height: 20px; color: var(--teal-dark); transition: transform 0.2s; flex-shrink: 0; }
.service-toggle.open .arrow { transform: rotate(180deg); }
.service-content {
  display: none; padding: 0 24px 24px; background: var(--white);
}
.service-content.open { display: block; }
.service-meta { display: flex; gap: 20px; margin-bottom: 12px; flex-wrap: wrap; }
.service-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray-mid); }
.service-meta-item strong { color: var(--teal-dark); }
.service-content p { font-size: 14px; color: var(--gray-mid); margin-bottom: 16px; }
.btn-small {
  background: var(--teal-dark); color: white; padding: 10px 20px;
  border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none;
  display: inline-block; transition: background 0.2s;
}
.btn-small:hover { background: var(--teal-mid); }

/* BENEFITS */
.benefits-section { background: var(--gray-pale); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  border-left: 4px solid var(--green-main);
}
.benefit-icon { font-size: 28px; margin-bottom: 12px; }
.benefit-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--gray-dark); }
.benefit-card p { font-size: 14px; color: var(--gray-mid); }

/* TESTIMONIALS */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--gray-pale); border-radius: 16px; padding: 28px;
  position: relative;
}
.quote-mark { font-family: var(--font-display); font-size: 80px; color: var(--green-main); line-height: 0.5; position: absolute; top: 20px; right: 24px; opacity: 0.4; }
.testimonial-text { font-size: 15px; color: var(--gray-mid); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--green-dark); flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-detail { font-size: 12px; color: var(--gray-mid); }

/* VIDEO TESTIMONIAL */
.video-placeholder {
  background: var(--gray-light); border-radius: 16px; aspect-ratio: 16/9;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; cursor: pointer; transition: background 0.2s;
}
.video-placeholder:hover { background: var(--gray-light); }
.play-btn {
  width: 64px; height: 64px; background: var(--teal-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.play-btn::after { content: ''; border: 0 solid transparent; border-left: 22px solid white; border-top: 14px solid transparent; border-bottom: 14px solid transparent; margin-left: 5px; }
.video-placeholder p { font-size: 14px; color: var(--gray-mid); }

/* FORM SECTION */
.form-section { background: var(--teal-dark); color: white; }
.form-section h2 { color: white; }
.form-section .section-tag { color: rgba(255,255,255,0.7); }
.form-section .section-intro { color: rgba(255,255,255,0.8); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
input, select, textarea {
  padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: white;
  font-family: var(--font-body); font-size: 15px; transition: border 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.4); }
select option { color: var(--gray-dark); background: white; }
input:focus, select:focus, textarea:focus { outline: none; border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.15); }
textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  background: var(--green-main); color: white; padding: 14px 32px;
  border-radius: 8px; font-size: 15px; font-weight: 700; border: none;
  cursor: pointer; width: 100%; margin-top: 8px; transition: all 0.2s;
}
.btn-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-reassure { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.reassure-item { display: flex; align-items: flex-start; gap: 16px; }
.reassure-icon {
  width: 44px; height: 44px; background: rgba(255,255,255,0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.reassure-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.reassure-item p { font-size: 13px; color: rgba(255,255,255,0.7); }

/* MAP/LOCATION */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.map-placeholder {
  background: var(--gray-light); border-radius: 16px;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px; position: relative; overflow: hidden;
}
.map-placeholder p { font-size: 13px; color: var(--gray-mid); }
.location-info { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 40px; height: 40px; background: var(--green-pale);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.info-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.info-item p { font-size: 14px; color: var(--gray-mid); }

/* FAQ */
.faq-section { background: var(--gray-pale); }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 780px; }
.faq-item { background: var(--white); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--gray-dark); text-align: left; transition: background 0.2s;
}
.faq-question:hover { background: var(--gray-pale); }
.faq-question .faq-arrow { color: var(--green-main); transition: transform 0.2s; flex-shrink: 0; margin-left: 12px; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; color: var(--gray-mid); }
.faq-answer.open { display: block; }
.faq-answer ul { padding-left: 20px; margin-top: 8px; }
.faq-answer li { margin-bottom: 4px; }

/* B2B SECTION */
.b2b-section { background: #f8fffe; }
.b2b-hero {
  background: linear-gradient(135deg, #001f6b 0%, #00328b 60%, #1a5200 100%);
  border-radius: 24px; padding: 60px; color: white; margin-bottom: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.b2b-hero h2 { color: white; margin-bottom: 16px; }
.b2b-hero p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; }
.b2b-img {
  background: rgba(255,255,255,0.1); border-radius: 16px;
  aspect-ratio: 4/3; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.b2b-img p { font-size: 13px; color: rgba(255,255,255,0.6); }
.b2b-benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; }
.b2b-benefit {
  background: var(--white); border-radius: 16px; padding: 28px;
  border-top: 4px solid var(--green-main); transition: box-shadow 0.2s;
}
.b2b-benefit:hover { box-shadow: 0 8px 24px rgba(0,50,139,0.1); }
.b2b-benefit-icon { font-size: 26px; margin-bottom: 12px; }
.b2b-benefit h3 { font-size: 15px; font-weight: 600; color: var(--gray-dark); margin-bottom: 8px; }
.b2b-benefit p { font-size: 13px; color: var(--gray-mid); }

/* TRUST LOGOS */
.logos-section { background: var(--white); padding: 48px 5%; }
.logos-inner { max-width: 1200px; margin: 0 auto; }
.logos-section h3 { text-align: center; font-size: 14px; font-weight: 600; color: var(--gray-mid); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 32px; }
.logos-row { display: flex; gap: 32px; align-items: center; justify-content: center; flex-wrap: wrap; }
.logo-placeholder {
  background: var(--gray-pale); border-radius: 8px; width: 120px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gray-mid); filter: grayscale(1); opacity: 0.6;
  font-weight: 600; letter-spacing: 1px;
}

/* COMPLIANCE */
.compliance-section { background: var(--gray-pale); }
.compliance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.compliance-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px; text-align: center;
}
.compliance-badge {
  width: 64px; height: 64px; border-radius: 16px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-size: 28px;
}
.compliance-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.compliance-card p { font-size: 13px; color: var(--gray-mid); }
.compliance-link { color: var(--teal-dark); font-size: 13px; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 8px; }

/* B2B FORM */
.b2b-form-section { background: var(--blue-dark); color: white; }
.b2b-form-section h2 { color: white; }
.b2b-form-section .section-tag { color: rgba(255,255,255,0.6); }
.b2b-form-section label { color: rgba(255,255,255,0.85); }
.b2b-form-section input, .b2b-form-section select { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); color: white; }
.b2b-form-section .btn-submit { color: white; background: var(--green-main); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 58px; height: 58px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4); cursor: pointer;
  animation: pulse 2s ease-in-out infinite; text-decoration: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6); }
}
.whatsapp-float svg { width: 32px; height: 32px; }

/* PAGE TOGGLE */
.page-b2b { display: none; }
.page-b2c { display: block; }
body.b2b .page-b2b { display: block; }
body.b2b .page-b2c { display: none; }

/* FOOTER */
footer {
  background: var(--teal-mid); color: rgba(255,255,255,0.8);
  padding: 48px 5% 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; color: white; margin-bottom: 12px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(37, 30, 236, 0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

@media (max-width: 768px) {
  .hero-inner, .contact-grid, .location-grid, .b2b-hero { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .b2b-hero { padding: 36px; }
}
