@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #0A2540;
  --accent: #1A6BFF;
  --accent2: #00C2A8;
  --light: #F5F8FF;
  --white: #ffffff;
  --gray: #6B7A8D;
  --border: #E2E8F0;
  --text: #1A2332;
  --shadow: 0 4px 32px rgba(10,37,64,0.10);
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(10,37,64,0.07);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: #fff; font-size: 18px;
  letter-spacing: -1px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 22px;
  color: var(--primary);
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--gray);
  font-size: 15px; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--primary) !important; color: #fff !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  text-decoration: none; color: var(--text);
  font-size: 16px; font-weight: 500;
  padding: 10px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .22s; font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(26,107,255,0.25);
}
.btn-primary:hover { background: #0052d6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,255,0.3); }
.btn-whatsapp {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover { background: #1aa34a; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0A2540 0%, #0d3060 60%, #0f3d7a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 70px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute; right: -100px; top: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,255,0.15) 0%, transparent 70%);
}
.hero-blob2 {
  position: absolute; left: -80px; bottom: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,168,0.12) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 80px 24px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,107,255,0.18); border: 1px solid rgba(26,107,255,0.3);
  padding: 6px 16px; border-radius: 50px;
  color: #7DB3FF; font-size: 13px; font-weight: 500;
  margin-bottom: 24px;
}
.hero-badge span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent2); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent2); }
.hero p {
  font-size: 17px; color: rgba(255,255,255,0.72);
  margin-bottom: 36px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 32px;
  backdrop-filter: blur(20px);
  width: 100%; max-width: 380px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: #fff; margin-bottom: 24px; font-weight: 600;
}
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-stat {
  background: rgba(255,255,255,0.06); border-radius: 12px;
  padding: 20px 16px; text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--accent2);
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-divider { width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent2)); border-radius: 2px; margin-bottom: 20px; }

/* ===== SECTIONS ===== */
section { padding: 90px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: rgba(26,107,255,0.1);
  color: var(--accent); font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 1px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 700;
  color: var(--primary); margin-bottom: 14px; line-height: 1.2;
}
.section-sub {
  font-size: 17px; color: var(--gray); max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.section-sub.center { margin: 0 auto; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.about-text p { color: var(--gray); font-size: 16px; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-value {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: 10px; padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(10,37,64,0.07);
  border-left: 3px solid var(--accent);
}
.about-value-icon { font-size: 20px; }
.about-value-label { font-weight: 600; color: var(--primary); font-size: 15px; }
.about-visual {
  background: linear-gradient(135deg, var(--primary), #0f3d7a);
  border-radius: 20px; padding: 40px; color: #fff;
  position: relative; overflow: hidden;
}
.about-visual::after {
  content: '';
  position: absolute; bottom: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(0,194,168,0.12);
}
.about-visual h3 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 20px; }
.about-visual p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }

/* ===== FEATURES / WHY CHOOSE ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 50px; }
.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform .22s, box-shadow .22s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(10,37,64,0.14); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(26,107,255,0.1), rgba(0,194,168,0.1));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 18px;
}
.feature-title { font-weight: 700; font-size: 16px; color: var(--primary); margin-bottom: 8px; }
.feature-desc { font-size: 14px; color: var(--gray); }

/* ===== SERVICES ===== */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 50px; }
.service-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: all .22s;
  border-top: 3px solid var(--accent);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(10,37,64,0.13); border-top-color: var(--accent2); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--primary); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.service-list li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #0f3d7a);
  color: #fff; text-align: center; padding: 80px 24px;
}
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 36px; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; margin-top: 50px; align-items: start; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--primary); margin-bottom: 20px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(26,107,255,0.1), rgba(0,194,168,0.1));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-detail-text strong { display: block; color: var(--primary); font-weight: 600; margin-bottom: 2px; }
.contact-detail-text span { color: var(--gray); font-size: 14px; }
.contact-form {
  background: #fff; border-radius: 18px; padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text);
  background: var(--light); transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: rgba(0,194,168,0.1); border: 1px solid var(--accent2);
  border-radius: 10px; padding: 16px 20px; color: var(--accent2);
  font-weight: 600; display: none; margin-top: 16px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #0f3d7a);
  color: #fff; padding: 120px 24px 60px; text-align: center;
}
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 800px; margin: 0 auto; padding: 70px 24px; }
.policy-content h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--primary); margin: 40px 0 14px; }
.policy-content h3 { font-size: 18px; color: var(--primary); margin: 24px 0 10px; font-weight: 600; }
.policy-content p { color: var(--gray); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.policy-content ul { color: var(--gray); font-size: 15px; padding-left: 24px; margin-bottom: 14px; }
.policy-content ul li { margin-bottom: 8px; line-height: 1.7; }
.policy-date { background: var(--light); border-radius: 8px; padding: 12px 18px; font-size: 14px; color: var(--gray); display: inline-block; margin-bottom: 32px; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card {
  background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  border-bottom: 3px solid var(--accent);
}
.value-card .icon { font-size: 32px; margin-bottom: 12px; }
.value-card h3 { font-weight: 700; font-size: 16px; color: var(--primary); }

/* ===== MISSION VISION ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 50px; }
.mv-card {
  border-radius: var(--radius); padding: 36px;
  border: 1px solid var(--border);
}
.mv-card.mission { background: linear-gradient(135deg, var(--primary), #0f3d7a); color: #fff; }
.mv-card.vision { background: var(--light); }
.mv-card h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 14px; }
.mv-card.mission h3 { color: #fff; }
.mv-card.vision h3 { color: var(--primary); }
.mv-card p { font-size: 15px; line-height: 1.8; }
.mv-card.mission p { color: rgba(255,255,255,0.75); }
.mv-card.vision p { color: var(--gray); }

/* ===== FOOTER ===== */
footer {
  background: var(--primary); color: rgba(255,255,255,0.75);
}
.footer-top {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding: 64px 24px 40px;
}
.footer-brand .logo-text { color: #fff; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 12px; line-height: 1.8; max-width: 260px; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; padding: 20px 24px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid, .contact-grid, .mv-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  section { padding: 60px 20px; }
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .15s; opacity: 0; }
.delay-2 { animation-delay: .3s; opacity: 0; }
.delay-3 { animation-delay: .45s; opacity: 0; }
