/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffd700;  /* Yellow */
    --hover-color: #ffeb3b;      /* Light Yellow */
    --text-color: #333;
    --light-bg: #f5f6fa;
}

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

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

/* Navigation */
.navbar {
    background-color: var(--primary-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(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-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(--secondary-color);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(1);
    box-shadow: 0 0 10px var(--secondary-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 {
    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: 0 1rem;
    position: relative;
    overflow: hidden;
}

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

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

.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: var(--light-bg);
}

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

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

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

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

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

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

/* Footer */
footer {
    background-color: var(--primary-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(--secondary-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(--secondary-color);
    transform: translateY(-3px);
}

.social-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-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: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links a:hover {
        background-color: var(--secondary-color);
        color: var(--primary-color);
    }

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

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

    .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: #f8f9fa;
}

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

.services-header h2 {
    color: var(--primary-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: white;
    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(--primary-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(--secondary-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-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(--secondary-color);
    transform: rotateY(360deg);
}

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

.service-card h3 {
    color: var(--primary-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(--primary-color);
    color: white;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-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(--secondary-color);
}

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

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

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

    .service-card {
        padding: 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: #1a1a1a;
    color: white;
}

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

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

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

.traffic-light {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.light {
    width: 300px;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.light.green {
    background: linear-gradient(145deg, #34c759, #4cd964);
}

.light:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

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

.service-content ul li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
}

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

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

.road-signs-section h3 {
    font-size: 2rem;
    color: white;
    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: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.sign-card h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.sign-card p {
    color: #ccc;
    font-size: 1rem;
}

/* 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: #2a2a2a;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.feature h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature p {
    color: #ccc;
}

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

    .light {
        width: 100%;
        max-width: 300px;
    }

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

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

/* Black Theme Services Section */
.black-services {
    background: #000000;
    padding: 5rem 5%;
    color: white;
}

.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(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.black-service-card {
    background: #111111;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.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(-10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
}

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

.black-service-card h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.black-service-card ul li {
    color: #ffffff;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.black-service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffd700;
    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: 1.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid #ffd700;
    color: #ffd700;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.black-service-link:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

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

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

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

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

.journey-section {
    position: relative;
    padding: 6rem 5%;
    background: #000000;
    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;
    margin: 3rem 0;
}

.questionnaire-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.questionnaire-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    gap: 1.5rem;
}

.question-card {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 1.5rem 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.question-card label[for^="q"] {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    background: rgba(255,255,255,0.7);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-weight: bold;
}

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

.submit-btn {
    margin-top: 1.5rem;
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    border: none;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.submit-btn:hover {
    background: var(--secondary-color);
    color: #222;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

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

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