/* Global Styles - 60/30/10 Color Rule */
:root {
    /* 60% - Dominant Color (Light Neutral) */
    --dominant-color: #f8f9fa;
    --dominant-light: #ffffff;
    --dominant-medium: #e9ecef;
    --dominant-dark: #dee2e6;
    
    /* 30% - Secondary Color (Blue-Gray) */
    --secondary-color: #2c3e50;
    --secondary-light: #34495e;
    --secondary-dark: #1a252f;
    
    /* 10% - Accent Color (Golden Yellow) */
    --accent-color: #ffd700;
    --accent-light: #ffeb3b;
    --accent-dark: #f39c12;
    
    /* Legacy support */
    --primary-color: var(--secondary-color);
    --hover-color: var(--accent-light);
    --text-color: #333;
    --light-bg: var(--dominant-color);
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f5dc;
}

/* Navigation */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--accent-color);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(1);
    box-shadow: 0 0 10px var(--accent-color);
}

/* Add glow animation */
@keyframes navGlow {
    0% {
        text-shadow: 0 0 5px var(--secondary-color);
    }
    50% {
        text-shadow: 0 0 15px var(--secondary-color),
                     0 0 30px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 0 0 5px var(--secondary-color);
    }
}

.nav-links a:hover {
    animation: navGlow 1.5s infinite;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://www.shutterstock.com/image-vector/realistic-detailed-3d-driving-school-600nw-2359639965.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
    overflow: visible;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.hero h1 {
    color: #ffd700;
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-top: 0;
    padding-top: 0;
}

.hero p {
    color: #333;
    font-size: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.hero .calling-text {
    color: #ff3b30;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.book-now-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    animation: heartbeat 1.5s ease-in-out infinite;
}

.book-now-btn:hover {
    background-color: #ff3333;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.book-now-btn:hover::before {
    transform: scale(1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: #f5f5dc;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

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

.feature-card {
    background: var(--dominant-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Interactive Elements */
.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
}

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

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

/* Footer Links */
.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Social Links */
.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.social-button:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        position: relative;
        z-index: 1000;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-align: center;
        z-index: 999;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        border-radius: 10px;
        transition: all 0.3s ease;
        width: 80%;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.2);
        transform: translateX(10px);
    }

    .nav-links a.active {
        background: rgba(255, 215, 0, 0.3);
        color: #ffd700;
    }

    .hero h1 {
        font-size: 3rem;
        margin-top: 1rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.5rem;
    }

    .hero .calling-text {
        font-size: 1.6rem;
    }

    .book-now-btn {
        padding: 1.2rem 3rem;
        font-size: 1.4rem;
    }

    .hero-content {
        padding: 2.5rem 1rem;
        margin: 1rem;
        margin-top: 3rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
} 

/* Feature Badges */
.feature-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

.badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 215, 0, 0.2),
        transparent
    );
    animation: shine 3s infinite;
}

.badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.badge span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.badge:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

@keyframes shine {
    0% {
        top: -100%;
    }
    50% {
        top: 200%;
    }
    100% {
        top: -100%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make badges responsive */
@media (max-width: 768px) {
    .feature-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .badge {
        min-width: 200px;
        flex-direction: row;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .badge i {
        font-size: 2rem;
        margin-right: 1rem;
    }
}

/* Update hero content spacing */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero h1 {
    margin-bottom: 0;
}

.hero p {
    margin-bottom: 0;
}

.calling-text {
    margin: 1rem 0;
} 

/* Services Section */
.services {
    padding: 5rem 5%;
    background: #f5f5dc;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-header p {
    color: #666;
    font-size: 1.2rem;
}

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

.service-card {
    background: var(--dominant-light);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--secondary-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-color);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-color);
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    margin-top: 4rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.services-cta h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #666;
    margin-bottom: 2rem;
}

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

.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: var(--secondary-color);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    background: var(--accent-color);
}

.secondary-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services {
        padding: 3rem 5%;
    }

    .services-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card ul li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .services-cta {
        padding: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
} 

/* Traffic Light Services Section */
.traffic-services {
    padding: 5rem 5%;
    background: #f5f5dc;
    color: var(--text-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    color: var(--text-color);
    font-size: 1.2rem;
}

.traffic-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.light {
    width: 100%;
    min-height: 350px;
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.light.red {
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
}

.light.yellow {
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
}

.light.green {
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
}

.light:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #000000;
    text-shadow: none;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content ul {
    list-style: none;
}

.service-content ul li {
    margin: 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
}

.service-content ul li i {
    font-size: 1.3rem;
}

/* Road Signs Section */
.road-signs-section {
    padding: 4rem 0;
    text-align: center;
    background: #f5f5dc;
}

.road-signs-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.sign-card {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

.sign {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.sign.warning {
    background: #ffd700;
    color: rgba(0, 0, 0, 0.6);
}

.sign.regulatory {
    background: #ff3b30;
    color: white;
}

.sign.information {
    background: #34c759;
    color: white;
}

.sign.mandatory {
    background: #007aff;
    color: white;
}

.sign-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sign-card p {
    color: white;
    font-size: 1rem;
    opacity: 0.9;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.8);
}

.feature i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.feature h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: white;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .traffic-light {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }

    .light {
        width: 100% !important;
        max-width: 300px !important;
        margin-bottom: 1rem !important;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

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

    .service-content ul li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
} 

/* Black Theme Services Section */
.black-services {
    background: #f5f5dc;
    padding: 5rem 5%;
    color: var(--text-color);
}

.black-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.black-services .section-header h2 {
    color: #ffd700;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.black-services .section-header p {
    color: #ffffff;
    font-size: 1.3rem;
    opacity: 0.9;
}

.black-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.black-service-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.black-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ff3b30, #34c759);
    transition: all 0.5s ease;
}

.black-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.8);
}

