/* ======================================================
   GLOBAL THEME – CLEAN TRAVEL BRAND
====================================================== */
:root{
  --primary:#0ea5e9;        /* sky blue */
  --primary-dark:#0284c7;
  --accent:#f97316;         /* orange CTA */
  --text:#0f172a;
  --muted:#6b7280;
  --bg:#f8fafc;
  --soft:#eef6fb;
  --card:#ffffff;
  --border:#e5e7eb;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding-top:75px;
  font-family:'Inter','Segoe UI',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

/* ======================================================
   GLOBAL THEME – TRAVEL AGENCY
====================================================== */
:root{
  --primary:#0ea5e9;
  --primary-dark:#0284c7;
  --accent:#f97316;
  --text:#0f172a;
  --muted:#6b7280;
  --bg:#f8fafc;
  --soft:#eef6fb;
  --card:#ffffff;
  --border:#e5e7eb;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  padding-top:90px;
  font-family:'Inter','Segoe UI',sans-serif;
  background:var(--bg);
  color:var(--text);
}

/* ======================================================
   NAVBAR – TRAVEL BRAND LOOK
====================================================== */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
  transition:.3s ease;
}

.navbar.scrolled{
  background:#ffffff;
  box-shadow:0 12px 30px rgba(0,0,0,.1);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 28px;
  display:grid;
  grid-template-columns:260px 1fr auto;
  align-items:center;
}

/* LOGO */
.logo-block{
  display:flex;
  flex-direction:column;
}
.logo{
  text-decoration:none;
  display:flex;
  align-items:baseline;
  gap:4px;
}
.logo-main{
  font-size:26px;
  font-weight:900;
  color:var(--text);
}
.logo-accent{
  font-size:26px;
  font-weight:900;
  color:var(--primary);
}
.tagline{
  font-size:11px;
  color:var(--muted);
  margin-top:2px;
  letter-spacing:.4px;
}

/* MENU */
.main-nav{
  display:flex;
  justify-content:center;
}

.nav-links{
  list-style:none;
  display:flex;
  gap:42px;
  margin:0;
  padding:0;
}

.nav-links a{
  text-decoration:none;
  font-size:15px;
  font-weight:700;
  color:var(--text);
  position:relative;
  padding:6px 0;
  transition:.25s;
}

.nav-links a:hover,
.nav-links a.active{
  color:var(--primary);
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:.25s;
}
.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

/* RIGHT SIDE */
.nav-auth{
  display:flex;
  align-items:center;
  gap:12px;
}

.user-pill{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 14px;
  border-radius:999px;
  background:#f1f5f9;
  font-size:13px;
  font-weight:600;
}

