/* ── THEINDIABOX.COM — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C33;
  --saffron-pale: #FFF3EA;
  --green: #138808;
  --green-light: #E8F5E9;
  --navy: #0D1B2A;
  --navy-mid: #1E3248;
  --grey: #64748B;
  --grey-light: #F1F5F9;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 8px 40px rgba(13,27,42,0.16);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.6; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--saffron); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--saffron); }
.btn-primary { background: var(--saffron); color: white !important; padding: 8px 20px; border-radius: 8px; font-weight: 600 !important; transition: background 0.2s !important; }
.btn-primary:hover { background: var(--saffron-light) !important; }

/* SECTIONS */
.section { padding: 64px 24px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-title { font-size: clamp(26px, 4vw, 40px); margin-bottom: 12px; }
.section-sub { font-size: 16px; color: var(--grey); margin-bottom: 40px; max-width: 560px; }

/* CARDS */
.card { background: white; border-radius: 16px; padding: 28px; box-shadow: var(--shadow); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius); font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; border: none; text-decoration: none; transition: all 0.2s; }
.btn-saffron { background: var(--saffron); color: white; }
.btn-saffron:hover { background: var(--saffron-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,107,0,0.3); }
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1DB954; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron); }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--navy); background: white; outline: none; transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--saffron); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #DC2626; font-size: 12px; margin-top: 4px; }

/* BADGES */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.badge-fast { background: #D1FAE5; color: #065F46; }
.badge-slow { background: #FEF3C7; color: #92400E; }
.badge-new { background: var(--saffron-pale); color: var(--saffron); }

/* FLOATING WA */
.float-wa { position: fixed; bottom: 24px; right: 24px; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 99; transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.1); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 48px 24px 32px; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); margin-top: 12px; line-height: 1.7; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 14px; color: white; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--saffron); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; }
.footer-bottom a { color: var(--saffron); text-decoration: none; }

/* BREADCRUMB */
.breadcrumb { padding: 12px 24px; font-size: 13px; color: var(--grey); max-width: 1100px; margin: 0 auto; }
.breadcrumb a { color: var(--saffron); text-decoration: none; }

/* TABLE */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th { background: var(--navy); color: white; padding: 12px 16px; text-align: left; font-size: 13px; }
.tbl td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; }
.tbl tr:nth-child(even) td { background: var(--grey-light); }

/* ALERTS */
.alert { padding: 16px 20px; border-radius: var(--radius); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.alert-info { background: #EBF8FF; border: 1px solid #BEE3F8; }
.alert-warning { background: var(--saffron-pale); border: 1px solid #FFD9B8; }
.alert-success { background: var(--green-light); border: 1px solid #A7D7A7; }
.alert-danger { background: #FFF5F5; border: 1px solid #FED7D7; }

/* DIVIDER */
.divider { height: 1px; background: var(--border); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
