/* ============================================================
   Rajeshwari Travels – style.css
   Premium Gold & Black Luxury Theme
   Author: Rajeshwari Travels
   ============================================================ */

/* ============================================================
   TABLE OF CONTENTS
   01. Google Fonts Import
   02. CSS Variables & Reset
   03. Base / Typography
   04. Utility Classes
   05. Navigation
   06. Hero Section
   07. About Section
   08. Vehicles Section
   09. Services Section
   10. Why Us Section
   11. Gallery Section
   12. Testimonials Section
   13. Booking / Form Section
   14. Contact Section
   15. Footer
   16. Floating Buttons
   17. Animations & Keyframes
   18. Responsive – Tablet (max-width: 768px)
   19. Responsive – Mobile (max-width: 480px)
   ============================================================ */


/* ============================================================
   01. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');


/* ============================================================
   02. CSS VARIABLES & RESET
   ============================================================ */
:root {
  --gold:       #D4AF37;
  --gold-light: #F0D060;
  --gold-dark:  #B8960C;
  --dark:       #0B0B0B;
  --dark2:      #141414;
  --dark3:      #1A1A1A;
  --text:       #fff;
  --muted:      #B0B0B0;
}

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


/* ============================================================
   03. BASE / TYPOGRAPHY
   ============================================================ */
