/* ============================================
   Trip Tunes Tour and Travels - Main Stylesheet
   ============================================ */

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

:root {
  --deep-blue: #1a3555;
  --sky-blue: #4a90c4;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --off-white: #f8f9fb;
  --light-grey: #eef1f5;
  --mid-grey: #8a9bb0;
  --dark-text: #1e2d3d;
  --body-text: #3d4f61;
  --border: #d8e2ed;
  --shadow: 0 2px 12px rgba(26,53,85,0.08);
  --shadow-md: 0 4px 24px rgba(26,53,85,0.12);
}

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

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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--deep-blue);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 1rem; color: var(--body-text); }

/* Container */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

/* Section Labels */
.section-label {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--mid-grey); font-size: 1.05rem; max-width: 520px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* Divider */
.divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 14px 0 0;
}
.divider.centered { margin: 14px auto 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 28px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--deep-blue);
  color: var(--white);
}
.btn-primary:hover { background: #1e3f6a; }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8913e; }
.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border: 1.5px solid var(--deep-blue);
}
.btn-outline:hover { background: var(--deep-blue); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-sm { padding: 8px 20px; font-size: 0.86rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe59; }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(26,53,85,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 44px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.1;
}
.logo-tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--body-text);
  padding: 6px 12px;
  border-radius: 3px;
}
.main-nav a:hover, .main-nav a.active { color: var(--deep-blue); }
.main-nav a.active { font-weight: 600; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  font-size: 0.88rem;
  color: var(--deep-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-blue);
}

/* Mobile Nav */
@media (max-width: 900px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    gap: 2px;

    /* hidden by default */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .main-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-grey);
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }
}
/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--deep-blue);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506461883276-594a12b5bca3?w=1600&q=80') center/cover no-repeat;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* Quick Inquiry Card */
.hero-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  color: var(--dark-text);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky-blue);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.hero-card .btn { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .hero { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-body { padding: 22px; }
.card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.card-body p { font-size: 0.9rem; color: var(--mid-grey); margin-bottom: 14px; line-height: 1.6; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--light-grey);
  margin-top: 4px;
}
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep-blue);
  font-weight: 700;
}
.price-tag small { font-family: 'Source Sans 3', sans-serif; font-size: 0.75rem; font-weight: 400; color: var(--mid-grey); }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--light-grey);
  color: var(--deep-blue);
}
.badge-gold { background: #fdf3d8; color: #a87b20; }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--deep-blue);
  font-size: 1.3rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.65; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img {
  border-radius: 6px;
  overflow: hidden;
}
.why-img img { width: 100%; height: 400px; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 14px; }
.why-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.why-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.why-item p { font-size: 0.86rem; color: var(--mid-grey); }

@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-img { order: -1; }
  .why-img img { height: 260px; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--deep-blue);
  padding: 36px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  color: var(--white);
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1;
}
.trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  display: block;
}

/* ============================================
   PACKAGES SECTION
   ============================================ */
