/* 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;
}

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

/* Navigation */
.navbar {
    background-color: #000;
    padding: 1rem 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;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    border: 2px solid #000;
}

.nav-logo .logo-icon::before {
    content: 'WSS';
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.nav-logo h2 {
    color: #D4AF37;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-logo span {
    color: #fff;
    font-size: 0.8rem;
    display: block;
    font-weight: 300;
}

.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: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

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

.hero-title-new {
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    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;
    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: 6rem 0 3rem;
    background-color: #0a0a0a;
}

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

.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: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    position: relative;
    overflow: hidden;
}

.executive-protection::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="30" y="20" width="40" height="60" rx="5" fill="none" stroke="%23D4AF37" stroke-width="2"/><rect x="35" y="25" width="30" height="20" fill="%23D4AF37" opacity="0.3"/><circle cx="50" cy="50" r="8" fill="none" stroke="%23D4AF37" stroke-width="2"/><path d="M42 50 L50 58 L58 50" fill="none" stroke="%23D4AF37" stroke-width="2"/></svg>') center/50% no-repeat;
    opacity: 0.9;
}

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

.private-security::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="35" fill="none" stroke="%23D4AF37" stroke-width="3"/><path d="M50 20 L60 40 L50 35 L40 40 Z" fill="%23D4AF37" opacity="0.8"/><rect x="45" y="45" width="10" height="20" fill="%23D4AF37" opacity="0.6"/></svg>') center/60% no-repeat;
    opacity: 0.9;
}

.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: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    overflow: hidden;
}

.airport-transfer::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"><path d="M20 60 L30 50 L40 55 L50 45 L60 50 L70 40 L80 45 L80 60 Z" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="30" cy="55" r="3" fill="%23D4AF37"/><circle cx="50" cy="47" r="3" fill="%23D4AF37"/><circle cx="70" cy="42" r="3" fill="%23D4AF37"/><path d="M25 65 L35 55 M45 60 L55 50 M65 55 L75 45" stroke="%23D4AF37" stroke-width="1"/></svg>') center/80% no-repeat;
    opacity: 0.9;
}

.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: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.vip-transportation::before {
    content: '👑';
    font-size: 4rem;
}

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

.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: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 2px solid #D4AF37;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

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

.fingerprint-display h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.fingerprint-display p {
    color: #ccc;
    font-size: 1rem;
}

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

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

.fingerprint-booking {
    padding: 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;
}

.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: 3rem;
}

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

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

.title-text h1 {
    color: #fff;
    font-size: 3rem;
    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: linear-gradient(135deg, #333 0%, #555 100%);
    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::before {
    content: '👔';
    font-size: 6rem;
    position: relative;
    z-index: 2;
}

.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: 400px;
    height: 250px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.luxury-suv-display::before {
    content: '🚗';
    font-size: 5rem;
    position: relative;
    z-index: 2;
}

.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;
}

.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;
    }
} 