/* BUTTONS */
.btn-outline{
  padding:8px 18px;
  border-radius:999px;
  border:1.5px solid var(--primary);
  color:var(--primary);
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.btn-outline:hover{
  background:var(--primary);
  color:#fff;
}

.btn-solid{
  padding:9px 22px;
  border-radius:999px;
  background:var(--accent);
  color:#ffffff;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}
.btn-solid:hover{
  background:#ea580c;
}

.btn-solid.danger{
  background:#ef4444;
}
.btn-solid.danger:hover{
  background:#dc2626;
}

/* ======================================================
   HERO (OPTIONAL – SAFE)
====================================================== */
.hero-clean{
  padding:140px 0 100px;
  background:
    linear-gradient(
      120deg,
      rgba(224,242,254,.95),
      rgba(248,250,252,.95)
    ),
    url('../images/kashmir-hero.jpg') center/cover no-repeat;
}

/* ======================================================
   MOBILE
====================================================== */
@media(max-width:768px){

  .nav-container{
    grid-template-columns:1fr auto;
    row-gap:10px;
  }

  .main-nav{
    grid-column:1 / -1;
    display:none;
  }

  .main-nav.active{
    display:block;
  }

  .nav-links{
    flex-direction:column;
    gap:18px;
    padding:18px 0;
    text-align:center;
  }
}



/* ======================================================
   HERO SECTION – KASHMIR MOOD
====================================================== */
.hero-clean{
  padding:100px 0;
  background:
    linear-gradient(
      120deg,
      rgba(224,242,254,.95),
      rgba(248,250,252,.95)
    ),
    url('../images/kashmir-hero.jpg') center/cover no-repeat;
}

.hero-title{
  font-size:52px;
  font-weight:900;
  line-height:1.15;
}
.hero-title span{
  color:var(--primary);
}

.hero-sub{
  font-size:18px;
  color:var(--muted);
  margin-top:16px;
  max-width:520px;
}

.hero-img{
  width:100%;
  border-radius:24px;
  box-shadow:0 30px 70px rgba(0,0,0,.18);
}

/* SEARCH */
.hero-search .form-control{
  border-radius:14px;
  padding:14px 16px;
  border:1px solid var(--border);
}

.hero-search .form-control:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(14,165,233,.15);
}

.hero-search .btn{
  border-radius:14px;
  font-weight:800;
  background:var(--accent);
  border:none;
}
.hero-search .btn:hover{
  background:#ea580c;
}

/* ======================================================
   SECTIONS
====================================================== */
.section-clean{
  padding:90px 0;
}

.section-clean.bg-soft{
  background:var(--soft);
}

.section-head{
  text-align:center;
  margin-bottom:55px;
}
.section-head h2{
  font-size:34px;
  font-weight:800;
}
.section-head p{
  color:var(--muted);
  font-size:15px;
  max-width:520px;
  margin:10px auto 0;
}

/* ======================================================
   CARDS – TOURS & HOTELS
====================================================== */
.card-clean{
  background:var(--card);
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.card-clean:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 65px rgba(0,0,0,.14);
}

.card-clean img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .4s ease;
}

.card-clean:hover img{
  transform:scale(1.06);
}

.card-clean .card-body{
  padding:20px;
}

.card-clean h5{
  font-weight:700;
}

.card-clean p{
  font-size:14px;
  color:var(--muted);
}

.card-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:12px;
}

.card-footer strong{
  color:var(--accent);
  font-size:17px;
}

.card-footer a{
  text-decoration:none;
  font-weight:700;
  color:var(--primary);
}
.card-footer a:hover{
  text-decoration:underline;
}

/* ======================================================
   MOBILE
====================================================== */
.menu-toggle{
  display:none;
  font-size:26px;
  font-weight:700;
  cursor:pointer;
}

@media(max-width:768px){

  .hero-title{
    font-size:36px;
  }

  .nav-container{
    flex-wrap:wrap;
  }

  nav{
    width:100%;
    order:3;
    display:none;
  }

  nav.active{
    display:block;
  }

  .nav-links{
    flex-direction:column;
    gap:18px;
    padding:20px 0;
    text-align:center;
  }

  .menu-toggle{
    display:block;
  }
}
/* ======================================================
   AUTH PAGES – LOGIN / REGISTER
====================================================== */

