:root {
    --primary-color: #0066FF;
    /* Logo Blue - estimated */
    --secondary-color: #003380;
    /* Darker Blue */
    --accent-color: #F0F4FF;
    /* Light Blue BG */
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;
    --success: #28a745;
    --emergency: #FF4444;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

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

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo .dot {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Logo Styles Update */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    /* Tighten overall line height */
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.tagline {
    font-size: 0.65rem;
    /* Balanced size */
    font-weight: 700;
    color: var(--primary-color);
    /* Blue color */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    /* Small gap between name and tagline */
}

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
    /* Ensure text is dark by default */
}

/* Specific override if driver-hero was different, now unified */
.driver-hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: var(--text-dark);
    padding: 180px 0 100px;
    /* Ensure padding matches hero */
}

.driver-hero .hero-content h1 {
    color: var(--text-dark);
}

.driver-hero .hero-content p {
    color: var(--text-light);
}

#hero-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* opacity: 0.6; Optional: Adjust opacity if particles are too strong */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    /* Ensure content is above canvas */
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 15px;
}

/* Hero Image & Phone Frame */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    /* Adjust aspect ratio as needed */
    background: #1a1a1a;
    border-radius: 40px;
    border: 10px solid #1a1a1a;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotateY(0) rotateX(0);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.phone-frame.small {
    width: 260px;
    height: 520px;
    transform: none;
    border-width: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-dark);
}

.glass-card i {
    color: var(--success);
}

.c1 {
    top: 15%;
    left: -40px;
}

.c2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Services */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.service-card.highlight {
    background: linear-gradient(135deg, white 0%, #fff5f5 100%);
    border-color: #ffe0e0;
}

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

.icon-box {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: var(--accent-color); Remove background for images if transparent */
    background: transparent;
}

.icon-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.icon-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight .icon-box {
    background: #ffe0e0;
    color: var(--emergency);
}

/* App Showcase */
.app-showcase {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.showcase-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.showcase-image::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.icon-bubble {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.check-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list li i {
    color: var(--success);
    font-size: 1.1rem;
    background: rgba(40, 167, 69, 0.1);
    padding: 5px;
    border-radius: 50%;
}

/* How It Works */
.how-it-works {
    background: #FAFBFC;
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
}

/* Driver Section */
.driver-section {
    background: linear-gradient(rgba(0, 80, 200, 0.9), rgba(0, 40, 160, 0.9)), url('assets/images/driver_bg.avif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    /* overflow: hidden; Removed to prevent clipping of floating elements */
}

.driver-container {
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}

.driver-content {
    flex: 1;
}

.driver-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    padding-right: 20px;
    /* Add breathing room for image shadow/badge */
}

.driver-image img {
    max-width: 100%;
    height: auto;
    /* filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1)); Remove shadow on dark if not needed, or keep */
    border-radius: 20px;
    max-height: 550px;
    /* Increased slightly */
}

.driver-content h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.driver-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .driver-container {
        flex-direction: column;
        text-align: center;
    }

    .driver-image {
        margin-top: 30px;
    }
}

/* Download */
.download-section {
    padding: 100px 0;
    background: white;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    min-width: 200px;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: var(--primary-color) !important;
    border: 2px solid white;
}

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

.store-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text small {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.btn-text span {
    font-size: 1.1rem;
    font-weight: 600;
}

.store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Driver Page Extras */
.driver-hero {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    color: var(--text-dark);
}

.driver-hero .hero-content h1,
.driver-hero .hero-content p {
    color: var(--text-dark);
}

.driver-hero .badge {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.driver-hero .btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.driver-hero .btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.download-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #F5F9FF;
    padding: 40px;
    border-radius: 30px;
}

.qr-container {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    text-align: center;
}

.qr-box i {
    font-size: 150px;
    color: #333;
}

.qr-box p {
    font-weight: 600;
    margin-top: 10px;
    color: var(--primary-color);
}

.active {
    color: var(--primary-color) !important;
    font-weight: 700;
}

@media (max-width: 768px) {
    .download-wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }
}

/* Coverage */
.coverage {
    padding: 60px 0;
    background: #F8F9FA;
    border-top: 1px solid #eee;
}


.coverage p {
    color: var(--text-light);
    margin-top: 10px;
}

/* Captcha Styles */
.captcha-container {
    margin-bottom: 20px;
}

.captcha-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.captcha-flex img {
    border-radius: 8px;
    border: 1px solid #ddd;
    height: 45px;
}

.captcha-flex input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-refresh {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: transform 0.3s ease;
}

.btn-refresh:hover {
    transform: rotate(180deg);
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: white;
    padding: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 500;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.contact-form button {
    width: 100%;
    justify-content: center;
}

/* Footer */
footer {
    background: #111;
    color: #999;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

    .hero {
        padding: 140px 0 80px;
    }

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

    .showcase-item {
        gap: 30px;
    }

    .showcase-text h2 {
        font-size: 2rem;
    }

    .driver-section {
        padding: 60px 0;
    }

    .driver-container {
        gap: 30px;
    }
}

/* Responseive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-group {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-image {
        margin-top: 40px;
    }

    .floating-card {
        display: none;
        /* Hide floating elements on mobile to clear clutter */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        border-top: 1px solid #f0f0f0;
    }

    .nav-links li {
        margin: 15px 0;
    }

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

    .mobile-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    /* Showcase Mobile */
    .showcase-item {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    .showcase-item.reverse {
        flex-direction: column;
        /* Normal column, image below text usually or adjust order */
    }

    .showcase-item .showcase-image {
        order: 2;
        /* Ensure image is below text */
    }

    .showcase-item .showcase-text {
        order: 1;
    }

    .icon-bubble {
        margin: 0 auto 20px;
    }

    .check-list {
        display: inline-block;
        text-align: left;
    }

    /* Driver Section Mobile */
    .driver-container {
        flex-direction: column;
        text-align: center;
    }

    .driver-image {
        margin-top: 30px;
        padding-right: 0;
    }

    .driver-content {
        order: 1;
    }

    .driver-image {
        order: 2;
    }

    .benefits-list {
        display: inline-block;
        text-align: left;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .sm-hide {
        display: none;
        /* Hide specific desktop buttons in mobile menu if redundant */
    }

    /* Contact Form Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .download-wrapper {
        flex-direction: column-reverse;
        padding: 30px 20px;
    }

    .store-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .store-btn {
        width: 100%;
    }
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 60px;
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-dark);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.legal-meta {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.legal-meta h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-meta p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* Refined Branding */
.dot {
    color: var(--primary-color) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    align-items: flex-start;
}

.footer-brand .brand-name {
    color: white;
    /* Footer specific text color */
    font-size: 1.5rem;
}

.footer-brand .tagline {
    color: #ccc;
}

.footer-brand img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid white;
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Contact Page Enhancements */
.page-header {
    background: linear-gradient(135deg, #0066FF 0%, #003380 100%);
    color: white;
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -60px;
    /* Overlap header */
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: #F0F7FF;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-link:hover {
    text-decoration: underline;
}

.advanced-form-section {
    padding: 0 0 100px;
}

.form-wrapper {
    background: white;
    padding: 0;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid #eee;
}

.form-info {
    background: #F8FAFC;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-inputs {
    padding: 50px;
}

.info-list li {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.faq-teaser {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #F9F9F9;
    font-size: 1rem;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 100px 0 80px;
    }

    .contact-cards-grid {
        margin-top: -40px;
    }
}