/* Import all styles from main page */
:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f1c40f;
    --gold-dark: #b8941f;
    --text: #f5f5f5;
    --text-light: #b0b0b0;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(212, 175, 55, 0.2);
    --radius-lg: 20px;
    --radius-md: 15px;
    --radius-sm: 10px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(241, 196, 15, 0.02));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 2px;
    opacity: 0.8;
}

.section-title p {
    color: var(--text-light);
    max-width: 650px;
    margin: 25px auto 0;
    font-size: 1.15rem;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::after {
    left: 100%;
}

/* Enhanced Header Styles */
header {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transform: translateY(0);
    transition: transform 0.4s ease, background 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-menu li {
    margin-left: 0;
}

.nav-menu a {
    color: var(--text);
    font-weight: 600;
    padding: 12px 24px;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 196, 15, 0.05));
    transform: translateY(-2px);
}

/* Active state for current page - Gradient Style */
.nav-menu a.active {
    color: var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold);
}

/* Page Hero */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)), url('https://images.unsplash.com/photo-1567601913541-77d49ee53a93?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 1 !important;
    transform: none !important;
}

.page-hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--text), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.page-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 30px;
    text-decoration: none;
}

/* Tab Selector Styles - Updated for larger size */
.tab-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
}

.tab-button {
    padding: 20px 50px;
    background: transparent;
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
    white-space: nowrap;
}

.tab-button.active {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.tab-button:hover:not(.active) {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Armored Vehicles Section */
.armored-vehicles {
    background: var(--dark-gray);
    padding: 100px 0;
}

.vehicle-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vehicle-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.vehicle-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.4);
}

.vehicle-card:hover::before {
    transform: scaleX(1);
}

.vehicle-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--gold-light);
    text-decoration: none;
}

.vehicle-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    text-decoration: none;
}

.vehicle-specs {
    margin: 30px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-light);
    font-weight: 500;
}

.spec-value {
    color: var(--gold);
    font-weight: 600;
}

.protection-level {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 25px 0;
}

.protection-level h4 {
    color: var(--gold-light);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Enhanced Protection Features */
.protection-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.protection-features li {
    margin-bottom: 8px;
    color: var(--text-light);
    position: relative;
    padding: 8px 12px 8px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
}

.protection-features li:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.protection-features li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* Luxury Vehicles Grid */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.luxury-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.luxury-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.luxury-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Image Gallery Styles */
.image-gallery {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 1px solid var(--card-border);
}

.gallery-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-image:hover {
    transform: scale(1.05);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.gallery-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--black);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.5rem;
}

.modal-nav:hover {
    background: var(--gold);
    color: var(--black);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.luxury-content {
    padding: 30px;
}

.luxury-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.luxury-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.luxury-features {
    list-style: none;
    margin: 20px 0;
}

.luxury-features li {
    margin-bottom: 8px;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.luxury-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Vehicle Features Section */
.vehicle-features {
    background: var(--black);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--card-border);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(212, 175, 55, 0.4);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-item:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: var(--gold);
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.feature-item p {
    color: var(--text-light);
}

/* Rental Process */
.rental-process {
    background: var(--dark-gray);
    padding: 100px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--medium-gray);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.2);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold-light);
    text-decoration: none;
}

.step-content p {
    color: var(--text-light);
    text-decoration: none;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--black);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L1000,0 L1000,1000 L0,1000 Z"></path></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-decoration: none;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
}

.cta .btn {
    background: var(--black);
    color: var(--gold);
}

.cta .btn:hover {
    background: var(--dark-gray);
}

/* Footer */
footer {
    background: var(--black);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--gold-light);
    text-decoration: none;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-services a {
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
    padding: 5px 0;
    color: var(--text-light);
    text-decoration: none;
}

.footer-services a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact .icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.footer-contact .icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.footer-contact .icon i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.social-links a:hover i {
    color: var(--black);
}

.social-links a i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Luxury Info Block Styles */
.luxury-info-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(241, 196, 15, 0.05));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.luxury-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.luxury-info-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-right: 20px;
    width: 60px;
    text-align: center;
}

.info-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.info-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .vehicle-comparison {
        grid-template-columns: 1fr;
    }
    
    .luxury-grid {
        grid-template-columns: 1fr;
    }
    
    .protection-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        width: 80%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-radius: var(--radius-md);
        font-size: 1.1rem;
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--black);
        font-weight: 700;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }

    /* MOBILE TAB SELECTOR - STATIC PILL STYLE */
    .tab-selector {
        position: relative; /* Changed from sticky to relative */
        z-index: 999;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 50px;
        padding: 15px 20px;
        margin: 0 auto 40px auto; /* Removed top margin */
        border: 1px solid var(--card-border);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.7);
        max-width: 90%;
        width: auto;
    }
    
    .tab-button {
        padding: 15px 25px;
        font-size: 0.9rem;
        border-radius: 25px;
        margin: 0 5px;
        font-weight: 600;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    /* Luxury Info Block Mobile Adjustments */
    .luxury-info-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .info-item i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .luxury-info-block {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .vehicle-card {
        padding: 30px 20px;
    }
    
    .luxury-content {
        padding: 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    .gallery-nav {
        width: 35px;
        height: 35px;
    }

    /* Adjust static pill nav for very small screens */
    .tab-selector {
        padding: 12px 15px;
        max-width: 95%;
        border-radius: 40px;
    }
    
    .tab-button {
        padding: 12px 20px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
}

/* Styling for the Developer Credit Link */
.developer-credit {
    /* Ensures color is white and no underline, overriding browser default */
    color: #ffffff !important; 
    text-decoration: none !important; 
    
    /* Subtle enhancements */
    font-size: 1.5 em; /* Slightly smaller or adjust as needed */
    font-weight: 300;
    
    
    
    /* Adds a nice hover effect */
    transition: color 0.3s ease;
}

/* Hover effect: makes it brighter when the user mouses over it */
.developer-credit:hover {
    color: #ffd700 !important; /* Changes to a subtle gold/yellow on hover */
}