body {
  background: var(--pink);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
.playfair {
  font-family: 'Playfair Display', serif;
}

a {
  color: inherit;
}

/* Accessibility – screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ============================================================
   04. UTILITY CLASSES
   ============================================================ */
.gold {
  color: var(--gold);
}

/* Gold CTA Button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000000b8;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(117, 7, 80, 0.4);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--gold);
  color: #000;
}

/* Section Tag (eyebrow label) */
.section-tag {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Section Title */
.section-title {
  font-size: 2.4rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.2;
}

/* Decorative gold divider line */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.5rem auto 2rem;
}

/* WhatsApp / Green Button */
.wa-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* Social Buttons Row */
.social-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.social-btn:hover {
  background: var(--gold);
  color: #000;
}


/* ============================================================
   05. NAVIGATION
   ============================================================ */
nav {
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 0.6rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.nav-cta:hover {
  transform: translateY(-1px);
}


/* ============================================================
   06. HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0B0B0B 0%, #0f0f0f 50%, #141410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

/* Radial glow overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 40%, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

/* Grid texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,   transparent, transparent 80px, rgba(212, 175, 55, 0.015) 80px, rgba(212, 175, 55, 0.015) 81px),
    repeating-linear-gradient(90deg,  transparent, transparent 80px, rgba(212, 175, 55, 0.015) 80px, rgba(212, 175, 55, 0.015) 81px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 2rem;
  background: rgba(212, 175, 55, 0.05);
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats bar */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.stat-box {
  background: rgba(20, 20, 20, 0.9);
  padding: 1.2rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.stat-box .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}

.stat-box .lbl {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 0.2rem;
}


/* ============================================================
   07. ABOUT SECTION
   ============================================================ */
.about {
  padding: 6rem 2rem;
  background: var(--dark2);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-tag,
.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 6px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.feature-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* About Visual Card */
.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Gold top accent bar */
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.about-card-desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-num {
  text-align: center;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

.about-num .n {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.about-num .l {
  font-size: 11px;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* HQ location box */
.about-hq {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.about-hq-icon {
  font-size: 2rem;
}

.about-hq-label {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

.about-hq-city {
  font-size: 13px;
  color: var(--muted);
}

.about-hq-state {
  font-size: 12px;
  color: var(--muted);
}


/* ============================================================
   08. VEHICLES SECTION
   ============================================================ */
.vehicles {
  padding: 6rem 2rem;
  background: var(--dark);
  text-align: center;
}

.vehicles h2 {
  font-size: 2.4rem;
  margin: 0.5rem auto 1rem;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  text-align: left;
}

/* Vehicle Card */
.v-card {
  background: var(--dark2);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: 0.4s;
}

.v-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.v-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Vehicle-specific background gradients */
.v-img--van1   { background: linear-gradient(135deg, #1a1500, #0f0f0f); }
.v-img--van2   { background: linear-gradient(135deg, #001520, #0f0f0f); }
.v-img--van3   { background: linear-gradient(135deg, #150010, #0f0f0f); }
.v-img--sedan  { background: linear-gradient(135deg, #001510, #0f0f0f); }
.v-img--suv    { background: linear-gradient(135deg, #150500, #0f0f0f); }

.v-img-inner {
  font-size: 90px;
  filter: grayscale(0.3);
  transition: 0.3s;
}

.v-card:hover .v-img-inner {
  opacity: 1;
  transform: scale(1.05);
}

.v-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 0.4rem;
}

.tag {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.5px;
}

.tag-ac {
  background: rgba(52, 211, 153, 0.15);
  color: #34D399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.tag-seats {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.v-info {
  padding: 1.4rem;
}

.v-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.v-info p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 1rem;
}

.book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border: none;
  padding: 0.7rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
}

.book-btn:hover {
  opacity: 0.9;
}


/* ============================================================
   09. SERVICES SECTION
   ============================================================ */
.services {
  padding: 6rem 2rem;
  background: var(--dark2);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.s-card {
  background: var(--dark3);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  transition: 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.s-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(0deg, rgba(212, 175, 55, 0.06), transparent);
  transition: 0.3s;
}

.s-card:hover::before {
  height: 100%;
}

.s-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.s-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.s-card h3 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}

.s-card p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
}


/* ============================================================
   10. WHY US SECTION
   ============================================================ */
.why {
  padding: 6rem 2rem;
  background: var(--dark);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.w-card {
  background: var(--dark2);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  transition: 0.4s;
  text-align: center;
}

.w-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), var(--dark2));
}

.w-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 26px;
  transition: 0.3s;
}

.w-card:hover .w-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.w-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.w-card p {
  font-size: 12px;
  color: var(--muted);
}


/* ============================================================
   11. GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--dark);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.g-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: 0.4s;
}

.g-item:hover {
  transform: scale(1.03);
}

/* Featured item spans 2 cols & 2 rows */
.g-img{
width:100%;
height:100%;
overflow:hidden;
position:relative;
}

.gallery-image{
width:100%;
height:100%;
object-fit:cover;
display:block;
transition:0.4s ease;
}

.g-item{
position:relative;
overflow:hidden;
border-radius:10px;
min-height:180px;
}

.g-item--featured{
grid-column:span 2;
grid-row:span 2;
min-height:370px;
}

.g-item:hover .gallery-image{
transform:scale(1.05);
}

.g-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.25);
display:flex;
align-items:center;
justify-content:center;
font-size:2rem;
opacity:0;
transition:0.3s ease;
}

.g-item:hover .g-overlay{
opacity:1;
}

.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 175, 55, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 2rem;
}

.g-item:hover .g-overlay {
  background: rgba(212, 175, 55, 0.12);
}


/* ============================================================
   12. TESTIMONIALS SECTION
   ============================================================ */
.testimonials {
  padding: 6rem 2rem;
  background: var(--dark2);
  text-align: center;
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.t-card {
  background: var(--dark);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  padding: 2rem;
  text-align: left;
  position: relative;
  transition: 0.3s;
}

.t-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

/* Decorative quote mark */
.t-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: rgba(212, 175, 55, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.t-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 0.8rem;
}

.t-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.t-name {
  font-size: 14px;
  font-weight: 600;
}

.t-place {
  font-size: 11px;
  color: var(--muted);
}


/* ============================================================
   13. BOOKING / FORM SECTION
   ============================================================ */
.booking {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0B0B0B, #141410);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Radial glow behind form */
.booking::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent);
  border-radius: 50%;
}

.booking-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.booking-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.04);
}

.form-group select option {
  background: #1a1a1a;
  color: #fff;
}

.form-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}


/* ============================================================
   14. CONTACT SECTION
   ============================================================ */
.contact {
  padding: 6rem 2rem;
  background: var(--dark2);
  text-align: center;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.c-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 8px;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.08));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.c-item h4 {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.c-item p,
.c-item a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
}

.c-item a:hover {
  color: var(--gold);
}

/* Phone link special styling */
.c-item a[href^="tel"] {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

/* Map */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
  display: block;
}

/* WhatsApp quick CTA under map */
.map-wa-cta {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  text-align: center;
}

.map-wa-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.wa-btn--inline {
  display: inline-flex;
  font-size: 14px;
  padding: 10px 20px;
}

/* ============================================================
   15.6. INSURANCE SECTION (R.R INSURANCE)
   ============================================================ */

.insurance-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #0B0B0B, #141410);
  text-align: center;
}

.insurance-inner {
  max-width: 900px;
  margin: 0 auto;
}

.insurance-card {
  margin-top: 2rem;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

/* Top gold glow line */
.insurance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Title inside card */
.insurance-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* List styling */
.insurance-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.insurance-card ul li {
  padding: 0.6rem 0;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
}

.insurance-card ul li:hover {
  color: var(--gold);
  padding-left: 8px;
}

/* Contact text */
.insurance-contact {
  margin: 1rem 0 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
}

.insurance-contact p {
  font-size: 14px;
  color: var(--muted);
  margin: 0.3rem 0;
}

/* Buttons spacing fix */
.insurance-section .form-btns {
  justify-content: flex-start;
}





/* ============================================================
   15. FOOTER
   ============================================================ */
footer {
  background: #0B0B0B;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.f-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
}

.f-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.8rem;
}

.f-col h4 {
  font-size: 13px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.f-col ul {
  list-style: none;
}

.f-col li {
  margin-bottom: 0.5rem;
}

.f-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.f-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}

.footer-domain {
  color: var(--gold) !important;
}


/* ============================================================
   16. FLOATING BUTTONS
   ============================================================ */

/* Hero section floating WhatsApp (absolute within hero) */
.wa-float {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  animation: pulse 2s infinite;
  text-decoration: none;
  font-size: 26px;
}

/* Fixed WhatsApp FAB (outside hero) */
.wa-float--fixed {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: pulse 2s infinite;
  text-decoration: none;
  font-size: 26px;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 18px;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}


/* ============================================================
   17. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}


/* ============================================================
   18. RESPONSIVE – TABLET (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  nav {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 7rem 1rem 3rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-inner,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

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

  .g-item--featured {
    grid-column: span 2;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }

  .wa-float--fixed {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 1rem;
    bottom: 1rem;
  }

  .scroll-top {
    display: none;
  }

}


/* ============================================================
   19. RESPONSIVE – EXTRA SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .g-item--featured {
    grid-column: span 1;
  }

  .g-img--featured {
    height: 220px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

}
