:root {
    /* Color Palette */
    --color-bg: #0f172a;
    /* Midnight Blue */
    --color-bg-light: #1e293b;
    /* Lighter Blue */
    --color-primary: #f59e0b;
    /* Premium Gold/Amber */
    --color-primary-hover: #d97706;
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-surface: rgba(30, 41, 59, 0.7);
    --color-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Typography styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-primary:disabled {
    background-color: #475569;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    width: 100%;
    margin-top: 1rem;
}

.btn-outline:hover:not(:disabled) {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.brand-text span {
    color: var(--color-primary);
    /* Optional dual-color styling if we want to split the word later */
}

.brand-logo {
    height: 75px;
    width: auto;
    margin: -10px 0;
    /* Keep navbar from stretching too much */
    object-fit: contain;
    mix-blend-mode: screen;
    /* Drops out the black background of the image, keeping the white text and blue colors */
    transition: var(--transition);
}

.brand-logo:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: var(--color-primary);
}

@media (max-width: 768px) {

    .nav-links,
    .nav-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--color-bg);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    overflow: hidden;
    /* Prevent pseudo-elements from spilling out */
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
    /* Removes the white background of the car images */
    opacity: 1;
    /* Increased from 0.85 for better clarity */
    filter: brightness(1.1);
    /* Slightly brighten the cars */
}

.hero::before {
    left: 0;
    width: 50%;
    /* Skoda Superb */
    background: url('images/skoda_uploaded.jpg') center/contain no-repeat;
}

.hero::after {
    right: 0;
    width: 60%;
    /* Increased width for PC */
    background: url('images/vito_uploaded_new.png') right center/contain no-repeat;
    /* Aligned to right */
}

/* Specific PC Enhancements */
@media (min-width: 993px) {
    .hero::before {
        left: -5%;
        /* Shift car out slightly for better composition */
        opacity: 0.9;
    }

    .hero::after {
        right: -5%;
        opacity: 0.9;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--color-primary);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info-block a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-info-block i {
    color: var(--color-primary);
}

.hero-contact {
    margin-bottom: 2rem;
    margin-top: -0.5rem;
    /* pull up slightly closer to the description */
}

.hero-contact a {
    color: #fff;
    font-size: 1.1rem;
}

.hero-contact i {
    font-size: 1.3rem;
}

.hero-contact a:hover {
    color: var(--color-primary);
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
}

.feature-item i {
    color: var(--color-primary);
}

/* Booking Widget */
.booking-widget {
    background: var(--color-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.booking-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group label i {
    color: var(--color-primary);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group.half {
    flex: 1;
}

input,
select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 23, 42, 0.9);
}

/* Style date/time picker icons to white */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.price-estimate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.price-label {
    font-weight: 500;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--color-text-muted);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-summary {
    background: rgba(15, 23, 42, 0.5);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--color-text-muted);
}

.summary-item strong {
    color: #fff;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.payment-btn:not(.outline) {
    background: #fff;
    color: #0f172a;
}

.payment-btn:not(.outline):hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

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

.payment-btn.outline:hover {
    background: rgba(245, 158, 11, 0.1);
    transform: translateY(-2px);
}

.payment-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.payment-status.hidden {
    display: none;
}

.payment-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Footer */
footer {
    background: #0b1120;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact a {
    color: var(--color-text-muted);
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .booking-widget {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 6rem 1rem 2rem;
        min-height: auto;
    }

    /* Mobile Background Adjustments */
    .hero::before,
    .hero::after {
        width: 100%;
        height: 50%;
        opacity: 0.4;
        /* Lower opacity for mobile to keep text readable */
        background-size: 80%;
        /* Smaller cars on mobile */
    }

    .hero::before {
        top: 0;
        left: 0;
        background-position: top center;
    }

    .hero::after {
        bottom: 0;
        right: 0;
        top: auto;
        background-position: bottom center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.9) 100%);
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .booking-widget {
        padding: 1.5rem;
    }
}

/* =========================================================
   OUR FLEET SECTION
   ========================================================= */
.fleet {
    padding: 100px 5%;
    background-color: var(--color-bg);
}

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

.fleet-card {
    background: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: var(--shadow-soft);
}

.fleet-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img {
    transform: scale(1.05);
}

.fleet-info {
    padding: 2rem;
}

.fleet-class {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.fleet-model {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.fleet-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.fleet-features i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--color-bg) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    color: var(--color-text-muted);
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
}

.about-subtitle {
    font-size: 1.5rem;
    color: #fff;
    margin: 2.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-subtitle i {
    color: var(--color-primary);
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.about-list li i {
    color: var(--color-primary);
}

.chauffeur-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.chauffeur-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chauffeur-grid span i {
    color: var(--color-primary);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image {
    width: 100%;
    margin-bottom: -50px;
    /* Overlap effect */
    position: relative;
    z-index: 1;
}

.about-experience {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-primary);
    position: relative;
    z-index: 2;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    margin-top: 3rem;
}

.about-experience h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-experience h3 span {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .chauffeur-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   INTERNAL PAGE SPECIFIC STYLES (e.g. Airport Transfers)
   ========================================================= */

.page-hero {
    padding: 160px 5% 80px;
    background: linear-gradient(135deg, var(--color-bg) 0%, #000 100%);
    text-align: center;
    position: relative;
}

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

.page-hero h1 span {
    color: var(--color-primary);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Features Section */
.features-section {
    padding: 80px 5%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--color-primary);
}

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

.feature-card {
    background: var(--color-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: var(--shadow-soft);
}

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

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Routes Section */
.routes-section {
    padding: 80px 5%;
    background-color: var(--color-bg);
    text-align: center;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.route-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.route-card:hover {
    border-color: var(--color-primary);
    background: rgba(245, 158, 11, 0.05);
}

.route-card i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 5%;
    background-color: var(--color-bg-light);
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: #000;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 2px;
    background: dashed 2px var(--color-primary);
    z-index: 1;
    opacity: 0.5;
}

.timeline-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, #000 0%, var(--color-bg) 100%);
    border-top: 1px solid var(--color-primary);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .timeline-step:not(:last-child)::after {
        display: none;
    }
}

/* =========================================================
   CONTACT PAGE STYLES
   ========================================================= */
.contact-options {
    padding: 80px 5%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-soft);
}

.contact-card i {
    font-size: 3.5rem;
    color: var(--color-primary);
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #fff;
}

.contact-card p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-btn {
    width: 100%;
    text-decoration: none;
}

.contact-btn.whatsapp {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.contact-btn.whatsapp:hover {
    background-color: #128C7E;
}

.contact-btn.email {
    background-color: var(--color-primary);
    color: #fff;
}

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

.page-hero {
    padding: 160px 5% 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, var(--color-bg) 100%);
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero h1 span {
    color: var(--color-primary);
}

.page-hero p {
    color: var(--color-text-muted);
    font-size: 1.25rem;
}