/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Color Variables */
:root {
    --primary-blue: #1a365d;
    --accent-yellow: #ffd700;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --text-dark: #333333;
}

/* Header Styles */
.header {
    background: var(--primary-blue);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
}

.logo-sub {
    font-size: 0.9rem;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-actions {
    display: none;
}

.desktop-only {
    display: flex;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    z-index: 1001;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e6c200;
}

.btn-secondary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: #e6c200;
}

.cart-icon {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/banner.avif') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    padding-top: 20%;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Booking Section */
.booking-section {
    margin-top: -100px;
    position: relative;
    z-index: 100;
    padding-bottom: 2rem;
}

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

.booking-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.booking-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + label {
    background-color: var(--accent-yellow);
}

.toggle-switch input:checked + label:before {
    transform: translateX(26px);
}

.booking-form {
    width: 100%;
}

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

.form-input {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input[required]:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ff6b6b;
}

.form-input[required]:valid:not(:focus) {
    border-color: #4ecdc4;
}

/* Enhanced placeholder styling */
.form-input::placeholder {
    color: #999;
    opacity: 1;
}

.booking-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Welcome Section */
.welcome-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.welcome-image .image-container {
    background: var(--accent-yellow);
    border-radius: 15px;
    padding: 1rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.welcome-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.brand-name {
    color: var(--primary-blue);
}

.welcome-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.welcome-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.link-primary {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

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

/* Features Section */
.features-section {
    padding: 4rem 0;
}

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

.feature-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

/* Live Booking Alert */
.live-booking-alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid #e74c3c;
    border-radius: 10px;
    padding: 1rem;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-content {
    font-size: 0.8rem;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.alert-dot {
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

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

.alert-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #999;
}

/* Image Optimization */
.welcome-img {
    max-width: 100%;
    height: auto;
}

.card-image {
    background-image: var(--card-bg-image);
}

.card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card-overlay {
    z-index: 2;
}

/* Footer Styles */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-size: 1.1rem;
}

.footer-logo-sub {
    font-size: 0.85rem;
    margin-top: -2px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b8c6db;
    margin-bottom: 2rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

/* Footer Titles and Links */
.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #b8c6db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #b8c6db;
}

.contact-icon {
    font-size: 1rem;
    min-width: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 0.9rem;
    color: #b8c6db;
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #b8c6db;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
    }
    
    .nav-logo {
        z-index: 1001;
    }
    
    .logo-image {
        height: 35px;
    }
    
    /* Mobile Toggle Button */
    .nav-toggle {
        display: flex;
        order: 3;
        z-index: 1002;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-blue);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: rgba(255, 215, 0, 0.1);
        color: var(--accent-yellow);
    }
    
    .nav-menu li:last-child .nav-link {
        border-bottom: none;
    }
    
    /* Hide desktop actions, show mobile actions */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-actions {
        display: block;
        width: 100%;
        margin-top: 1.5rem;
        padding: 0 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }
    
    .mobile-actions .nav-actions {
        position: relative;
        transform: none;
        left: auto;
        bottom: auto;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .mobile-actions .btn-primary {
        width: 180px;
        text-align: center;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    /* Prevent body scroll when menu is open */
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-background {
        background-attachment: scroll;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .welcome-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .welcome-image .image-container {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-actions {
        justify-content: center;
    }
    
    /* Footer Mobile Styles */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section:first-child {
        order: 1;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .footer-links li {
        margin-bottom: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: inline-block;
    }
    
    .contact-info {
        align-items: center;
        gap: 1.2rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-icon {
        min-width: 25px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .footer-bottom-left p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem 1.2rem;
    }
    
    .footer-bottom-links li {
        margin: 0;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* About Page Mobile Styles */
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .page-hero-background {
        background-attachment: scroll;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .intro-img {
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid-about {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 200px;
    }
    
    /* Tours Page Mobile Styles */
    .filter-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-select {
        min-width: 180px;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-footer {
        display: none;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .tour-btn {
        width: 100%;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    /* Transfers Page Mobile Styles */
    .booking-card {
        padding: 2rem;
    }
    
    .transfer-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-tabs {
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .transfer-services .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .route-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .route-arrow {
        transform: rotate(90deg);
    }
    
    /* Insurance Page Mobile Styles */
    .quote-card {
        padding: 2rem;
    }
    
    .insurance-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card.popular {
        transform: none;
    }
    
    .plan-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    /* Contact Page Mobile Styles */
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions a {
        width: 200px;
        text-align: center;
    }
    
    .contact-faq .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .social-platform {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Tablet Styles - Medium Devices */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Header Tablet Styles */
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .btn-primary {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        text-align: center;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Header Small Mobile Styles */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-image {
        height: 30px;
    }
    
    .nav-toggle {
        width: 25px;
        height: 20px;
        padding: 0.3rem;
    }
    
    .nav-toggle span {
        height: 2px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1.5rem 0;
    }
    
    .nav-menu li {
        margin: 0.6rem 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .mobile-actions .btn-primary {
        width: 160px;
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .live-booking-alert {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Enhanced footer styles for very small screens */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-top {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        max-width: 95%;
    }
    
    .social-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        gap: 1rem;
    }
    
    .footer-bottom-left p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links {
        gap: 0.6rem 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* Extra Small Screens */
@media (max-width: 320px) {
    /* Header Extra Small Styles */
    .nav-container {
        padding: 0 8px;
    }
    
    .logo-image {
        height: 28px;
    }
    
    .nav-toggle {
        width: 22px;
        height: 18px;
        padding: 0.2rem;
    }
    
    .nav-toggle span {
        height: 2px;
    }
    
    .nav-menu {
        top: 55px;
        height: calc(100vh - 55px);
        padding: 1rem 0;
    }
    
    .nav-menu li {
        margin: 0.4rem 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }
    
    .mobile-actions .btn-primary {
        width: 140px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .footer-container {
        padding: 0 10px;
    }
    
    .footer-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .footer-title {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .contact-icon {
        min-width: auto;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .footer-bottom-links a {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }
}

/* About Page Specific Styles */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    min-height: 400px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.page-hero-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-top: 10%;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-yellow);
}

.breadcrumb-separator {
    color: var(--accent-yellow);
    font-weight: bold;
}

.breadcrumb-current {
    color: var(--accent-yellow);
    font-weight: 600;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Cards */
.mission-vision {
    margin-bottom: 4rem;
}

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

.mission-card,
.vision-card,
.values-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.card-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Why Choose Us */
.why-choose-us {
    margin-bottom: 4rem;
}

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

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Services Grid */
.our-services {
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
}

.service-content {
    padding: 1.5rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Statistics */
.statistics {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 4rem;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Call to Action */
.about-cta {
    background: var(--primary-blue);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #b8c6db;
}

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

/* Tours Page Specific Styles */
.page-hero-subtitle {
    color: #b8c6db;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Tour Filters */
.tour-filters {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-bar {
    display: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    min-width: 150px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.filter-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-btn:hover {
    background: #0f2a44;
}

/* Featured Tours */
.featured-tours {
    padding: 4rem 0;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tour-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tour-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-yellow);
    font-size: 1rem;
}

.rating-text {
    color: #666;
    font-size: 0.85rem;
}

.tour-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.highlight {
    background: var(--light-gray);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.tour-footer {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-from {
    font-size: 0.8rem;
    color: #666;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-per {
    font-size: 0.8rem;
    color: #666;
}

.tour-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.tour-btn:hover {
    background: #0f2a44;
}

/* Tour Categories */
.tour-categories {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.category-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tours CTA */
.tours-cta {
    background: var(--primary-blue);
    padding: 4rem 0;
    color: var(--white);
}

.tours-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.tours-cta .cta-title {
    color: var(--white);
}

.tours-cta .cta-description {
    color: #b8c6db;
}

/* Transfers Page Specific Styles */
.transfer-booking {
    padding: 4rem 0;
    background: var(--light-gray);
}

.booking-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.booking-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.form-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    background: var(--white);
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background: var(--light-gray);
}

.transfer-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.transfer-form .form-input {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.transfer-form .form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.transfer-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Transfer Services */
.transfer-services {
    padding: 4rem 0;
}

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

.transfer-services .service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.transfer-services .service-card:hover {
    transform: translateY(-5px);
}

.transfer-services .service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.transfer-services .service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.transfer-services .service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.feature-item {
    color: #666;
    font-size: 0.9rem;
}

.service-price {
    display: none;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.price-text {
    font-size: 0.8rem;
    color: #666;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Vehicle Fleet */
.vehicle-fleet {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.vehicle-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.vehicle-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1rem;
    color: var(--white);
}

.vehicle-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.vehicle-capacity {
    font-size: 0.9rem;
    opacity: 0.9;
}

.vehicle-details {
    padding: 1.5rem;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.spec {
    font-size: 0.85rem;
    color: #666;
}

.vehicle-price {
    display: none;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Popular Routes */
.popular-routes {
    padding: 4rem 0;
}

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

.route-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-3px);
}

.route-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.route-from,
.route-to {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.route-arrow {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: bold;
}

.route-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-time {
    color: #666;
    font-size: 0.85rem;
}

.route-price {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
}

/* Transfer Benefits */
.transfer-benefits {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Insurance Page Specific Styles */
.insurance-quote {
    padding: 4rem 0;
    background: var(--light-gray);
}

.quote-card {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.quote-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.quote-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.insurance-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insurance-form .form-group {
    display: flex;
    flex-direction: column;
}

.insurance-form .form-group.full-width {
    grid-column: 1 / -1;
}

.insurance-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.insurance-form .form-input {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.insurance-form .form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
}

.insurance-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Insurance Plans */
.insurance-plans {
    padding: 4rem 0;
}

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

.plan-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 600px;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-card.popular {
    border: 3px solid var(--accent-yellow);
    transform: scale(1.02);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plan-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.plan-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.9;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

.plan-description {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.4;
}

.plan-features {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-features-list {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-category {
    margin-bottom: 2rem;
}

.feature-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-yellow);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.feature-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1rem;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.feature-highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.7rem 0;
    margin: 0.2rem 0;
    border-left: 3px solid var(--accent-yellow);
    padding-left: 1.2rem;
    font-weight: 600;
}

.plan-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.plan-btn:hover {
    background: #0f2a44;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
}

.plan-card.popular .plan-btn {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.plan-card.popular .plan-btn:hover {
    background: #e6c200;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Coverage Details */
.coverage-details {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.coverage-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
}

.coverage-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coverage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.coverage-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #666;
    position: relative;
    padding-left: 1rem;
}

.coverage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
}

/* Insurance Benefits */
.insurance-benefits {
    padding: 4rem 0;
}

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

.insurance-benefits .benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insurance-benefits .benefit-card:hover {
    transform: translateY(-5px);
}

.insurance-benefits .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.insurance-benefits .benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.insurance-benefits .benefit-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* FAQ Section */
.insurance-faq {
    background: var(--light-gray);
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Insurance CTA */
.insurance-cta {
    background: var(--primary-blue);
    padding: 4rem 0;
    color: var(--white);
}

.insurance-cta .cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.insurance-cta .cta-title {
    color: var(--white);
}

.insurance-cta .cta-description {
    color: #b8c6db;
}

/* Contact Page Specific Styles */
.contact-info-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card .contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    margin: 0.3rem 0;
    color: #666;
    line-height: 1.5;
}

.contact-details strong {
    color: var(--text-dark);
}

.contact-link {
    display: inline-block;
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--accent-yellow);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.status-open {
    background: #4CAF50;
    color: var(--white);
    border-color: #4CAF50;
}

.status-open:hover {
    background: #45a049;
    border-color: #45a049;
    color: var(--white);
}

/* Contact Form */
.contact-form-section {
    padding: 4rem 0;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.contact-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-form .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-form .checkbox-item input[type="checkbox"] {
    display: none;
}

.contact-form .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-form .checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.contact-form .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--white);
    font-size: 0.8rem;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-blue);
    text-decoration: none;
}

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

.contact-submit {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    max-width: 400px;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.map-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

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

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
}

.contact-faq .faq-grid {
    max-width: 900px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
}

.contact-faq .faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-faq .faq-question:hover {
    background: var(--light-gray);
}

.contact-faq .faq-question h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.contact-faq .faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.contact-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.contact-faq .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.contact-faq .faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.contact-faq .faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Social Media Section */
.social-media-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.social-content {
    text-align: center;
    margin-bottom: 3rem;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-platform {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-platform:hover {
    transform: translateY(-5px);
}

.platform-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.platform-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0 0 0.5rem 0;
}

.platform-info p {
    color: #666;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.platform-followers {
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.85rem;
}