.black-service-card:hover::before {
    left: 0;
}

.black-service-card h3 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

.black-service-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.black-service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.black-service-card ul li {
    color: white;
    margin: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.black-service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.black-service-card ul li:hover {
    opacity: 1;
    transform: translateX(5px);
}

.black-service-card ul li:hover::before {
    color: #ff3b30;
}

.black-service-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    align-self: center;
}

.black-service-link:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .black-services {
        padding: 3rem 5%;
    }

    .black-services .section-header h2 {
        font-size: 2.2rem;
    }

    .black-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .black-service-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .black-service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .black-service-card ul li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
} 

.journey-section {
    position: relative;
    padding: 6rem 5%;
    background: #f5f5dc;
    overflow: hidden;
    z-index: 1;
}

.journey-section::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" width="200" height="200" viewBox="0 0 200 200">\
            <circle cx="50" cy="50" r="40" fill="%23ff3b30" opacity="0.15"/>\
            <rect x="110" y="10" width="80" height="80" fill="%23ffd700" opacity="0.15"/>\
            <polygon points="30,110 70,110 50,170" fill="%23ffffff" opacity="0.15"/>\
            <circle cx="150" cy="150" r="40" fill="%2334c759" opacity="0.15"/>\
        </svg>');
    background-size: 200px 200px;
    animation: moveRoadSigns 30s linear infinite;
    z-index: -1;
}

@keyframes moveRoadSigns {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.journey-content h2 {
    color: #2c3e50;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.journey-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff3b30, #ffd700, #34c759);
    border-radius: 2px;
}

.journey-content p {
    color: #34495e;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.journey-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.journey-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-btn.primary {
    background: #ff3b30;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.3);
}

.journey-btn.secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.journey-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.journey-btn:hover {
    transform: translateY(-3px);
}

.journey-btn.primary:hover {
    background: #ff4d40;
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.4);
}

.journey-btn.secondary:hover {
    background: #2c3e50;
    color: #ffffff;
    border-color: #2c3e50;
}

.journey-btn:hover::before {
    transform: scale(1);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 4rem 5%;
    }

    .journey-content {
        padding: 2rem;
    }

    .journey-content h2 {
        font-size: 2.2rem;
    }

    .journey-content p {
        font-size: 1.1rem;
    }

    .journey-buttons {
        flex-direction: column;
    }

    .journey-btn {
        width: 100%;
        text-align: center;
    }
} 

/* Questionnaire Section Centering and Layout */
.questionnaire-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: #f5f5dc;
    color: #000000;
}

.questionnaire-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.questionnaire-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.question-card {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: fit-content;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 1);
}

.question-card label[for^="q"] {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    background: #000000;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    color: #ffffff;
    border: 3px solid #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5px;
}

