/* ============================================================
   Jodhpur Companions — Standalone Stylesheet
   Light, attractive, well-defined theme
   Colors: Saffron #FF9933 + Royal Blue #1a5276 + Cream #FFF8E7
   ============================================================ */

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

:root {
  --saffron: #FF9933;
  --saffron-dark: #e67e22;
  --saffron-light: #fcd34d;
  --royal-blue: #1a5276;
  --royal-blue-dark: #154360;
  --royal-blue-light: #2471a3;
  --cream: #FFF8E7;
  --cream-dark: #FFF0D4;
  --text-dark: #2c3e50;
  --text-medium: #34495e;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --border-light: rgba(255, 153, 51, 0.15);
  --shadow-sm: 0 2px 8px rgba(26, 82, 118, 0.08);
  --shadow-md: 0 6px 20px rgba(26, 82, 118, 0.12);
  --shadow-lg: 0 12px 40px rgba(26, 82, 118, 0.18);
  --shadow-saffron: 0 6px 20px rgba(255, 153, 51, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --transition: all 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #FFF8E7 0%, #FFF0D4 100%);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  background: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-light) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 82, 118, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--saffron);
}

.logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.logo small {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
}

.main-nav ul {
  display: flex;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover, .main-nav a.active {
  background: rgba(255, 153, 51, 0.25);
  color: var(--saffron-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 50%, var(--royal-blue-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 153, 51, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 153, 51, 0.2);
  color: var(--saffron-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 153, 51, 0.3);
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  position: relative;
}

.hero h1 span {
  color: var(--saffron);
  display: block;
  font-size: 0.7em;
  margin-top: 8px;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  margin-bottom: 28px;
  color: var(--saffron-light);
}

.hero-note {
  margin-top: 16px;
  font-size: 15px;
  opacity: 0.9;
  position: relative;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: var(--shadow-saffron);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-dark), #d35400);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 153, 51, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--royal-blue);
  border: 2px solid var(--saffron);
}

.btn-secondary:hover {
  background: var(--saffron);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============ SECTIONS ============ */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 34px);
  color: var(--royal-blue);
  text-align: center;
  margin-bottom: 32px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-dark));
  border-radius: 4px;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.content-block p {
  margin-bottom: 16px;
  color: var(--text-medium);
  font-size: 15px;
}

.content-block strong {
  color: var(--royal-blue);
}

.check-list {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}

.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  color: var(--text-medium);
  font-size: 15px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ============ LOCATIONS BAR ============ */
.locations-bar {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
  padding: 14px 0;
  text-align: center;
}

.locations-bar p {
  color: var(--saffron-light);
  font-size: 14px;
  font-weight: 500;
}

/* ============ WHY CHOOSE ============ */
.why-choose {
  background: var(--white);
}

.why-choose .btn {
  display: block;
  margin: 32px auto 0;
}

/* ============ PROFILES GRID ============ */
.profiles {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  border: 2px solid transparent;
  display: block;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--saffron);
}

.profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--saffron);
}

.profile-card h3 {
  padding: 14px;
  text-align: center;
  color: var(--royal-blue);
  font-size: 17px;
  font-weight: 600;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.profiles .btn {
  display: block;
  margin: 0 auto;
}

/* ============ LOCATION GRID ============ */
.location-grid {
  background: var(--white);
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}

.loc-grid a {
  display: block;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  color: var(--royal-blue);
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.loc-grid a:hover {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-saffron);
}

/* ============ FEATURED ============ */
.featured {
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
}

.featured .section-title {
  color: var(--white);
}

.featured .section-title::after {
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  display: block;
}

.featured-info {
  padding: 32px;
}

.featured-info h3 {
  color: var(--saffron);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}

.featured-info p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 15px;
}

/* ============ WHY BOOK ============ */
.why-book {
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--saffron);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  color: var(--royal-blue);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.feature-card p {
  color: var(--text-medium);
  font-size: 14px;
}

/* ============ CHAT PROOF ============ */
.chat-proof {
  background: var(--white);
}

.chat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.chat-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}

.chat-grid img:hover {
  transform: scale(1.02);
  border-color: var(--saffron);
}

/* ============ MANISHA SECTION ============ */
.manisha-section {
  background: linear-gradient(135deg, var(--royal-blue), var(--royal-blue-dark));
}

.manisha-section .section-title {
  color: var(--white);
}

.manisha-section .section-title::after {
  background: var(--saffron);
}

.manisha-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-items: center;
}

.manisha-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.manisha-info {
  padding: 32px;
}

.manisha-info h3 {
  color: var(--royal-blue);
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.manisha-info p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 15px;
}

.manisha-info .highlight {
  color: var(--saffron);
  font-weight: 700;
  font-size: 18px;
}

/* ============ SERVICES ============ */
.services {
  background: var(--cream);
}

.service-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  border-left: 4px solid var(--saffron);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  color: var(--royal-blue);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 15px;
}

/* ============ FAQ ============ */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--royal-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--cream-dark);
}

.faq-icon {
  font-size: 24px;
  color: var(--saffron);
  transition: transform 0.3s ease;
  font-weight: 300;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 18px;
}

.faq-answer p {
  color: var(--text-medium);
  font-size: 15px;
}

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  text-align: center;
  padding: 60px 20px;
}

.contact-cta .section-title {
  color: var(--white);
}

.contact-cta .section-title::after {
  background: var(--white);
}

.cta-text {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 500;
}

.contact-cta .btn-primary {
  background: var(--white);
  color: var(--saffron-dark);
}

.contact-cta .btn-primary:hover {
  background: var(--royal-blue);
  color: var(--white);
}

.cta-note {
  color: var(--white);
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.95;
  font-weight: 500;
}

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(135deg, var(--royal-blue-dark), var(--royal-blue));
  color: var(--cream);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h4 {
  color: var(--saffron);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-grid p {
  color: rgba(255, 248, 231, 0.85);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: rgba(255, 248, 231, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-grid a:hover {
  color: var(--saffron);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 153, 51, 0.2);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 248, 231, 0.7);
  font-size: 13px;
  margin-bottom: 8px;
}

.disclaimer {
  font-size: 12px !important;
  opacity: 0.6;
  max-width: 800px;
  margin: 0 auto 8px;
}

/* ============ FLOATING BUTTONS ============ */
.float-whatsapp, .float-call {
  position: fixed;
  bottom: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-whatsapp {
  right: 24px;
  background: #25D366;
}

.float-call {
  left: 24px;
  background: var(--saffron);
}

.float-whatsapp:hover, .float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* ============ SCROLL TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--royal-blue-light);
  transform: translateY(-3px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--royal-blue-dark);
    padding: 16px;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 12px 16px;
  }

  .featured-card, .manisha-card {
    grid-template-columns: 1fr;
  }

  .featured-card img, .manisha-card img {
    min-height: 280px;
  }

  .section {
    padding: 40px 0;
  }

  .content-block, .featured-info, .manisha-info {
    padding: 20px;
  }

  .profile-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }

  .profile-card img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile-card img {
    height: 180px;
  }

  .profile-card h3 {
    font-size: 14px;
    padding: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 16px;
  }

  .float-whatsapp, .float-call {
    width: 48px;
    height: 48px;
    bottom: 16px;
  }

  .float-whatsapp {
    right: 16px;
  }

  .float-call {
    left: 16px;
  }
}