.auth-page{
  min-height:calc(100vh - 90px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
}

.auth-card{
  width:100%;
  max-width:420px;
  background:var(--card);
  border-radius:22px;
  padding:32px 28px;
  border:1px solid var(--border);
  box-shadow:0 25px 55px rgba(0,0,0,.12);
  text-align:center;
}

.auth-card h2{
  font-weight:800;
  margin-bottom:6px;
}

.auth-sub{
  font-size:14px;
  color:var(--muted);
  margin-bottom:22px;
}

.auth-card input,
.auth-card select{
  width:100%;
  padding:14px 15px;
  border-radius:14px;
  border:1px solid var(--border);
  margin-bottom:14px;
  font-size:14px;
}

.auth-card input:focus,
.auth-card select:focus{
  outline:none;
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(14,165,233,.15);
}

.btn-auth{
  width:100%;
  padding:14px;
  border-radius:14px;
  background:var(--accent);
  border:none;
  font-weight:800;
  color:#fff;
  cursor:pointer;
}
.btn-auth:hover{
  background:#ea580c;
}

.auth-error{
  background:#fee2e2;
  color:#991b1b;
  padding:10px 14px;
  border-radius:10px;
  font-size:14px;
  margin-bottom:14px;
}

.auth-switch{
  margin-top:18px;
  font-size:14px;
}
.auth-switch a{
  color:var(--primary);
  font-weight:700;
  text-decoration:none;
}

/* Fade animation */
.fade-in{
  animation:fadeUp .45s ease;
}
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* ======================================================
   ADMIN DASHBOARD – ANALYTICS UI
====================================================== */

.admin-layout{
  display:flex;
  min-height:100vh;
  background:#f5f7fb;
}

/* SIDEBAR */
.admin-sidebar{
  width:260px;
  background:#0f172a;
  color:#fff;
  padding:22px;
}

.admin-brand h2{
  font-weight:900;
}
.admin-brand span{
  color:#0ea5e9;
}
.admin-brand small{
  color:#9ca3af;
  display:block;
  margin-top:4px;
}

.admin-menu{
  list-style:none;
  padding:0;
  margin-top:30px;
}

.admin-menu li{
  margin-bottom:6px;
}

.admin-menu a{
  display:block;
  padding:12px 14px;
  border-radius:10px;
  color:#e5e7eb;
  text-decoration:none;
  font-weight:600;
  transition:.25s;
}

.admin-menu a:hover,
.admin-menu a.active{
  background:#1e293b;
  color:#fff;
}

.admin-menu .logout a{
  color:#fb7185;
}

/* MAIN */
.admin-main{
  flex:1;
  padding:30px;
}

/* HEADER */
.admin-header h1{
  font-size:28px;
  font-weight:800;
}
.admin-header p{
  color:#6b7280;
  margin-top:4px;
}

/* STATS */
.admin-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:25px;
}

.stat-card{
  background:#ffffff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.stat-card h4{
  font-size:14px;
  color:#6b7280;
}
.stat-card h2{
  font-size:34px;
  margin:6px 0;
}
.stat-card span{
  font-size:13px;
  color:#16a34a;
}