.question-card div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.question-card input[type="radio"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

.question-card input[type="radio"] + label {
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0.2rem 0;
}

.question-card input[type="radio"] + label:hover {
    background: #ffd700;
    color: #000000;
    font-weight: bold;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.submit-btn {
    margin-top: 2rem;
    padding: 1rem 3rem;
    border-radius: 50px;
    border: 2px solid var(--accent-color);
    background: var(--accent-color);
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.submit-btn:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

@media (max-width: 768px) {
    .questionnaire-form {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    .question-card {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .questionnaire-form {
        max-width: 98vw;
        padding: 0 2vw;
        gap: 1rem;
    }
    .question-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: transparent;
    border: none;
    outline: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 1rem 5%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 1rem 0;
        z-index: 1000;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        text-align: center;
        border-radius: 8px;
    }
    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.1);
    }
    
    /* Hero Section */
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .hero .calling-text {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    .book-now-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    /* Feature Badges */
    .feature-badges {
        flex-direction: column;
        gap: 1rem;
    }
    .badge {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .service-card {
        padding: 1.5rem;
    }
    
    /* Traffic Services */
    .traffic-services {
        padding: 2rem 1rem;
    }
    .traffic-light {
        flex-direction: column;
        gap: 2rem;
    }
    .light {
        width: 60px;
        height: 60px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    /* Black Services */
    .black-services {
        padding: 2rem 1rem;
    }
    .black-services .section-header h2 {
        font-size: 2rem;
    }
    .black-service-card {
        padding: 1.5rem;
    }
    .black-service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-section {
        width: 100%;
    }
    
    /* Hero Sections */
    .about-hero-section h1,
    .contact-hero-section h1,
    .services-hero-section h1 {
        font-size: 2.2rem !important;
    }
    .about-hero-section p,
    .contact-hero-section p,
    .services-hero-section p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.8rem;
    }
    .hero .calling-text {
        font-size: 1rem;
    }
    .book-now-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    .about-hero-section h1,
    .contact-hero-section h1,
    .services-hero-section h1 {
        font-size: 1.8rem !important;
    }
    .about-hero-section p,
    .contact-hero-section p,
    .services-hero-section p {
        font-size: 1rem !important;
    }
}

/* About Us Section */
.about-us-section {
    padding: 5rem 5%;
    background: #f5f5dc;
}

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

.about-content {
    text-align: center;
}

.about-text h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-description {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-feature {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.about-feature h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-feature p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.5rem;
}

.stat h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 3rem 5%;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 0.8rem 3%;
    }
    
    .logo h1 {
        font-size: 1.2rem !important;
        letter-spacing: 1px !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(0, 0, 0, 0.95) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 999 !important;
        transition: left 0.3s ease !important;
    }
    
    .nav-links.active {
        left: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.1rem !important;
        padding: 1rem 2rem !important;
        margin: 0.5rem 0 !important;
        border-radius: 10px !important;
        transition: all 0.3s ease !important;
        width: 80% !important;
        text-align: center !important;
        display: block !important;
    }
    
    /* Hero Section */
    .hero {
        min-height: 80vh;
        padding: 2rem 1rem;
    }
    
    .hero h1 {
        font-size: 1.5rem !important;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero .calling-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .book-now-btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin-top: 15px;
    }
    
    /* Services Sections */
    .services, .black-services, .traffic-services {
        padding: 3rem 3%;
    }
    
    .services-header h2, .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .services-header p, .section-header p {
        font-size: 0.9rem;
    }
    
    .services-grid, .black-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card, .black-service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3, .black-service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card ul li, .black-service-card ul li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
    
    /* Traffic Light Section */
    .traffic-light {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .light {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .service-content ul li {
        font-size: 0.9rem;
        margin: 0.8rem 0;
    }
    
    /* Road Signs Section */
    .road-signs-section {
        padding: 3rem 3%;
    }
    
    .road-signs-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sign-card {
        padding: 1.5rem;
    }
    
    .sign-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .sign-card p {
        font-size: 0.9rem;
    }
    
    /* Quiz Section */
    .questionnaire-section {
        padding: 3rem 3%;
    }
    
    .questionnaire-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .questionnaire-form {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .question-card {
        padding: 1.5rem;
    }
    
    .question-card label[for^="q"] {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
    }
    
    .question-card input[type="radio"] + label {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    /* About Us Section */
    .about-us-section {
        padding: 3rem 3%;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-feature {
        padding: 1.5rem;
    }
    
    .about-feature h4 {
        font-size: 1.2rem;
    }
    
    .about-feature p {
        font-size: 0.9rem;
    }
    
    .about-stats {
        gap: 1.5rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p, .footer-section li {
        font-size: 0.9rem;
    }
    
    .social-links a {
        font-size: 1.5rem;
    }
    
    /* Gallery */
    .gallery-container {
        padding: 100px 3% 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item img {
        max-width: 100%;
    }
    
    .gallery-caption {
        font-size: 0.9rem;
        padding: 0.8rem 0;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.3rem !important;
    }
    
    .hero p {
        font-size: 0.7rem;
    }
    
    .hero .calling-text {
        font-size: 0.8rem;
    }
    
    .book-now-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .services-header h2, .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card, .black-service-card {
        padding: 1rem;
    }
    
    .question-card {
        padding: 1rem;
    }
    
    .question-card label[for^="q"] {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .question-card input[type="radio"] + label {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .hero p {
        font-size: 0.8rem;
    }
    
    .services, .black-services, .traffic-services {
        padding: 2rem 3%;
    }
}

/* Critical Mobile Fixes */
@media (max-width: 768px) {
    /* Ensure mobile menu is always visible on mobile */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Force mobile navigation to work */
    .nav-links {
        display: none !important;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    /* Improve touch targets */
    .nav-links a {
        min-height: 44px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure proper z-index stacking */
    .navbar {
        z-index: 1000 !important;
    }
    
    .nav-links {
        z-index: 999 !important;
    }
    
    .mobile-menu-toggle {
        z-index: 1001 !important;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.2) !important;
    }
    
    .service-card:hover,
    .black-service-card:hover,
    .feature-card:hover {
        transform: none !important;
    }
    
    .book-now-btn:hover {
        transform: none !important;
    }
} 