/* === TELEKOM NUMARA TASIMA - MAIN STYLESHEET === */
:root {
  --primary: #003d99;
  --primary-dark: #002a6e;
  --primary-light: #1565c0;
  --accent: #e30613;
  --accent2: #ff6b00;
  --gold: #f5a623;
  --white: #ffffff;
  --light-bg: #f4f7fc;
  --gray: #6c757d;
  --dark: #1a1a2e;
  --border: #dee2e6;
  --success: #28a745;
  --shadow: 0 4px 20px rgba(0,61,153,0.15);
  --shadow-hover: 0 8px 30px rgba(0,61,153,0.25);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ====== TOPBAR ====== */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: #adc8ff; }
.topbar a:hover { color: #fff; }

/* ====== HEADER / NAV ====== */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}
.logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
.logo span.accent { color: var(--accent); }

nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--primary);
  color: #fff;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
}
.nav-cta:hover { background: #c0000f !important; }

.hamburger {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ====== CONTAINER ====== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ====== HERO ====== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: #fff;
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: #ffcc00; }
.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: #c0000f; border-color: #c0000f; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(227,6,19,0.4); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-img-wrap img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  width: 100%;
}
.hero-stat {
  position: absolute;
  background: #fff;
  color: var(--dark);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
}
.hero-stat.s1 { top: -10px; left: -20px; }
.hero-stat.s2 { bottom: -10px; right: -20px; }
.hero-stat .num { font-size: 1.4rem; color: var(--primary); display: block; }

/* ====== SECTION ====== */
section { padding: 70px 0; }
.section-alt { background: var(--light-bg); }
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title .badge {
  display: inline-block;
  background: rgba(0,61,153,0.1);
  color: var(--primary);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ====== PACKAGES GRID ====== */
.packages-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.package-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.package-card.featured {
  border-color: var(--accent);
}
.package-card.featured .pkg-header { background: linear-gradient(135deg, var(--accent), #c0000f); }
.pkg-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #ffcc00;
  color: #333;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.pkg-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 24px 20px 20px;
  text-align: center;
}
.pkg-header h3 {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.pkg-data {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.pkg-data span { font-size: 1rem; }
.pkg-sub { font-size: 0.8rem; opacity: 0.8; margin-bottom: 12px; }
.pkg-mins {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px;
}
.pkg-body { padding: 20px; }
.pkg-features { margin-bottom: 16px; }
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 8px;
}
.pkg-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pkg-price-box {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.pkg-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.pkg-price small { font-size: 0.9rem; font-weight: 400; color: var(--gray); }
.pkg-price-note { font-size: 0.78rem; color: var(--gray); margin-top: 4px; }
.pkg-cta {
  display: block;
  text-align: center;
  background: var(--primary);
  color: #fff;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.pkg-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.package-card.featured .pkg-cta { background: var(--accent); }
.package-card.featured .pkg-cta:hover { background: #c0000f; }

/* ====== STEPS ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--gray); }

/* ====== WHY US ====== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-features { display: grid; gap: 20px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.2s;
}
.why-feature:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.why-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-feature h4 { font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.why-feature p { font-size: 0.85rem; color: var(--gray); }
.why-visual { position: relative; }
.why-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.why-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-card.c1 { bottom: -20px; left: -20px; }
.why-card.c2 { top: -20px; right: -20px; }
.why-card .icon { font-size: 1.8rem; }
.why-card .text .val { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.why-card .text .lbl { font-size: 0.78rem; color: var(--gray); }

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--primary);
}
.svc-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ====== POPUP MODAL ====== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal-overlay.show { display: flex; animation: fadeIn 0.2s ease; }
.modal {
  background: #fff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideUp 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-body { padding: 24px; }
.modal-body ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: #444;
}
.modal-body ul li:last-child { border-bottom: none; }
.modal-body ul li::before { content: '📌'; flex-shrink: 0; }

/* ====== FORM ====== */
.form-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.form-section .section-title .badge { background: rgba(255,255,255,0.2); color: #fff; }
.form-section .section-title h2 { color: #fff; }
.form-section .section-title p { color: rgba(255,255,255,0.8); }
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: #c0000f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,6,19,0.4); }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 12px; }

/* ====== STATS ====== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 0.88rem; color: var(--gray); }

/* ====== FAQ ====== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  font-family: inherit;
}
.faq-q:hover { background: var(--light-bg); }
.faq-q .arrow {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ====== CTA BANNER ====== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent), #c0000f);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 0 20px;
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; opacity: 0.9; margin-bottom: 28px; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  background: rgba(255,255,255,0.15);
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  margin-bottom: 20px;
}
.cta-phone:hover { background: rgba(255,255,255,0.25); }

/* ====== FOOTER ====== */
footer {
  background: var(--dark);
  color: #aaa;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: #aaa;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.footer-contact li .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: #adc8ff; }
.footer-contact li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

/* ====== FLOATING CTA ====== */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: all 0.25s;
  color: #fff;
  cursor: pointer;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.float-call { background: var(--success); }
.float-whatsapp { background: #25d366; }
.float-icon { font-size: 1.3rem; }

/* ====== BREADCRUMB ====== */
.breadcrumb {
  background: var(--light-bg);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray);
}
.breadcrumb ol li:not(:last-child)::after { content: '›'; margin-left: 8px; }
.breadcrumb ol li a { color: var(--primary); }
.breadcrumb ol li a:hover { text-decoration: underline; }

/* ====== PAGE HERO ====== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* ====== CONTACT PAGE ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}
.contact-info { display: grid; gap: 20px; align-content: start; }
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-card .icon { font-size: 2rem; flex-shrink: 0; }
.contact-card h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--gray); }
.contact-card a:hover { color: var(--primary); }

/* ====== POLICY PAGES ====== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.policy-content h2 { font-size: 1.3rem; color: var(--dark); margin: 28px 0 12px; border-left: 4px solid var(--primary); padding-left: 12px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { font-size: 0.9rem; color: #555; margin-bottom: 12px; line-height: 1.8; }
.policy-content ul { margin: 12px 0 16px 20px; }
.policy-content ul li { font-size: 0.9rem; color: #555; margin-bottom: 8px; list-style: disc; line-height: 1.7; }

/* ====== NOTICE BANNER ====== */
.notice-bar {
  background: #fff3cd;
  border-bottom: 1px solid #ffc107;
  padding: 10px 0;
  font-size: 0.82rem;
  color: #856404;
  text-align: center;
}

/* ====== SUCCESS MESSAGE ====== */
.success-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 12px; }
  nav ul { flex-direction: column; gap: 4px; }
  nav ul li a { border-radius: 8px; }
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 50px 0 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 0; }
  .section-title h2 { font-size: 1.6rem; }
  .cta-banner { margin: 0; border-radius: 0; }
  .float-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