.stat-card.blue{border-left:5px solid #0ea5e9;}
.stat-card.green{border-left:5px solid #22c55e;}
.stat-card.orange{border-left:5px solid #f97316;}

/* INSIGHTS */
.admin-insights{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
  margin-top:30px;
}

.insight-card{
  background:#ffffff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.insight-card h3{
  font-weight:700;
  margin-bottom:10px;
}

.insight-card ul{
  padding-left:18px;
  color:#374151;
}

/* MOBILE */
@media(max-width:768px){
  .admin-layout{
    flex-direction:column;
  }
  .admin-sidebar{
    width:100%;
  }
}
/* ======================================================
   ADMIN USERS – TABLE & ACTIONS
====================================================== */

.admin-filter{
  display:flex;
  gap:10px;
  margin:20px 0;
}
.admin-filter input,
.admin-filter select{
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--border);
}
.admin-filter button{
  padding:10px 16px;
  border-radius:10px;
  background:var(--primary);
  color:#fff;
  border:none;
  font-weight:600;
}

.admin-table-wrap{
  background:#fff;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  overflow:hidden;
}

.admin-table{
  width:100%;
  border-collapse:collapse;
}

.admin-table th,
.admin-table td{
  padding:14px 16px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
  font-size:14px;
}

.admin-table th{
  background:#f8fafc;
  font-weight:700;
}

.admin-table tr:hover{
  background:#f9fafb;
}

.admin-table .actions{
  display:flex;
  gap:6px;
}

.badge{
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

.badge.green{background:#dcfce7;color:#166534}
.badge.red{background:#fee2e2;color:#991b1b}
.badge.orange{background:#ffedd5;color:#9a3412}
.badge.gray{background:#e5e7eb;color:#374151}

.badge.role{
  background:#e0f2fe;
  color:#0369a1;
}

.btn.small{
  padding:6px 10px;
  border-radius:8px;
  font-size:12px;
  text-decoration:none;
  background:#e5e7eb;
  color:#111827;
}
.btn.small.green{background:#22c55e;color:#fff}
.btn.small.red{background:#ef4444;color:#fff}

.empty{
  text-align:center;
  padding:30px;
  color:#6b7280;
}
/* ======================================================
   USER DASHBOARD – PREMIUM UI
====================================================== */

.user-wrap{
  margin-top:90px;
  padding:30px;
  background:#f4f6fb;
  min-height:100vh;
}

/* HEADER */
.user-header{
  background:#ffffff;
  border-radius:20px;
  padding:24px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.user-header h2{
  font-weight:800;
}
.user-header p{
  color:#6b7280;
  margin-top:4px;
}
.user-badge{
  background:#e0f2fe;
  color:#0369a1;
  padding:6px 14px;
  border-radius:999px;
  font-weight:700;
}

/* STATS */
.user-stats{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin:28px 0;
}

.user-stat-card{
  background:#ffffff;
  border-radius:18px;
  padding:20px;
  display:flex;
  align-items:center;
  gap:16px;
  box-shadow:0 15px 35px rgba(0,0,0,.08);
}
.user-stat-card i{
  font-size:30px;
  color:#2563eb;
}
.user-stat-card h3{
  font-size:32px;
  margin:0;
}
.user-stat-card span{
  font-size:14px;
  color:#6b7280;
}

.user-stat-card.success i{color:#22c55e}
.user-stat-card.warning i{color:#f59e0b}

/* CARD */
.user-card{
  background:#ffffff;
  border-radius:20px;
  padding:24px;
  margin-bottom:25px;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* TABLE */
.user-table th{
  background:#f8fafc;
  font-weight:700;
}

/* QUICK ACTIONS */
.quick-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.qa-btn{
  padding:12px 18px;
  border-radius:14px;
  background:#e5e7eb;
  font-weight:700;
  text-decoration:none;
  color:#111827;
  display:flex;
  align-items:center;
  gap:8px;
}
.qa-btn.primary{
  background:#2563eb;
  color:#fff;
}
.qa-btn.danger{
  background:#ef4444;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){
  .user-wrap{
    padding:20px;
  }
  .user-header{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
}
/* ===== Layout ===== */
html,body{
  height:100%;
  margin:0;
  background:#f5f7fb;
  font-family:Inter,Segoe UI,sans-serif;
}

.tp-layout{
  display:flex;
  height:calc(100vh - 70px);
}

/* ===== Sidebar ===== */
.tp-sidebar{
  width:260px;
  background:#ffffff;
  border-right:1px solid #e5e7eb;
  padding:18px;
}

.tp-brand{
  font-size:18px;
  font-weight:700;
  margin-bottom:20px;
}

/* Nav */
.tp-nav{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.tp-nav a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  color:#374151;
  font-weight:600;
  transition:.25s;
}

.tp-nav a i{
  font-size:18px;
}

.tp-nav a:hover{
  background:#f1f5f9;
}

.tp-nav a.active{
  background:#2563eb;
  color:#ffffff;
}

/* ===== Main ===== */
.tp-main{
  flex:1;
  background:#f5f7fb;
}

.tp-frame{
  width:100%;
  height:100%;
  border:none;
}
.tour-card:hover{
  transform:translateY(-6px);
  transition:.3s ease;
}
/* =========================
   GLOBAL RESPONSIVE FIX
========================= */
*{
  box-sizing:border-box;
}

img{
  max-width:100%;
  height:auto;
}

.container,
.nav-container{
  width:100%;
  padding-left:15px;
  padding-right:15px;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */
@media(max-width:768px){

  body{
    padding-top:65px;
  }

  .navbar{
    height:auto;
  }

  .nav-container{
    flex-wrap:wrap;
    gap:10px;
  }

  nav{
    width:100%;
    display:none;
  }

  nav.active{
    display:block;
  }

  .nav-links{
    flex-direction:column;
    gap:14px;
    text-align:center;
    padding:15px 0;
  }

  .nav-auth{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    gap:8px;
  }

  .menu-toggle{
    display:block;
  }
}

/* =========================
   HERO SECTION
========================= */
@media(max-width:768px){

  .hero,
  .hero-clean{
    padding:50px 0;
    text-align:center;
  }

  .hero-title{
    font-size:32px;
  }

  .hero-sub{
    font-size:15px;
  }

  .hero img{
    margin-top:20px;
  }
}

/* =========================
   GRID / CARDS
========================= */
@media(max-width:992px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .grid{
    grid-template-columns:1fr;
  }

  .card-clean img{
    height:180px;
  }
}

/* =========================
   DASHBOARD (ALL ROLES)
========================= */
@media(max-width:768px){

  .tp-layout{
    flex-direction:column;
  }

  .tp-sidebar{
    width:100%;
    display:flex;
    overflow-x:auto;
    gap:10px;
    border-right:none;
    border-bottom:1px solid #e5e7eb;
  }

  .tp-sidebar a{
    white-space:nowrap;
    padding:10px 14px;
    border-radius:10px;
    background:#f1f5f9;
  }

  .tp-main{
    height:auto;
  }

  iframe.tp-frame{
    height:calc(100vh - 130px);
  }
}

/* =========================
   FORMS
========================= */
@media(max-width:576px){

  form .row{
    flex-direction:column;
  }

  input,
  select,
  textarea,
  button{
    width:100%;
  }
}

/* =========================
   TABLE RESPONSIVE
========================= */
@media(max-width:768px){

  table{
    font-size:13px;
  }

  table thead{
    display:none;
  }

  table tr{
    display:block;
    margin-bottom:12px;
    background:#fff;
    border-radius:12px;
    padding:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
  }

  table td{
    display:flex;
    justify-content:space-between;
    padding:6px 0;
  }

  table td::before{
    content:attr(data-label);
    font-weight:600;
    color:#64748b;
  }
}

/* =========================
   FOOTER
========================= */
@media(max-width:576px){
  footer{
    font-size:13px;
    padding:25px 15px;
  }
}
/* =========================
   NAVBAR – MOBILE RESPONSIVE
========================= */

.navbar{
  position:fixed;
  top:0;left:0;
  width:100%;
  background:#ffffff;
  z-index:1000;
  transition:.3s;
}

.navbar.scrolled{
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* LOGO */
.logo-block{
  display:flex;
  flex-direction:column;
}
.logo{
  font-size:26px;
  font-weight:800;
  text-decoration:none;
}
.logo-main{color:#111827}
.logo-accent{color:#2563eb}
.tagline{
  font-size:12px;
  color:#6b7280;
  margin-top:-4px;
}

/* MENU */
.main-nav{
  flex:1;
  display:flex;
  justify-content:center;
}
.nav-links{
  list-style:none;
  display:flex;
  gap:28px;
  margin:0;
  padding:0;
}
.nav-links a{
  text-decoration:none;
  font-weight:600;
  color:#374151;
}
.nav-links a.active,
.nav-links a:hover{
  color:#2563eb;
}

/* RIGHT */
.nav-auth{
  display:flex;
  align-items:center;
  gap:10px;
}
.user-pill{
  background:#f1f5f9;
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

/* BUTTONS */
.btn-outline{
  padding:7px 16px;
  border-radius:999px;
  border:1px solid #2563eb;
  color:#2563eb;
  text-decoration:none;
  font-weight:600;
}
.btn-solid{
  padding:8px 18px;
  border-radius:999px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
.btn-solid.danger{background:#dc2626}

/* MOBILE */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

/* ===== MOBILE BREAKPOINT ===== */
@media(max-width:768px){

  body{padding-top:70px}

  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#ffffff;
    display:none;
    flex-direction:column;
    border-top:1px solid #e5e7eb;
  }

  .main-nav.active{
    display:block;
  }

  .nav-links{
    flex-direction:column;
    gap:0;
  }

  .nav-links li{
    border-bottom:1px solid #e5e7eb;
  }

  .nav-links a{
    display:block;
    padding:14px;
    text-align:center;
  }

  .nav-auth{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
    padding:12px 0;
  }
}

/* TOAST */
.profile-toast{
  position:fixed;
  bottom:24px;
  right:24px;
  background:#111827;
  color:#fff;
  padding:14px 18px;
  border-radius:12px;
  font-weight:600;
  z-index:9999;
}
.profile-box{
  max-width:420px;
  margin:120px auto;
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.profile-box h2{
  text-align:center;
  margin-bottom:20px;
}
.profile-box input,
.profile-box textarea{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border-radius:10px;
  border:1px solid #ddd;
}
.profile-box button{
  width:100%;
  padding:14px;
  background:#ff7a00;
  border:none;
  border-radius:12px;
  color:#fff;
  font-weight:700;
}
.error{
  color:red;
  text-align:center;
}

/* =========================
   HERO CTA & TRUST
========================= */
.hero-cta{
  display:flex;
  gap:14px;
  margin-top:22px;
  flex-wrap:wrap;
}

.hero-trust{
  display:flex;
  gap:16px;
  margin-top:18px;
  font-size:13px;
  color:#374151;
  flex-wrap:wrap;
}

/* =========================
   TRUST COUNTERS
========================= */
.trust-section{
  padding:60px 0;
  background:#ffffff;
}

.trust-box{
  padding:20px;
}

.trust-box h2{
  font-size:36px;
  font-weight:900;
  color:var(--primary);
}

.trust-box p{
  margin-top:6px;
  color:var(--muted);
  font-weight:600;
}

/* =========================
   WHY CHOOSE US
========================= */
.why-card{
  background:#ffffff;
  padding:28px 22px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  height:100%;
}

.why-card i{
  font-size:34px;
  color:var(--accent);
  margin-bottom:14px;
}

.why-card h5{
  font-weight:800;
  margin-bottom:8px;
}

.why-card p{
  color:var(--muted);
  font-size:14px;
}

/* =========================
   ANIMATION
========================= */
.fade-in{
  animation:fadeUp .6s ease both;
}
.testimonial-card{
  background:#ffffff;
  padding:26px;
  border-radius:20px;
  box-shadow:0 20px 45px rgba(0,0,0,.08);
  height:100%;
}
.testimonial-card p{
  font-size:15px;
  color:#374151;
  margin:14px 0;
}
.testimonial-card strong{
  color:#111827;
}
.stars{
  font-size:18px;
}
/* =========================
   SafarSaathi HERO GLASS CARD
========================= */
.hero-glass-card{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:28px;
  padding:18px;
  box-shadow:0 35px 80px rgba(0,0,0,.18);
}

/* Badge improvement */
.badge.bg-primary{
  background:rgba(14,165,233,.12) !important;
  color:var(--primary);
  font-weight:700;
}
/* =========================
   LANGUAGE DROPDOWN – NAVBAR
========================= */
.lang-dropdown{
  display:flex;
  align-items:center;
  gap:6px;
  background:#f1f5f9;
  padding:6px 12px;
  border-radius:999px;
}

.lang-dropdown i{
  color:var(--primary);
  font-size:14px;
}

.lang-dropdown select{
  border:none;
  background:transparent;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.lang-dropdown select:focus{
  outline:none;
}

/* Mobile spacing */
@media(max-width:768px){
  .lang-dropdown{
    width:100%;
    justify-content:center;
  }
}
/* =========================
   LANGUAGE SWITCHER
========================= */
.lang-switch select{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:#ffffff;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}
.lang-switch select:focus{
  outline:none;
  border-color:var(--primary);
}
.policy-page{
  max-width:900px;
  margin:auto;
  line-height:1.7;
}
.policy-page h2{
  margin-bottom:20px;
}
.policy-page h4{
  margin-top:25px;
}