.highlight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tour-card { position: relative; }
.tour-card .card-img { height: 200px; }
.highlights-list { margin-top: 10px; }
.highlights-list li {
  font-size: 0.82rem;
  color: var(--mid-grey);
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.highlights-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   CAB HIGHLIGHT SECTION
============================================ */

.cab-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.cab-desc {
  margin-top: 16px;
  line-height: 1.6;
}

/* LIST */
.why-list {
  margin-top: 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-num {
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

/* IMAGE */
.cab-highlight-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

/* BUTTON */
.cab-btn {
  margin-top: 22px;
}

/* ============================================
   TABLET & MOBILE
============================================ */

@media (max-width: 768px) {

  .cab-highlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cab-highlight-image img {
    height: 220px;
  }

  h2 {
    font-size: 1.4rem;
  }
}

/* ============================================
   SMALL MOBILE
============================================ */

@media (max-width: 480px) {

  .cab-highlight-image img {
    height: 180px;
  }

  .why-item {
    gap: 10px;
  }

  .why-num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}

/* ============================================
   LOCAL PRESENCE SECTION
   ============================================ */
.local-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.local-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.local-inner .map-placeholder {
  background: var(--light-grey);
  border-radius: 6px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}
.local-inner .map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width: 800px) {
  .local-inner { grid-template-columns: 1fr; }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--deep-blue);
  padding: 64px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0f1f33;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-tagline { color: var(--gold-light); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact li strong { color: rgba(255,255,255,0.85); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   PAGE HERO / BREADCRUMB
   ============================================ */
.page-hero {
  background: var(--deep-blue);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1585531943718-89dc7bc34d45?w=1200&q=70') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-story img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
}
.about-story blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: var(--off-white);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--deep-blue);
  border-radius: 0 4px 4px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.value-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p { font-size: 0.86rem; color: var(--mid-grey); }
@media (max-width: 800px) {
  .about-story { grid-template-columns: 1fr; }
  .about-story img { height: 260px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--light-grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 52px;
}
.contact-form-wrap, .contact-info-wrap { }
.contact-info-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px;
  margin-bottom: 20px;
}
.contact-info-box h3 { font-size: 1rem; margin-bottom: 16px; }
.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  align-items: flex-start;
}
.info-row .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.info-row div strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--mid-grey); margin-bottom: 2px; }
.map-embed {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 240px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-q {
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-a {
  font-size: 0.9rem;
  color: var(--mid-grey);
  margin-top: 10px;
  line-height: 1.7;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-toggle { font-size: 1.2rem; color: var(--mid-grey); flex-shrink: 0; }
.faq-item.open .faq-toggle { color: var(--gold); }

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner-wrap { text-align: center; padding: 48px; }
.spinner {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 3px solid var(--light-grey);
  border-top-color: var(--sky-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty state */
.empty-state { text-align: center; padding: 56px 24px; color: var(--mid-grey); }
.empty-state p { margin-top: 8px; font-size: 0.9rem; }

/* Success/error messages */
.alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.alert-success { background: #e8f8ef; color: #1e7a45; border: 1px solid #b2e4ca; }
.alert-error { background: #fde8e8; color: #9c2c2c; border: 1px solid #f5bcbc; }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: #f0f2f5;
  font-family: 'Source Sans 3', sans-serif;
}
.admin-sidebar {
  width: 230px;
  background: var(--deep-blue);
  color: var(--white);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-logo {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-logo .logo-name { color: var(--white); font-size: 0.95rem; }
.admin-logo .logo-tagline { color: var(--gold-light); font-size: 0.68rem; }
.admin-nav { flex: 1; padding: 16px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.admin-nav a.active { color: var(--gold-light); }
.admin-nav-label {
  padding: 14px 22px 6px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}
.admin-main { flex: 1; overflow: auto; }
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-topbar h2 { font-size: 1.1rem; color: var(--deep-blue); }
.admin-content { padding: 28px; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
}
.stat-card .stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--deep-blue);
  line-height: 1;
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--mid-grey); margin-top: 4px; }
.admin-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 24px;
}
.admin-panel-header {
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-panel-header h3 { font-size: 1rem; color: var(--deep-blue); }
.admin-panel-body { padding: 22px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mid-grey);
  font-weight: 600;
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 12px 12px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--light-grey);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table img { width: 48px; height: 40px; object-fit: cover; border-radius: 3px; }
.action-btn {
  padding: 4px 10px;
  font-size: 0.78rem;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--body-text);
  margin-right: 4px;
}
.action-btn.del { color: #c0392b; border-color: #f5bcbc; }
.action-btn.del:hover { background: #fde8e8; }
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
}
.modal h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; }
.admin-login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--off-white);
}
.admin-login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-md);
}
.admin-login-card .logo { justify-content: center; margin-bottom: 24px; }
.admin-login-card h2 { text-align: center; font-size: 1.3rem; margin-bottom: 6px; }
.admin-login-card p { text-align: center; font-size: 0.88rem; color: var(--mid-grey); margin-bottom: 24px; }

@media (max-width: 900px) {
  .admin-sidebar { display: none; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-content { padding: 16px; }
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.prose h2 { margin-top: 36px; margin-bottom: 12px; font-size: 1.25rem; }
.prose h3 { margin-top: 22px; margin-bottom: 8px; font-size: 1rem; }
.prose p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.8; }
.prose ul { margin: 10px 0 14px 20px; }
.prose ul li { list-style: disc; font-size: 0.95rem; margin-bottom: 6px; color: var(--body-text); }

/* Responsive misc */
@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero { padding: 52px 0; }
  h1 { font-size: 1.75rem; }
}
