/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    padding-top: 100px;
}

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

/* Navigation */
.navbar {
    background-color: #000;
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #D4AF37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;       /* stack vertically: (shield + logo) row + text */
  align-items: center;          /* center all elements horizontally */
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  margin: 0 auto;
}

/* ---- TOP ROW (Shield + Logo side-by-side) ---- */
.nav-logo .logo-row {
  display: flex;
  align-items: center;
  justify-content: center;      /* ensures center alignment visually */
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* 🛡️ Shield Logo (left) */
.nav-logo .logo-icon {
  width: 70px;
  height: 70px;
  background-image: url('images/WSS homepage Logo shield.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

/* 🟨 Text Logo (right, gold logo) */
.nav-logo h2 {
  width: 200px;
  height: 60px;
  background-image: url('images/WSS logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
  text-indent: -9999px;
  overflow: hidden;
}

/* ⬇️ Subtitle centered under both */
.nav-logo span {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
  text-align: center;
  margin-top: 0.3rem;
}

/* Remove gold underline completely */
.nav-logo span::after {
  display: none;
}

/* 📱 Responsive layout: stack shield & logo vertically */
@media (max-width: 768px) {
  .nav-logo .logo-row {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav-logo .logo-icon {
    width: 80px;
    height: 80px;
  }

  .nav-logo h2 {
    width: 180px;
    height: 55px;
  }

  .nav-logo span {
    font-size: 0.8rem;
  }
}

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

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AF37;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #D4AF37;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Professional Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.shield-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-top: 0.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-decoration: none;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 1rem;
}

.cta-btn:hover {
    background-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-btn i {
    font-size: 1.2rem;
}

.fingerprint-btn {
    background-color: rgba(44, 62, 80, 0.9);
    border-color: #2c3e50;
}

.fingerprint-btn:hover {
    background-color: #2c3e50;
    border-color: #fff;
}

/* New Homepage Design */
.hero-new {
    background: #000;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem;
}

.hero-content-new {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.5rem;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
}

.hero-btn:hover {
    background: #D4AF37;
    color: #000;
}

.services-overview-new {
    background: #000;
    padding: 4rem 0;
}

.service-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card-new {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.service-card-new:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
}

.service-image {
    height: 200px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.05);
}

.service-card-new h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-new p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.book-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 2px solid #D4AF37;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.book-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 200px;
    }
    
    .service-cards-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.9), rgba(51, 51, 51, 0.9));
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid #D4AF37;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-man {
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.professional-man::before {
    content: '👔';
    font-size: 4rem;
}

.luxury-suv {
    position: absolute;
    left: 10%;
    bottom: 20%;
    width: 300px;
    height: 150px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.luxury-suv::before {
    content: '🚗';
    font-size: 3rem;
}

/* Services Overview with Images */
.services-overview {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.service-card:nth-child(1)::before {
    background-image: url('images/vip-protection.jpg');
}

.service-card:nth-child(2)::before {
    background-image: url('images/airport-transfer.jpg');
}

.service-card:nth-child(3)::before {
    background-image: url('images/event-security.jpg');
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #ccc;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 1px solid #D4AF37;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #ccc;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-section i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .professional-man {
        right: 10%;
        width: 150px;
        height: 200px;
    }
    
    .luxury-suv {
        left: 5%;
        width: 200px;
        height: 100px;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    margin-top: 100px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #1a1a1a;
    border: 1px solid #D4AF37;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fff;
}

.btn-primary {
    background-color: #D4AF37;
    color: #000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 5rem 0 2rem;
    background-color: #0a0a0a;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #ccc;
    font-size: 1.2rem;
}

/* Cards and Grids */
.card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
}

.card p {
    color: #ccc;
}

.card ul {
    color: #ccc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.card li {
    margin-bottom: 0.5rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: #000;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #D4AF37;
    color: #000;
}

/* Info Cards */
.info-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.info-card i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

/* Feature Cards */
.feature-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

/* Service Info Section */
.service-info {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.service-info h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.features-section h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Booking Section */
.booking-section {
    padding: 2rem 0;
}

/* Service Selection */
.service-selection {
    padding: 2rem 0;
    background-color: #0a0a0a;
}

/* Pricing Sections */
.pricing-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.pricing-section h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Pricing Cards */
.pricing-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: bold;
    color: #D4AF37;
}

.price .period {
    color: #ccc;
    font-size: 1rem;
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    color: #ccc;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: #D4AF37;
}

/* Addon Cards */
.addons-section {
    padding: 4rem 0;
    background-color: #000;
}

.addons-section h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.addon-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-card h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.addon-card .price {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.addon-card p:last-child {
    color: #ccc;
    font-size: 0.9rem;
}

.addon-card i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

/* Package Cards */
.packages-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.packages-section h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.package-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.package-price {
    margin-bottom: 2rem;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
}

.package-price .period {
    color: #ccc;
    font-size: 1rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-card li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-card li::before {
    content: '✓';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Rating Section */
.rating-section {
    padding: 3rem 0;
    background-color: #0a0a0a;
}

.overall-rating {
    text-align: center;
}

.rating-stars {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.overall-rating h2 {
    color: #D4AF37;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.overall-rating p {
    color: #ccc;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #000;
}

.testimonials-section h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.featured {
    border-width: 2px;
    background-color: #000;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
}

.customer-info h4 {
    color: #fff;
    margin-bottom: 0.2rem;
}

.customer-info p {
    color: #ccc;
    font-size: 0.9rem;
}

.rating {
    color: #D4AF37;
    font-size: 1rem;
}

.testimonial-text {
    color: #ccc;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    background-color: #D4AF37;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Service Ratings */
.service-ratings {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.service-ratings h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.rating-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.rating-card:hover {
    transform: translateY(-5px);
}

.rating-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.rating-card .rating-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rating-score {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rating-count {
    color: #ccc;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #000;
    text-align: center;
}

.cta-section h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-section p {
    color: #ccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* About Page Styles */
.mission-section {
    padding: 4rem 0;
    background-color: #000;
}

.mission-content h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.mission-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.mission-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-item i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.value-item h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #ccc;
    font-size: 0.9rem;
}

.mission-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    background-color: #0a0a0a;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.visual-placeholder i {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.visual-placeholder h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.visual-placeholder p {
    color: #ccc;
}

.story-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.story-section h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.story-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-choose-section {
    padding: 4rem 0;
    background-color: #000;
}

.why-choose-section h2 {
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.reason-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.reason-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.team-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.team-section h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-align: center;
}

.team-intro {
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background-color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #000;
    font-size: 2rem;
}

.team-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.team-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.certifications-section {
    padding: 4rem 0;
    background-color: #000;
}

.certifications-section h2 {
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.cert-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-card i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.cert-card h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cert-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* FAQ Page Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #000;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category {
    padding: 0.8rem 1.5rem;
    background-color: #0a0a0a;
    color: #D4AF37;
    border: 1px solid #D4AF37;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.faq-category.active,
.faq-category:hover {
    background-color: #D4AF37;
    color: #000;
}

.faq-group {
    display: none;
}

.faq-group.active {
    display: block;
}

.faq-item {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-question h3 {
    color: #D4AF37;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #D4AF37;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.contact-faq {
    padding: 4rem 0;
    background-color: #0a0a0a;
    text-align: center;
}

.contact-faq h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-faq p {
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-option {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.contact-option h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.contact-option p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.contact-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.contact-form-section {
    padding: 4rem 0;
    background-color: #000;
}

.contact-form h2,
.contact-details h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-method h4 {
    color: #D4AF37;
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.emergency-contact {
    background-color: #0a0a0a;
    border: 2px solid #D4AF37;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-contact p {
    color: #ccc;
    line-height: 1.6;
}

.service-areas {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.service-areas h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-align: center;
}

.service-areas > .container > p {
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.area-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    color: #ccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.area-card li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
}

.quick-contact {
    padding: 4rem 0;
    background-color: #000;
    text-align: center;
}

.quick-contact h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Careers Page Styles */
.why-work-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.why-work-section h2 {
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.benefit-card {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #ccc;
    font-size: 0.9rem;
}

.openings-section {
    padding: 4rem 0;
    background-color: #000;
}

.openings-section h2 {
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.job-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.job-header h3 {
    color: #D4AF37;
    font-size: 1.3rem;
}

.job-type {
    background-color: #D4AF37;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.job-details {
    margin-bottom: 1.5rem;
}

.job-details p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-details i {
    color: #D4AF37;
    width: 16px;
}

.job-description h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.job-description ul {
    list-style: none;
    margin-bottom: 1rem;
}

.job-description li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.job-description li::before {
    content: '•';
    color: #D4AF37;
    position: relative;
    left: 0;
}

.application-section {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.application-section h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.hr-contact {
    padding: 4rem 0;
    background-color: #000;
    text-align: center;
}

.hr-contact h2 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.hr-contact p {
    color: #ccc;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.hr-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hr-contact-item {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.hr-contact-item:hover {
    transform: translateY(-5px);
}

.hr-contact-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.hr-contact-item h4 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.hr-contact-item p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price .amount {
        font-size: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .rating {
        align-self: flex-end;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-category {
        width: 100%;
        max-width: 300px;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-buttons .btn-primary {
        width: 100%;
        max-width: 300px;
    }
} 

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-large {
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}

.executive-protection {
    background-image: url('images/executive secuirty.png?v=4');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.private-security {
    background-image: url('images/secuirty new image.png?v=3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.black-truck {
    background: linear-gradient(135deg, #000 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.black-truck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="40" width="60" height="30" rx="5" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="30" cy="75" r="8" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="70" cy="75" r="8" fill="none" stroke="%23D4AF37" stroke-width="2"/><rect x="25" y="35" width="50" height="15" fill="%23D4AF37" opacity="0.3"/></svg>') center/70% no-repeat;
    opacity: 0.9;
}

.airport-transfer {
    background-image: url('images/0A8AB32B-A7F6-4EEE-8791-1B90395F6533.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.fingerprint-service {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.fingerprint-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4AF37" stroke-width="2"/><path d="M30 40 Q50 20 70 40 Q50 60 30 40" fill="none" stroke="%23D4AF37" stroke-width="2"/><path d="M35 45 Q50 30 65 45" fill="none" stroke="%23D4AF37" stroke-width="1.5"/><path d="M40 50 Q50 40 60 50" fill="none" stroke="%23D4AF37" stroke-width="1"/></svg>') center/60% no-repeat;
    opacity: 0.8;
}

.fingerprint-service::after {
    content: 'FINGERPRINT SERVICES';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #D4AF37;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    width: 80%;
}

.vip-transportation {
    background-image: url('images/0B70A7C7-392C-4B0F-9107-86978D4F2365.png?v=3');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

/* Modern Booking Interface Styles */
.modern-booking {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 1rem 0 2rem 0;
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 3px solid #e9ecef;
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.progress-step.completed .step-number::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.progress-step.active .step-number {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.progress-step span {
    font-size: 1rem;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.progress-step.completed span {
    color: #28a745;
    font-weight: 600;
}

.progress-step.active span {
    color: #D4AF37;
    font-weight: 700;
}

.progress-line {
    height: 4px;
    background: #e9ecef;
    flex: 1;
    margin: 0 1.5rem;
    margin-top: -25px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line.completed {
    background: #28a745;
}

.progress-line.active {
    background: linear-gradient(90deg, #28a745 0%, #D4AF37 100%);
}

.booking-step {
    display: none;
    max-width: 1200px;
    margin: 1rem auto 2rem auto;
    padding: 0 1rem;
}

.booking-step.active {
    display: block;
}

.booking-form-modern {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-modern h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.segmented-control {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    gap: 4px;
}

.segment-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    border-radius: 6px;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.segment-btn.active {
    background: #2c3e50;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.select-wrapper select:focus {
    outline: none;
    border-color: #D4AF37;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.datetime-wrapper {
    position: relative;
}

.datetime-wrapper input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.datetime-wrapper input:focus {
    outline: none;
    border-color: #D4AF37;
}

.datetime-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.location-type {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.location-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 6px;
    color: #6c757d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.location-btn.active {
    border-color: #D4AF37;
    background: #D4AF37;
    color: white;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    flex: 1;
    padding: 0.75rem 4rem 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #495057;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #D4AF37;
}

.input-action {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.input-action:hover {
    color: #D4AF37;
}

.add-stop-btn {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    background: none;
    border: 2px dashed #D4AF37;
    color: #D4AF37;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.add-stop-btn:hover {
    background: #D4AF37;
    color: white;
}

.passenger-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    max-width: 200px;
}

.passenger-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 50%;
    color: #6c757d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.passenger-btn:hover {
    border-color: #D4AF37;
    color: #D4AF37;
}

.passenger-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    min-width: 2rem;
    text-align: center;
}

.next-step-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.next-step-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Vehicle Selection Styles */
.step2-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.request-summary-sidebar {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: fit-content;
    position: sticky;
    top: 1rem;
}

.summary-header {
    background: #2c3e50;
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.edit-btn-sidebar {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.edit-btn-sidebar:hover {
    background: white;
    color: #2c3e50;
}

.summary-image {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.summary-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

.summary-price-display {
    background: #2c3e50;
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D4AF37;
}

.vehicle-selection-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.request-summary {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.request-summary h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.edit-btn {
    background: none;
    border: none;
    color: #D4AF37;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease;
}

.edit-btn:hover {
    color: #b8941f;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
}

.vehicle-options {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-selection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.vehicle-selection-header h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.filter-button {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.filter-button:hover {
    background: #D4AF37;
    color: white;
}

.filter-badge {
    background: #D4AF37;
    color: white;
    border-radius: 12px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.active-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-pill {
    background: #e9ecef;
    color: #6c757d;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: #dee2e6;
}

.filter-pill i {
    font-size: 0.8rem;
}

.vehicle-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vehicle-card {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.vehicle-card-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 180px;
}

.vehicle-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.vehicle-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-image img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.03);
}

.vehicle-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vehicle-info-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vehicle-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.vehicle-type {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}

.vehicle-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.vehicle-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.5rem;
}

.feature-category h4 {
    color: #2c3e50;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #D4AF37;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-items span {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #495057;
    font-weight: 500;
    padding: 0.25rem 0;
}

.feature-items i {
    color: #6c757d;
    font-size: 0.9rem;
}

.feature-items .count {
    background: #D4AF37;
    color: white;
    border-radius: 12px;
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: auto;
    min-width: 24px;
    text-align: center;
}

.vehicle-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.rate-info {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-align: right;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #D4AF37;
    letter-spacing: -0.5px;
}

.price-display i {
    color: #6c757d;
    cursor: pointer;
}

.choose-vehicle-btn {
    background: #D4AF37;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.choose-vehicle-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.choose-vehicle-btn i {
    font-size: 1.1rem;
}

/* Confirmation Styles */
.confirmation-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.confirmation-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.confirm-booking-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.confirm-booking-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Pricing Calculator Styles */
.pricing-calculator {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.pricing-calculator h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.pricing-description {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
}

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

.pricing-form-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.pricing-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pricing-form-card .form-group {
    display: flex;
    flex-direction: column;
}

.pricing-form-card label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pricing-form-card input,
.pricing-form-card select {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    background: white;
    color: #495057;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.pricing-form-card input:focus,
.pricing-form-card select:focus {
    outline: none;
    border-color: #D4AF37;
}

.pricing-form-card .hint {
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.calculate-btn {
    background: #D4AF37;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.calculate-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.test-btn {
    background: #17a2b8;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.test-btn:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

.calculation-status {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
}

.pricing-result-card {
    background: #2c3e50;
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #D4AF37;
    margin-bottom: 0.5rem;
}

.pricing-meta {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.pricing-factor-badge {
    background: #34495e;
    color: #ecf0f1;
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-breakdown h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.pricing-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid #34495e;
    font-size: 0.9rem;
}

.pricing-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #D4AF37;
}

.pricing-table .muted {
    color: #95a5a6;
    font-size: 0.8rem;
}

.pricing-notes {
    color: #95a5a6;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Map Section Styles */
.map-section {
    margin: 1.5rem 0;
}

.map-section h4 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.map-container {
    height: 200px;
    background: #34495e;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #95a5a6;
    text-align: center;
}

.map-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #D4AF37;
}

.map-placeholder p {
    margin: 0;
    font-size: 0.9rem;
}

.route-info {
    display: flex;
    justify-content: space-around;
    background: #34495e;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.route-distance,
.route-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ecf0f1;
    font-weight: 500;
}

.route-distance i,
.route-duration i {
    color: #D4AF37;
}

/* Map Integration Styles */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.map-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
}

.map-link {
    background: #D4AF37;
    color: #000;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.map-link:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: #000;
    text-decoration: none;
}

.map-preview {
    text-align: center;
    color: #95a5a6;
}

.map-preview i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    display: block;
}

.map-preview p {
    margin: 0;
    font-size: 0.9rem;
}

.pricing-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

/* Review & Reserve Page Styles */
.review-reserve-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.review-header h2 {
    color: #2c3e50;
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.trip-type-badge {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.trip-type {
    background: #6c757d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.reservation-badge {
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Left Column: Trip Details */
.trip-details-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trip-summary-bar {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.trip-duration,
.passenger-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.trip-duration i,
.passenger-count i {
    color: #D4AF37;
}

.pickup-dropoff-info {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.pickup-header {
    margin-bottom: 1rem;
}

.pickup-header h4 {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pickup-header span {
    color: #2c3e50;
    font-weight: 600;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.location-info i {
    color: #D4AF37;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.location-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.location-address {
    color: #6c757d;
    font-size: 0.9rem;
}

.dropoff-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.estimated-dropoff {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-weight: 600;
}

.estimated-dropoff i {
    color: #28a745;
}

.trip-map {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
}

.map-container-small {
    height: 150px;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder-small {
    text-align: center;
    color: #6c757d;
}

.map-placeholder-small i {
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    display: block;
}

.additional-trip-info {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.edit-btn {
    background: none;
    border: 1px solid #D4AF37;
    color: #D4AF37;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: #D4AF37;
    color: white;
}

.trip-info-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.info-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #2c3e50;
    font-weight: 500;
}

.vehicle-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.vehicle-section h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.vehicle-display {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.vehicle-image {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-image img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.vehicle-details {
    flex: 1;
}

.vehicle-name {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.vehicle-capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.vehicle-capacity i {
    color: #D4AF37;
}

.vehicle-features h5 {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0.5rem 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icons {
    display: flex;
    gap: 0.75rem;
}

.feature-icons i {
    color: #D4AF37;
    font-size: 1rem;
}

/* Right Column: Pricing & Booking */
.pricing-booking-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-overview {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.price-overview h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.trip-pricing h5 {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.price-value {
    color: #2c3e50;
    font-weight: 600;
}

.total-row {
    border-top: 2px solid #e9ecef;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-row .price-label {
    font-weight: 700;
    color: #2c3e50;
}

.total-row .price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4AF37;
}

.promo-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
}

.apply-btn {
    background: #D4AF37;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #b8941f;
}

.additional-items {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.additional-items h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.child-seats h5,
.luggage-count h5 {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seat-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.seat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.seat-name {
    font-weight: 600;
    color: #2c3e50;
}

.view-photo-btn {
    background: none;
    border: none;
    color: #D4AF37;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}

.seat-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.seat-quantity {
    padding: 0.5rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    font-size: 0.9rem;
}

.seat-price {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.luggage-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.luggage-label {
    font-weight: 600;
    color: #2c3e50;
}

.luggage-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.luggage-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #e9ecef;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}

.luggage-btn:hover {
    background: #D4AF37;
    color: white;
    border-color: #D4AF37;
}

.luggage-count {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.booking-contact,
.payment-information {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
}

.booking-contact h4,
.payment-information h4 {
    color: #2c3e50;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form,
.payment-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group input {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    overflow: hidden;
}

.country-code {
    background: #f8f9fa;
    padding: 0.75rem;
    color: #6c757d;
    font-weight: 600;
    border-right: 1px solid #e9ecef;
}

.phone-input input {
    border: none;
    border-radius: 0;
    flex: 1;
}

.card-input {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.5rem;
}

.card-icons i {
    color: #6c757d;
    font-size: 1.2rem;
}

.final-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f8f9fa;
}

.back-to-pricing-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-to-pricing-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.complete-booking-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.complete-booking-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Responsive Design for Review Page */
@media (max-width: 768px) {
    .review-content {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .trip-type-badge {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .final-actions {
        flex-direction: column;
    }
}

/* Responsive Design for Step 2 */
@media (max-width: 1024px) {
    .step2-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .request-summary-sidebar {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .vehicle-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vehicle-image {
        max-width: 100%;
    }
}

.back-to-vehicles-btn {
    background: #6c757d;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.back-to-vehicles-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.confirm-booking-btn {
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.confirm-booking-btn:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vehicle-selection {
        grid-template-columns: 1fr;
    }
    
    .vehicle-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vehicle-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .segmented-control {
        flex-direction: column;
    }
    
    .location-type {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-form-card .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
}

/* Fingerprint Services Styles */
.fingerprint-overview {
    padding: 5rem 0 4rem 0;
    background-color: #0a0a0a;
    margin-top: 0;
}

.fingerprint-info h2 {
    color: #D4AF37;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.fingerprint-info p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: #D4AF37;
    margin-top: 0.5rem;
}

.feature-item h3 {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.fingerprint-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fingerprint-display {
    background-image: url('images/A5EFCBEB-7372-47BC-BBAF-C77B38B4BDC3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.fingerprint-icon {
    font-size: 4rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

.fingerprint-display h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.fingerprint-display p {
    color: #fff;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.fingerprint-services {
    padding: 5rem 0 4rem 0;
    background-color: #000;
}

.fingerprint-services h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.fingerprint-booking {
    padding: 5rem 0 4rem 0;
    background-color: #0a0a0a;
}

.fingerprint-booking h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #000;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
}

/* Livescan Fingerprinting Section */
.livescan-fingerprinting {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}

.livescan-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.livescan-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.livescan-image img {
    width: 100%;
    height: auto;
    display: block;
}

.livescan-details h2 {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.livescan-details p {
    color: #ecf0f1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.fee-schedule {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
    transition: all 0.3s ease;
}

.fee-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.fee-item.highlight {
    background: rgba(212, 175, 55, 0.15);
    border-left-color: #D4AF37;
}

.fee-label {
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 600;
}

.fee-price {
    color: #D4AF37;
    font-size: 1.5rem;
    font-weight: 900;
}

.payment-info {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #D4AF37;
}

.payment-info h3 {
    color: #D4AF37;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-badge {
    background: #D4AF37;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.payment-note {
    color: #ecf0f1;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.payment-note i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

/* Responsive for Livescan Section */
@media (max-width: 1024px) {
    .livescan-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .livescan-image {
        order: -1;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .livescan-details h2 {
        font-size: 1.5rem;
    }
    
    .fee-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .fee-price {
        font-size: 1.3rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: stretch;
    }
    
    .payment-badge {
        justify-content: center;
    }
}

.fingerprint-pricing {
    padding: 4rem 0;
    background-color: #000;
}

.fingerprint-pricing h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #0a0a0a;
    border: 1px solid #D4AF37;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #D4AF37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #D4AF37;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    color: #ccc;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li::before {
    content: '✓';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-content {
    padding: 2rem;
    text-align: center;
}

.service-content h3 {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-content p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.additional-services {
    padding: 4rem 0;
    background-color: #0a0a0a;
}

.additional-services h2 {
    text-align: center;
    color: #D4AF37;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 200px;
    }
} 

/* Booking Page Layout */
.booking-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.booking-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.shield-icon-large {
    font-size: 2.5rem;
    color: #D4AF37;
}

.title-text h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.booking-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-man-booking {
    width: 300px;
    height: 400px;
    background-image: url('images/B17C3617-5964-4CD1-B058-72984259DD2B.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.professional-man-booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    z-index: 1;
}

/* Responsive Design for Booking */
@media (max-width: 768px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-title {
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-text h1 {
        font-size: 2rem;
    }
    
    .booking-visual {
        height: 300px;
    }
    
    .professional-man-booking {
        width: 200px;
        height: 250px;
    }
} 

/* Car Booking Page Layout */
.vehicle-display {
    padding: 2rem 0;
    background-color: #0a0a0a;
}

.vehicle-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.luxury-suv-display {
    width: 600px;
    height: 500px;
    background-image: url('images/black-cheverolet-suburban-mountains-Google-Search-1-1024x441.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.luxury-suv-display h3,
.luxury-suv-display p {
    display: none;
}

.luxury-suv-display::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    z-index: 1;
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form-container h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Enhanced Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    background-color: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #D4AF37;
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Mobile First - Base styles for mobile */
@media (max-width: 480px) {
    /* Header and Navigation */
    .header {
        padding: 0.5rem 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .nav-links a {
        padding: 0.5rem;
        text-align: center;
        border: 1px solid #D4AF37;
        border-radius: 5px;
    }
    
    /* Logo */
    .logo {
        font-size: 1.2rem;
    }
    
    /* Hero Section */
    .hero-new {
        padding: 2rem 1rem;
        min-height: 60vh;
    }
    
    .hero-title-new {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Services Overview */
    .services-overview-new {
        padding: 2rem 1rem;
    }
    
    .service-cards-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-new {
        padding: 1rem;
    }
    
    .service-card-new h3 {
        font-size: 1.2rem;
    }
    
    .service-card-new p {
        font-size: 0.9rem;
    }
    
    .book-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Service Images */
    .service-image {
        height: 200px;
    }
    
    /* Forms */
    .booking-form-container {
        padding: 1rem;
    }
    
    .booking-form-container h2 {
        font-size: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Service Cards */
    .service-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .service-image {
        width: 100%;
        height: 200px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    /* Contact Info */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item h3 {
        font-size: 1.1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    /* Hero Section */
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Services */
    .service-cards-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card-large {
        flex-direction: row;
    }
    
    .service-image {
        width: 50%;
        height: 250px;
    }
    
    .service-content {
        width: 50%;
        padding: 1.5rem;
    }
    
    /* Forms */
    .booking-form-container {
        padding: 2rem;
    }
    
    /* Contact Info */
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Mobile / Small Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-cards-new {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title-new {
        font-size: 3rem;
    }
    
    .service-card-large {
        flex-direction: row;
    }
    
    .service-image {
        width: 40%;
        height: 300px;
    }
    
    .service-content {
        width: 60%;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 1024px) {
    /* Make buttons and links easier to tap */
    .btn-primary,
    .hero-btn,
    .book-btn,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve form usability */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for touch */
    .service-card-new,
    .service-card-large {
        margin-bottom: 1rem;
    }
    
    /* Improve readability */
    .hero-subtitle,
    .service-card-new p,
    .service-content p {
        line-height: 1.6;
    }
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 150px;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive Design for Car Booking */
@media (max-width: 768px) {
    .luxury-suv-display {
        width: 300px;
        height: 200px;
    }
    
    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
} 