/*
Theme Name: Mediana Clean
Description: Professional transportation company WordPress theme
Author: AG8
Author URI: https://ag8.eu
Version: 2.1.3
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* CSS Variables */
:root {
    --primary-dark-blue: #1a365d;
    --background-light-blue: #f0f8ff;
    --cta-orange: #ff6b35;
    --white: #ffffff;
    --dark-gray: #2d3748;
    --light-gray: #718096;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
    /* Dark gradient backgrounds for better text contrast */
    --dark-gradient-bg: linear-gradient(135deg, var(--primary-dark-blue) 0%, #2c5282 50%, var(--background-light-blue) 100%);
    --dark-solid-bg: #1a365d;
    --glass-dark-overlay: rgba(26, 54, 93, 0.85);
    --text-contrast-light: #ffffff;
    --text-contrast-dark: #2d3748;
}

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

/* Fix WordPress Admin Bar and General Positioning */
body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(135deg, var(--background-light-blue) 0%, #e6f3ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
    /* Fix WordPress admin bar spacing */
    margin-top: 0;
    padding-top: 0;
}

/* Ensure admin bar doesn't interfere */
#wpadminbar {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
}

/* Fix body positioning with admin bar */
body.admin-bar {
    margin-top: -60px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        margin-top: 46px !important;
    }
}

/* Glass Morphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-heavy);
}

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

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--cta-orange);
}

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

.nav-link {
    color: var(--primary-dark-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--cta-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cta-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-dark-blue) 0%, 
        rgba(26, 54, 93, 0.8) 50%, 
        var(--cta-orange) 100%);
    opacity: 0.1;
    /* CRITICAL FIX: Ensure background covers entire hero section */
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    padding: 20px; /* Extra space for glow effects */
    overflow: visible; /* Prevent cutting */
    animation: fadeInUp 1s ease 0.4s both;
    position: relative;
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px; /* Smooth rounded edges */
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible; /* Allow glow effects */
    border: none;
    will-change: transform, box-shadow;
}

.btn::before {
    content: '';
    position: absolute;
    top: -8px; /* More space for glow */
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, var(--cta-orange), #ff8c5a, var(--cta-orange));
    border-radius: 33px; /* Larger for smooth glow */
    opacity: 0;
    z-index: -1;
    transition: all 0.3s ease;
    filter: blur(8px); /* Enhanced blur for better glow */
}

.btn:hover::before {
    opacity: 0.3;
    left: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8c5a, var(--cta-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--cta-orange);
    border: 2px solid var(--cta-orange);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-outline:hover {
    background: var(--cta-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Search Form Section - ПОПРАВЕНО ЗА ПО-ШИРОКА ФОРМА */
.search-section {
    padding: 1rem 0;
    position: relative;
}

.search-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-form {
    padding: 4rem;
    border-radius: 25px;
    position: relative;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-label {
    font-weight: 600;
    color: var(--primary-dark-blue);
    font-size: 0.9rem;
}

.form-input, .form-select {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark-blue);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--cta-orange);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-input::placeholder {
    color: var(--light-gray);
}

/* Routes Section */
.routes-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-dark-blue);
    text-align: center;
    margin-bottom: 3rem;
}

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

.route-card {
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
}

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

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

.route-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
}

.route-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cta-orange);
    /* Prevent unwanted line breaks in currency */
    white-space: nowrap;
}

/* Price display improvements */
.route-price br {
    /* Ensure line breaks in prices work correctly */
    line-height: 1.2;
}

/* Fix price formatting - prevent line breaks at spaces */
.route-price,
.schedule-route-price,
.pricing-amount {
    white-space: nowrap;
    word-spacing: normal;
    letter-spacing: normal;
}

/* Ensure currency stays together */
.route-price *,
.schedule-route-price *,
.pricing-amount * {
    white-space: nowrap;
}

/* Non-breaking space specific styling */
.route-price .currency-separator,
.schedule-route-price .currency-separator,
.pricing-amount .currency-separator {
    white-space: nowrap;
    font-weight: 600;
}

/* Euro price styling for route cards */
.route-price .eur-display {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
    margin-left: 0.25rem;
}

/* Mobile responsive for dual currency display */
@media (max-width: 768px) {
    .route-price {
        font-size: 1.3rem;
        text-align: right;
    }
    
    .route-price .eur-display {
        font-size: 0.8rem;
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .route-price {
        font-size: 1.2rem;
    }
    
    .route-price .eur-display {
        font-size: 0.75rem;
    }
}

.route-details {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.route-features {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.feature i {
    color: var(--cta-orange);
}

/* Advantages Section */
.advantages-section {
    padding: 6rem 0;
    background: var(--background-light-blue);
}

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

.advantage-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.advantage-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--background-light-blue);
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-dark-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--cta-orange);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
}

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

/* Footer */
.footer {
    background: var(--primary-dark-blue);
    color: white;
    padding: 3rem 0 2rem;
}

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

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

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--cta-orange);
}

.footer-content {
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--cta-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

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

/* Footer Author Link Styling */
.footer-author-link {
    color: var(--cta-orange) !important;
    font-weight: 600;
    text-decoration: none !important;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.footer-author-link:hover {
    color: white !important;
    background: var(--cta-orange);
    border-color: var(--cta-orange);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

/* Enhanced Contact Items Styling - CRITICAL DEPLOYMENT FIX */
.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    transition: none !important;
    border: none !important;
    flex-direction: row !important;
}

.contact-item:hover {
    background: transparent !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.contact-item i {
    color: var(--cta-orange) !important;
    font-size: 1.2rem !important;
    margin-top: 0.1rem !important;
    margin-right: 0.5rem !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    text-align: center !important;
    display: inline-block !important;
}

.contact-details {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.15rem !important;
}

/* First item in contact details should be inline with icon */
.contact-details > a,
.contact-details > span {
    display: block !important;
    margin-bottom: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.contact-details > a:hover {
    color: var(--cta-orange) !important;
    padding-left: 0.5rem !important;
    transform: translateX(5px) !important;
}

.contact-details > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-details > a:hover::before {
    left: 100%;
}

/* Additional contact items (2nd, 3rd phone/email) */
.contact-additional {
    margin-top: 0.15rem;
}

.contact-additional a {
    display: block;
    margin-bottom: 0.15rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.contact-additional a:last-child {
    margin-bottom: 0;
}

.contact-additional a:hover {
    color: var(--cta-orange) !important;
    padding-left: 0.5rem;
    transform: translateX(5px);
}

.contact-additional a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-additional a:hover::before {
    left: 100%;
}

.contact-label {
    font-weight: 600;
    color: var(--cta-orange);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.contact-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-list a:hover::before {
    left: 100%;
}

.contact-list a:hover {
    color: var(--cta-orange);
    padding-left: 1rem;
    transform: translateX(5px);
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Phone Numbers Section - ICON + FIRST PHONE ON SAME LINE - CRITICAL FIX */
.contact-phones {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: row !important;
}

.contact-phones .contact-details > a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-phones .contact-details > a:hover {
    color: var(--cta-orange) !important;
    padding-left: 0.5rem !important;
    transform: translateX(3px) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.contact-phones .contact-additional a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    text-decoration: none !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.contact-phones .contact-additional a:hover {
    color: var(--cta-orange) !important;
    text-decoration: none !important;
}

/* Email Addresses Section - ICON + FIRST EMAIL ON SAME LINE - CRITICAL FIX */
.contact-emails {
    display: flex !important;
    align-items: flex-start !important;
    flex-direction: row !important;
}

.contact-emails .contact-details > a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    word-break: break-all !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-emails .contact-details > a:hover {
    color: var(--cta-orange) !important;
    padding-left: 0.5rem !important;
    transform: translateX(3px) !important;
    background: transparent !important;
    text-decoration: none !important;
}

.contact-emails .contact-additional a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
}

.contact-emails .contact-additional a:hover {
    color: var(--cta-orange) !important;
    text-decoration: none !important;
}

/* Responsive Contact Items - ICON + FIRST ITEM ON SAME LINE */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 1rem;
    }
    
    .contact-item i {
        margin-top: 0;
        align-self: center;
    }
    
    .contact-details {
        align-items: center;
    }
    
    .contact-label {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* MOBILE: Stack all items vertically for better readability */
    .contact-phones,
    .contact-emails {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-phones .contact-details > a,
    .contact-emails .contact-details > a,
    .contact-phones .contact-additional a,
    .contact-emails .contact-additional a {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.5rem auto;
        padding: 0.75rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .contact-phones .contact-details > a:last-child,
    .contact-emails .contact-details > a:last-child,
    .contact-phones .contact-additional a:last-child,
    .contact-emails .contact-additional a:last-child {
        margin-bottom: 0;
    }
    
    .contact-phones .contact-details > a:hover,
    .contact-emails .contact-details > a:hover,
    .contact-phones .contact-additional a:hover,
    .contact-emails .contact-additional a:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--cta-orange);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
        color: var(--cta-orange) !important;
    }
    
    /* OTHER CONTACT ITEMS - KEEP EXISTING STYLE */
    .contact-list:not(.contact-phones):not(.contact-emails) {
        align-items: center;
        gap: 0.5rem;
    }
    
    .contact-list:not(.contact-phones):not(.contact-emails) a {
        padding: 0.5rem 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: 200px;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .contact-list:not(.contact-phones):not(.contact-emails) a:hover {
        background: rgba(255, 107, 53, 0.1);
        border-color: var(--cta-orange);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    }
    
    .contact-text {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 0.75rem 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-list a {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .contact-emails .contact-list a {
        font-size: 0.8rem;
        word-break: break-word;
    }
    
    .contact-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* Responsive Footer Author Link */
@media (max-width: 768px) {
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .footer-author-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
        margin: 0 0.2rem;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .footer-author-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.85rem;
        margin: 0.1rem;
    }
}

/* Professional Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */

/* Hardware acceleration for animated elements */
.animate-on-scroll,
.animate-fade-in,
.animate-slide-left,
.animate-slide-right,
.animate-scale-in,
.route-card,
.advantage-card,
.testimonial-card,
.blog-post-card,
.service-card,
.about-image-item,
.placeholder-item,
.faq-item,
.schedule-route-card,
.statistic-item,
.value-item,
.integrated-section,
.hero-buttons {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    perspective: 1000px;
    overflow: visible; /* Prevent cutting edges */
    contain: layout style paint;
}

/* Performance-optimized transforms - simplified */
.optimized-transform {
    transform: translate3d(0, 0, 0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Smooth animation without cutting edges */
.hero-buttons,
.hero-buttons *,
.hero-buttons .btn {
    overflow: visible !important;
    border-radius: 25px;
}

/* Ensure buttons don't get cut during animations */
.hero-buttons.animate-on-scroll,
.hero-buttons.animate-on-scroll * {
    /* Simplified for better performance */
    overflow: visible;
}

.hero-buttons.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* GPU acceleration for smooth effects */
.gpu-accelerated {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}

/* Smooth pulse without edge cutting */
.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--cta-orange), #ff8c5a, var(--cta-orange));
    border-radius: 27px; /* Slightly larger than button */
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    filter: blur(4px);
}

.hero-buttons .btn:hover::before {
    opacity: 0.3;
}

/* Reduce layout thrashing */
.no-layout-shift {
    contain: layout style;
}

/* Professional loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Enhanced accessibility for animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .parallax-element {
        transform: none !important;
    }
    
    .loading-skeleton {
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .animate-on-scroll {
        border: 2px solid currentColor;
    }
    
    .route-card,
    .advantage-card,
    .service-card {
        border: 2px solid currentColor;
    }
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
    .animate-on-scroll {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    /* Simplified animations for mobile */
    .route-card,
    .advantage-card,
    .service-card,
    .testimonial-card,
    .blog-post-card {
        transform: none !important;
    }
    
    /* Remove complex animations on low-end devices */
    .placeholder-item,
    .integrated-section {
        animation: none !important;
        transform: none !important;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .animate-on-scroll {
        transition-duration: 0.6s;
    }
    
    .route-card,
    .service-card {
        transform: translateZ(0);
    }
}

/* Desktop optimizations */
@media (min-width: 1025px) {
    .animate-on-scroll {
        transition-duration: 0.8s;
    }
    
    /* Enable all animations on desktop */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
    }
    
    .animate-on-scroll.animated {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles - remove all animations */
@media print {
    .animate-on-scroll,
    .animate-fade-in,
    .animate-slide-left,
    .animate-slide-right,
    .animate-scale-in {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-10px);
    }
    70% {
        transform: translateY(-5px);
    }
    90% {
        transform: translateY(-2px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
}

/* ===== SMOOTH SCROLL ANIMATION SYSTEM ===== */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible; /* Prevent edge cutting */
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth animation without cutting edges */
.hero-buttons.animate-on-scroll {
    /* Simplified for better performance */
    overflow: visible;
}

/* Different animation types */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Enhanced keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Additional professional animations */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }
.animate-delay-6 { animation-delay: 0.6s; }
.animate-delay-7 { animation-delay: 0.7s; }
.animate-delay-8 { animation-delay: 0.8s; }

/* Animation duration variants */
.animate-fast { animation-duration: 0.4s; }
.animate-normal { animation-duration: 0.6s; }
.animate-slow { animation-duration: 0.8s; }
.animate-slower { animation-duration: 1.2s; }

/* Professional hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Animation Classes */
.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

/* ===== PROFESSIONAL TIMING AND EASING ===== */

/* Professional cubic-bezier curves for different animation types */
.ease-smooth { animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ease-bounce { animation-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.ease-elastic { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ease-gentle { animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); }
.ease-snappy { animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Enhanced animation timing for different elements */
.route-card,
.service-card,
.blog-post-card {
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-duration: 0.8s;
}

.advantage-card,
.testimonial-card,
.value-item {
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-duration: 0.6s;
}

.faq-item {
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    animation-duration: 0.5s;
}

/* Professional entrance animations */
@keyframes professionalEntrance {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0) scale(0.95);
    }
    50% {
        opacity: 0.8;
        transform: translate3d(0, -5px, 0) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes elegantSlide {
    0% {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Performance optimized animation containers */
.animation-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.smooth-animation {
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced hover states for better user experience */
.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-hover:hover {
    transform: translate3d(0, -8px, 0) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Micro-interactions for professional feel */
.micro-bounce {
    transition: transform 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.micro-bounce:hover {
    transform: scale(1.05);
}

/* Staggered animation delays for better visual flow */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1.0s; }

/* Professional animation sequences */
.sequence-1 {
    animation-name: professionalEntrance;
    animation-duration: 0.8s;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.sequence-2 {
    animation-name: smoothReveal;
    animation-duration: 0.6s;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.sequence-3 {
    animation-name: elegantSlide;
    animation-duration: 0.7s;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

/* Enhanced accessibility and performance */
.prefers-reduced-motion {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Mobile-first responsive animations */
@media (max-width: 768px) {
    .animate-on-scroll {
        animation-duration: 0.4s !important;
        transition-duration: 0.4s !important;
    }
    
    .sequence-1,
    .sequence-2,
    .sequence-3 {
        animation-delay: 0s !important;
    }
}

/* High-performance GPU animations */
.gpu-layer {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Professional loading animations */
@keyframes professionalPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.loading-professional {
    animation: professionalPulse 1.5s ease-in-out infinite;
}

/* Subtle parallax effects for enhanced depth */
.parallax-slow {
    transform: translate3d(0, 0, 0);
    transition: transform 0.1s linear;
}

.parallax-medium {
    transform: translate3d(0, 0, 0);
    transition: transform 0.15s linear;
}

.parallax-fast {
    transform: translate3d(0, 0, 0);
    transition: transform 0.2s linear;
}

/* Staggered animation delays for better visual flow */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1.0s; }

/* Progressive enhancement for older browsers */
.no-js .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

/* Modern browser optimizations */
@supports (backdrop-filter: blur(10px)) {
    .glass {
        backdrop-filter: blur(10px) saturate(180%);
    }
}

@supports (transform-style: preserve-3d) {
    .animation-3d {
        transform-style: preserve-3d;
    }
}

/* Intersection Observer optimizations */
.io-element {
    position: relative;
    overflow: visible; /* Important for glow effects */
    contain: layout style paint;
    content-visibility: auto;
}

/* Reduced data mode support */
@media (prefers-reduced-data: reduce) {
    .animate-on-scroll {
        animation: none !important;
        transition: opacity 0.3s ease !important;
        opacity: 1 !important;
    }
    
    .parallax-element {
        transform: none !important;
    }
}

/* Battery saver mode */
@media (prefers-reduced-battery: reduce) {
    .animate-on-scroll {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    .loading-skeleton {
        animation: none !important;
    }
}

/* Informational Travel Notice */
.travel-info-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 380px;
    width: calc(100% - 48px);
    background: var(--white);
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-left: 4px solid var(--cta-orange);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 1.25rem 1.5rem;
    color: var(--dark-gray);
    z-index: 9000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.travel-info-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.travel-info-notice__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.travel-info-notice__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.travel-info-notice__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark-blue);
    margin: 0;
}

.travel-info-notice__body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

.travel-info-notice__dismiss {
    align-self: flex-start;
    background: var(--cta-orange);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.travel-info-notice__link {
    color: var(--primary-dark-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
    align-self: center;
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 54, 93, 0.2);
}

.travel-info-notice__link:hover {
    color: var(--cta-orange);
    border-color: var(--cta-orange);
    background: rgba(255, 107, 53, 0.08);
}

.travel-info-notice__link:focus-visible {
    outline: 2px solid var(--primary-dark-blue);
    outline-offset: 2px;
}

.travel-info-notice__dismiss:hover {
    background: #ff8c5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.travel-info-notice__dismiss:focus-visible {
    outline: 2px solid var(--primary-dark-blue);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .travel-info-notice {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-width: 100%;
        padding: 1rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .travel-info-notice {
        transition: none;
    }

    .travel-info-notice__dismiss {
        transition: none;
    }
}

/* Daily Informational Notice */
.daily-info-notice {
    position: fixed;
    top: 24px;
    right: 24px;
    max-width: 380px;
    width: calc(100% - 48px);
    background: var(--white);
    border: 1px solid rgba(26, 54, 93, 0.12);
    border-top: 4px solid var(--cta-orange);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 1.25rem 1.5rem 1rem;
    color: var(--dark-gray);
    z-index: 9000;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.daily-info-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.daily-info-notice__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.daily-info-notice__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark-blue);
    margin: 0;
}

.daily-info-notice__body {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
}

.daily-info-notice__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.daily-info-notice__link {
    color: var(--primary-dark-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.daily-info-notice__link:hover {
    color: var(--cta-orange);
    border-color: var(--cta-orange);
}

.daily-info-notice__dismiss {
    background: var(--cta-orange);
    color: var(--white);
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.daily-info-notice__dismiss:hover {
    background: #ff8c5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.daily-info-notice__dismiss:focus-visible,
.daily-info-notice__link:focus-visible {
    outline: 2px solid var(--primary-dark-blue);
    outline-offset: 2px;
}

.daily-info-notice__timer {
    margin-top: 0.9rem;
    height: 4px;
    background: rgba(26, 54, 93, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.daily-info-notice__timer-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--cta-orange);
    transform-origin: left center;
}

.daily-info-notice.is-timing .daily-info-notice__timer-bar {
    animation: daily-notice-timer 20s linear forwards;
}

@keyframes daily-notice-timer {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 768px) {
    .daily-info-notice {
        left: 16px;
        right: 16px;
        top: 16px;
        width: auto;
        max-width: 100%;
        padding: 1rem 1.25rem 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .daily-info-notice {
        transition: none;
    }

    .daily-info-notice__dismiss,
    .daily-info-notice__link {
        transition: none;
    }

    .daily-info-notice.is-timing .daily-info-notice__timer-bar {
        animation: none;
    }
}

/* Pulse Icon Animation */
.pulse-icon {
    animation: pulse 2s infinite;
}

/* Animated Cards */
.animated-card {
    transition: all 0.3s ease;
}

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

/* Professional Icon Styles */
.professional-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.professional-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.professional-icon:hover::before {
    left: 100%;
}

.professional-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Loading Animation Enhancements */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--cta-orange);
    animation: spin 1s ease-in-out infinite;
}

.loading-dots {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loading-dots div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--cta-orange);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-dots div:nth-child(1) {
    left: 8px;
    animation: loading-dots1 0.6s infinite;
}

.loading-dots div:nth-child(2) {
    left: 8px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(3) {
    left: 32px;
    animation: loading-dots2 0.6s infinite;
}

.loading-dots div:nth-child(4) {
    left: 56px;
    animation: loading-dots3 0.6s infinite;
}

@keyframes loading-dots1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes loading-dots3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes loading-dots2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}

/* Professional Hover Effects */
.professional-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.professional-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.professional-hover:hover::before {
    left: 100%;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
    cursor: pointer;
}

/* GTranslate Language Switcher Styling */
.nav-language-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 1rem;
}

/* GTranslate Widget Container */
.nav-language-switcher .gtranslate_wrapper {
    position: relative;
    z-index: 1001;
}

/* GTranslate Select Dropdown Styling */
.nav-language-switcher select {
    background: var(--glass-bg, rgba(255, 255, 255, 0.25)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.18)) !important;
    border-radius: 20px !important;
    color: var(--nav-text-color, var(--primary-dark-blue, #1a365d)) !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-light, 0 8px 32px rgba(31, 38, 135, 0.37)) !important;
    appearance: none !important;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%231a365d" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px !important;
    min-width: 120px;
}

/* GTranslate Dropdown Hover Effect */
.nav-language-switcher select:hover {
    background: var(--glass-bg-hover, rgba(255, 255, 255, 0.35)) !important;
    border-color: var(--accent-color, var(--cta-orange, #ff6b35)) !important;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3) !important;
    transform: translateY(-1px) !important;
    color: var(--nav-text-hover-color, var(--primary-dark-blue, #1a365d)) !important;
}

/* GTranslate Dropdown Focus Effect */
.nav-language-switcher select:focus {
    outline: none !important;
    border-color: var(--accent-color, var(--cta-orange, #ff6b35)) !important;
    background: var(--glass-bg-focus, rgba(255, 255, 255, 0.4)) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), var(--shadow-light, 0 8px 32px rgba(31, 38, 135, 0.37)) !important;
    color: var(--nav-text-color, var(--primary-dark-blue, #1a365d)) !important;
}

/* GTranslate Option Styling */
.nav-language-switcher select option {
    background: var(--background-light-blue, #f0f8ff) !important;
    color: var(--primary-dark-blue, #1a365d) !important;
    padding: 0.5rem !important;
    font-weight: 500 !important;
}

/* Language Flag Icons Styling (if flags are enabled) */
.nav-language-switcher .gtranslate_flag {
    border-radius: 4px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.nav-language-switcher .gtranslate_flag:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile GTranslate Styling */
@media (max-width: 768px) {
    .nav-language-switcher {
        margin-left: 0;
        margin-top: 1rem;
        justify-content: flex-start;
        width: 100%;
    }
    
    .nav-language-switcher select {
        width: 100% !important;
        max-width: 200px !important;
        font-size: 1rem !important;
        padding: 1rem 2.5rem 1rem 1rem !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(20px) !important;
    }
    
    .nav-language-switcher select:hover {
        background: rgba(255, 255, 255, 0.95) !important;
    }
}

/* Very Small Mobile Devices */
@media (max-width: 480px) {
    .nav-language-switcher select {
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* Ensure GTranslate works with existing navigation animations */
.nav-menu.active .nav-language-switcher {
    animation: fadeInUp 0.5s ease forwards;
}

/* Enhanced Accessibility */
.nav-language-switcher select:focus-visible {
    outline: 2px solid var(--cta-orange) !important;
    outline-offset: 2px !important;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .nav-language-switcher select {
        border: 2px solid var(--primary-dark-blue) !important;
        background: var(--white) !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .nav-language-switcher select {
        transition: none !important;
    }
    
    .nav-language-switcher select:hover {
        transform: none !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

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

    .hero {
        /* CRITICAL FIX: Ensure hero section content is properly centered and aligned */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }
    
    .hero::before {
        /* CRITICAL FIX: Ensure background is always a backdrop, never a sidebar */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            var(--primary-dark-blue) 0%, 
            rgba(26, 54, 93, 0.8) 50%, 
            var(--cta-orange) 100%);
        opacity: 0.1;
        z-index: 1;
        /* Ensure background doesn't affect layout flow */
        pointer-events: none;
    }
    
    .hero-container {
        /* CRITICAL FIX: Ensure content container is properly centered */
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .btn {
        /* CRITICAL FIX: Ensure buttons are properly sized and aligned on mobile */
        width: 100%;
        max-width: 280px;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }

    .search-grid {
        grid-template-columns: 1fr;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .search-form {
        padding: 2rem 1.5rem;
    }
    
    /* CRITICAL FIX: Ensure body background doesn't cause layout issues */
    body {
        /* Ensure background gradient is properly contained */
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification System - FIXED */
.notification {
    position: fixed;
    top: 80px;
    right: -400px;
    width: 350px;
    padding: 1rem 1.5rem;
    background: var(--cta-orange);
    color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    transition: right 0.3s ease, opacity 0.3s ease;
    z-index: 1001;
    max-width: 350px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
}

.notification.show {
    right: 20px;
    opacity: 1;
}

.notification i {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.notification-text {
    flex: 1;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Notification Type Colors */
.notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-left: 4px solid #1e7e34;
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-left: 4px solid #c82333;
}

.notification.warning {
    background: linear-gradient(135deg, #ffc107, #ff8c00);
    border-left: 4px solid #e0a800;
    color: #212529;
}

.notification.info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    border-left: 4px solid #138496;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .notification {
        top: 70px;
        right: -400px;
        width: calc(100vw - 20px);
        max-width: 400px;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .notification.show {
        right: 10px;
    }
    
    .notification-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .notification i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .notification {
        top: 60px;
        right: -400px;
        width: calc(100vw - 10px);
        max-width: 400px;
        padding: 0.75rem;
    }
    
    .notification.show {
        right: 5px;
    }
    
    .notification-text {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

/* High z-index for notifications to appear above all content */
.notification {
    z-index: 999999 !important;
}

/* Ensure smooth transitions without drifting */
.notification {
    will-change: right, opacity;
    backface-visibility: hidden;
}

/* Prevent text selection during animations */
.notification {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Ensure complete hiding */
.notification:not(.show) {
    right: -400px !important;
    pointer-events: none;
    visibility: hidden;
}

.notification.show {
    visibility: visible;
    pointer-events: auto;
}

/* Additional safety for complete hiding */
.notification {
    overflow: hidden;
}

/* Enhanced Hero Title Styles for Word-Level Highlighting */
.hero-title .hero-first-word {
    /* First word color will be set via customizer CSS */
    font-weight: 700;
    position: relative;
}

.hero-title .hero-last-word {
    /* Last word color will be set via customizer CSS */
    font-weight: 700;
    position: relative;
}

/* Hero Title Alignment Support */
.hero-title.text-left {
    text-align: left;
}

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

.hero-title.text-right {
    text-align: right;
}

/* Ensure button visibility in route cards */
.route-card .btn-outline {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-dark-blue) !important;
    border: 2px solid var(--primary-dark-blue) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.route-card .btn-outline:hover {
    background: var(--primary-dark-blue) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

/* Fix button text visibility */
.route-card .btn-outline i {
    color: inherit;
}

/* Ensure proper button styling in glass morphism effect */
.glass .btn-outline {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid var(--primary-dark-blue) !important;
    color: var(--primary-dark-blue) !important;
}

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

/* Responsive adjustments for hero title alignment */
@media (max-width: 768px) {
    .hero-title.text-left,
    .hero-title.text-right {
        text-align: center;
    }
    
    .hero-container {
        text-align: center;
    }
}

/* Enhanced mobile responsiveness for new features */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    .route-card {
        padding: 1.5rem;
    }
    
    .route-card .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Logo Styles */
.logo-wrapper {
    flex: 1;
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-dark-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.logo i {
    color: var(--cta-orange);
}

.logo-text {
    font-weight: 700;
}

.custom-logo {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hide elements based on display settings */
.logo-display-logo_only .logo-text {
    display: none;
}

.logo-display-text_only .custom-logo {
    display: none;
}

/* Hero Container Position Styles */
.hero-container.position-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 600px;
    margin-left: 1.5rem;
    padding-left: 2rem;
}

.hero-container.position-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-container.position-center-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

/* Ensure hero content aligns with logo vertical level */
.hero-container.position-center-with-logo .hero-logo {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-img {
    max-width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.hero-logo-icon {
    font-size: 4rem;
    color: var(--cta-orange);
    text-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.hero-container.position-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-right: 2rem;
    padding-right: 2rem;
}

/* Responsive adjustments for hero positions */
@media (max-width: 768px) {
    .hero-container.position-left,
    .hero-container.position-right {
        align-items: center;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-container.position-center-with-logo {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .hero-logo-img {
        max-width: 100px;
        max-height: 60px;
    }
    
    .hero-logo-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 80px;
        max-height: 50px;
    }
    
    .hero-logo-icon {
        font-size: 2.5rem;
    }
}

/* Ensure hero subtitle positioning follows hero container */
.hero-container.position-left .hero-subtitle,
.hero-container.position-right .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.hero-container.position-left .hero-buttons,
.hero-container.position-right .hero-buttons {
    justify-content: flex-start;
}

.hero-container.position-right .hero-buttons {
    justify-content: flex-end;
}

/* Override for mobile */
@media (max-width: 768px) {
    .hero-container.position-left .hero-buttons,
    .hero-container.position-right .hero-buttons {
        justify-content: center;
    }
}

/* Desktop alignment improvements */
@media (min-width: 769px) {
    .hero-container.position-left {
        padding-left: calc(1.5rem + 40px); /* Account for potential logo width */
        margin-left: 1rem; /* Reduce left margin for better alignment */
    }
    
    .hero-container.position-center-with-logo {
        max-width: 700px;
    }
    
    /* Ensure hero content starts at proper vertical position */
    .hero-container {
        padding-top: 1rem;
    }
    
    /* Desktop-specific enhancements */
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schedule-routes {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .route-actions {
        flex-direction: row;
    }
    
    .route-actions .btn {
        flex: none;
        min-width: 140px;
    }
}

/* Blog Specific Styles - Moved from inline CSS */
.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background-light-blue) 0%, #e6f3ff 100%);
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-dark-blue) 0%, 
        rgba(26, 54, 93, 0.05) 50%, 
        var(--cta-orange) 100%);
    opacity: 0.1;
}

.blog-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-dark-blue);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.blog-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--light-gray);
    justify-content: center;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: var(--cta-orange);
}

.blog-content-section {
    padding: 4rem 0;
}

.blog-wrapper {
    display: grid;
    gap: 3rem;
    align-items: start;
    grid-template-columns: 1fr !important;
    max-width: 100%;
    margin: 0 auto;
}

/* Hide blog sidebar completely - Force full-width layout */
.blog-sidebar {
    display: none !important;
}

/* Also hide any sidebar in blog posts */
.post-sidebar {
    display: none !important;
}

.archive-sidebar {
    display: none !important;
}

.blog-posts {
    min-height: 500px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--light-gray);
}

.breadcrumb-item a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--cta-orange);
}

.breadcrumb-item.active {
    color: var(--light-gray);
}

/* Blog Search Form */
.blog-search-form .search-input-group {
    display: flex;
    gap: 0.5rem;
}

.blog-search-form .search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark-blue);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-search-form .search-input:focus {
    outline: none;
    border-color: var(--cta-orange);
    background: rgba(255, 255, 255, 0.2);
}

.blog-search-form .search-submit {
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-search-form .search-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Post Card */
.post-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    z-index: 2;
}

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

/* Post Thumbnail */
.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

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

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

.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-card:hover .post-overlay {
    opacity: 1;
}

.read-more-btn {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
}

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

/* Post Content */
.post-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    justify-content: center;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-meta i {
    color: var(--cta-orange);
}

.post-meta a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: var(--cta-orange);
}

.post-title {
    margin: 0 0 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3;
    text-align: center;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

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

.post-title a:hover {
    color: var(--cta-orange);
}

.post-excerpt {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Post Footer */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-link {
    padding: 0.25rem 0.75rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--cta-orange);
    text-decoration: none;
    border-radius: 15px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--cta-orange);
    color: white;
}

.read-more-link {
    color: var(--cta-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-dark-blue);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

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

/* No Posts Found */
.no-posts-found {
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.no-posts-content i {
    font-size: 4rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.no-posts-content h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.no-posts-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination-wrapper .page-numbers {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.pagination-wrapper .page-numbers li {
    margin: 0;
}

.pagination-wrapper .page-numbers a,
.pagination-wrapper .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark-blue);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-wrapper .page-numbers a:hover,
.pagination-wrapper .page-numbers .current {
    background: var(--cta-orange);
    color: white;
    transform: translateY(-2px);
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
}

.sidebar-widget h4 {
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Category List */
.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--primary-dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-link:hover {
    color: var(--cta-orange);
    padding-left: 1rem;
}

.category-count {
    background: var(--cta-orange);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Recent Posts */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    flex: 1;
}

.recent-post-content h6 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.recent-post-content h6 a {
    color: var(--primary-dark-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--cta-orange);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--light-gray);
}

/* CTA Widget */
.cta-widget {
    text-align: center;
}

.cta-widget p {
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* Default Page Styles */
.default-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background-light-blue) 0%, #e6f3ff 100%);
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.default-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-dark-blue) 0%, 
        rgba(26, 54, 93, 0.05) 50%, 
        var(--cta-orange) 100%);
    opacity: 0.1;
}

.default-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.default-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark-blue);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.default-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.default-content h2,
.default-content h3,
.default-content h4,
.default-content h5,
.default-content h6 {
    color: var(--primary-dark-blue);
    margin: 2rem 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

.default-content p {
    margin-bottom: 1.5rem;
}

.default-content a {
    color: var(--cta-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.default-content a:hover {
    color: var(--primary-dark-blue);
    text-decoration: underline;
}

/* Homepage Blog Posts Section */
.blog-posts-section {
    padding: 6rem 0;
    background: var(--white);
}

.blog-posts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.blog-post-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    z-index: 2;
}

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

.blog-post-thumbnail {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 200px; /* Full width with reasonable height */
}

.blog-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Show center portion of image */
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-thumbnail img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--light-gray);
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta i {
    color: var(--cta-orange);
}

.blog-post-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--cta-orange);
}

.blog-post-excerpt {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Gallery Section */
.gallery-section {
    padding: 0rem 0;
    background: var(--white);
    position: relative;
}

/* About Us Section */
.about-section {
    padding: 6rem 0;
    background: var(--background-light-blue);
}

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

/* Integrated About Content Layout */
.about-content {
    margin-top: 3rem;
}

.integrated-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.integrated-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.6);
}

.integrated-section:nth-child(even) {
    flex-direction: row-reverse;
    background: rgba(255, 107, 53, 0.05);
}

.integrated-section:nth-child(even):hover {
    background: rgba(255, 107, 53, 0.1);
}

.inline-image {
    flex-shrink: 0;
    width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.inline-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.inline-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.icon-text-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-text-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 2px;
}

.about-text {
    order: 1;
}

.about-image {
    order: 2;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Enhanced About Story with Icon+Text Layout */
.about-story-enhanced {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.icon-text-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.icon-text-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-text-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.integrated-section:hover .icon-text-icon::before {
    left: 100%;
}

.icon-text-content {
    flex: 1;
}

.icon-text-content p {
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
    text-justify: inter-word;
}

.about-values {
    margin-top: 2rem;
}

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

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

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.value-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.value-description {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* About Us Images Grid */
.about-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    /* Remove any potential white spacing */
    margin: 0;
    padding: 0;
}

.about-image-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Ensure no white space around images */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

.about-image-item:hover img {
    transform: scale(1.1);
}



/* About Us Placeholder Grid */
.about-images-placeholder {
    margin-top: 2rem;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* Remove any bottom margin that could create white space */
    margin-bottom: 0;
}

/* Additional CSS to ensure clean image display without white bars */
.about-section {
    /* Ensure no white space issues */
    overflow: hidden;
}

.about-container {
    /* Remove any potential spacing issues */
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-images-grid,
.about-images-placeholder {
    /* Ensure clean bottom spacing */
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Clean image display rules */
.about-image-item img,
.placeholder-item img {
    /* Remove any default spacing */
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    /* Ensure images fill their containers completely */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Remove any potential ::after pseudo-elements that could create white bars */
.about-image-item::after,
.placeholder-item::after {
    display: none !important;
    content: none !important;
}

/* Ensure proper spacing for grid items */
.about-images-grid .about-image-item:last-child,
.placeholder-grid .placeholder-item:last-child {
    margin-bottom: 0;
}

/* Final cleanup for any remaining white space */
.about-images-placeholder * {
    box-sizing: border-box;
}

.placeholder-item {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.placeholder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.placeholder-item:hover::before {
    left: 100%;
}

.placeholder-item:hover {
    border-color: var(--cta-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.placeholder-item {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.placeholder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.5s ease;
}

.placeholder-item:hover::before {
    left: 100%;
}

.placeholder-item:hover {
    border-color: var(--cta-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

.placeholder-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.placeholder-item small {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Enhanced Placeholder Icons */
.placeholder-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.placeholder-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.placeholder-item:hover .placeholder-icon::before {
    left: 100%;
}

.placeholder-item:hover .placeholder-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Ensure placeholder items maintain proper hover effects without white bars */
.placeholder-item {
    /* Remove any bottom margin that could create white space */
    margin-bottom: 0;
}

.placeholder-item:hover {
    /* Enhanced hover effects maintained */
    border-color: var(--cta-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.15);
}

/* Remove any potential white spacing under placeholder items */
.placeholder-grid {
    margin-bottom: 0;
}

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

/* Professional Team & Safety Placeholder Specific Styles */
.placeholder-item[data-section="team"] {
    border-color: rgba(26, 54, 93, 0.3);
}

.placeholder-item[data-section="team"]:hover {
    border-color: var(--primary-dark-blue);
    background: rgba(26, 54, 93, 0.05);
}

.placeholder-item[data-section="safety"] {
    border-color: rgba(255, 107, 53, 0.3);
}

.placeholder-item[data-section="safety"]:hover {
    border-color: var(--cta-orange);
    background: rgba(255, 107, 53, 0.05);
}

/* Enhanced About Image Items for Team and Safety */
.about-image-item.team-image {
    border: 3px solid var(--primary-dark-blue);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
}

.about-image-item.team-image:hover {
    border-color: var(--primary-dark-blue);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.3);
}

.about-image-item.safety-image {
    border: 3px solid var(--cta-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.about-image-item.safety-image:hover {
    border-color: var(--cta-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

/* Fade-in Animation for Loaded Images */
.about-image-item.fade-in-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.about-image-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-image-item.loaded {
    animation: imageLoaded 0.8s ease;
}

@keyframes imageLoaded {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image Error States */
.about-image-item.error {
    background: rgba(255, 107, 53, 0.1);
    border: 2px dashed var(--cta-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--light-gray);
}

.image-error {
    text-align: center;
    padding: 2rem;
}

.image-error i {
    font-size: 3rem;
    color: var(--cta-orange);
    margin-bottom: 1rem;
    display: block;
}

.image-error p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Section Guide Button */
.section-guide-button {
    text-align: center;
    margin: 2rem 0;
}

.show-image-guide {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--cta-orange);
    color: var(--cta-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.show-image-guide:hover {
    background: var(--cta-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.show-image-guide i {
    font-size: 1rem;
}

/* Image Upload Guide Modal */
.guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.guide-modal .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.guide-modal .modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark-blue), #2c5282);
    color: white;
    border-radius: 20px 20px 0 0;
}

.guide-modal .modal-header h3 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.guide-modal .modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.guide-modal .modal-body {
    padding: 2rem;
}

/* Image Upload Guide Styles */
.image-upload-guide h4 {
    color: var(--primary-dark-blue);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.image-upload-guide h4 i {
    color: var(--cta-orange);
}

.image-upload-guide ol {
    padding-left: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.image-upload-guide ol li {
    margin-bottom: 1rem;
}

.image-upload-guide ol li strong {
    color: var(--primary-dark-blue);
    font-weight: 600;
}

.image-upload-guide ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.image-upload-guide ul li {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.image-upload-guide ul li strong {
    color: var(--primary-dark-blue);
}

/* Enhanced Placeholder Interactions */
.placeholder-item {
    cursor: pointer;
    position: relative;
}

/* White bar tooltip removed - no longer shows instructions overlay */
.placeholder-item::after {
    display: none;
}

/* Placeholder Items Clickable Styles */
.placeholder-item {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.5);
}

.placeholder-item:hover {
    border-color: var(--cta-orange);
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.placeholder-item .placeholder-icon {
    color: var(--cta-orange);
    transition: all 0.3s ease;
}

.placeholder-item:hover .placeholder-icon {
    transform: scale(1.1);
    color: var(--primary-dark-blue);
}

.placeholder-item p {
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin: 0.5rem 0;
}

.placeholder-item small {
    color: var(--light-gray);
    font-size: 0.8rem;
}

/* About Us Clickable Images Styles */
.about-section .inline-image {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
    z-index: 1;
}

.about-section .inline-image img {
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    height: auto;
}

.about-section .inline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
    z-index: 3;
}

.about-section .inline-image:hover::after {
    opacity: 1;
}

.about-section .inline-image::before {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: rgba(255, 107, 53, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 4;
}

.about-section .inline-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.about-section .inline-image:hover img {
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-section .inline-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.about-section .inline-image img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    height: auto;
}

.about-section .clickable-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 107, 53, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.about-section .clickable-image:hover::after {
    opacity: 1;
}

.about-section .clickable-image::before {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    background: rgba(255, 107, 53, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.about-section .clickable-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* SIMPLE IMAGE MODAL STYLES */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 248, 255, 0.3);
    backdrop-filter: blur(15px);
    cursor: pointer;
}

.image-modal-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.image-modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.image-modal-caption {
    text-align: center;
    line-height: 24px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 10px 0 5px;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.image-modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure entire button area is clickable */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* Improve touch/click target */
    min-width: 40px;
    min-height: 40px;
    /* Ensure proper z-index */
    z-index: 10;
    /* Prevent text selection */
    user-select: none;
}

.image-modal-close:hover {
    background: var(--cta-orange);
    color: white;
}

.image-modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.image-modal-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.image-modal-nav-btn:hover {
    background: var(--cta-orange);
    color: white;
}

.image-modal-prev {
    margin-left: -70px;
}

.image-modal-next {
    margin-right: -70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .image-modal-container {
        max-width: 95vw;
        max-height: 95vh;
        padding: 20px;
    }
    
    .image-modal-image {
        max-height: 70vh;
    }
    
    .image-modal-close {
        top: 10px;
        right: 10px;
    }
    
    .image-modal-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .image-modal-prev {
        margin-left: 10px;
    }
    
    .image-modal-next {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .image-modal-container {
        max-width: 98vw;
        max-height: 98vh;
        padding: 10px;
    }
    
    .image-modal-image {
        max-height: 60vh;
    }
    
    .image-modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .image-modal-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Body scroll prevention */
body.modal-open {
    overflow: hidden;
}

/* ULTRA-MINIMAL MODAL SCROLL FIX */
.modal-open {
    overflow: hidden !important;
}

/* ==============================================
   SCROLL TO TOP BUTTON
   ============================================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(100px) scale(0.8);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ff8c5a, var(--cta-orange));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Enhanced visibility for scroll-to-top button */
.scroll-to-top {
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--cta-orange), #ff8c5a);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
    z-index: -1;
}

.scroll-to-top:hover::before {
    opacity: 0.6;
}

/* Mobile responsive scroll-to-top button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Accessibility improvements for scroll-to-top button */
@media (prefers-reduced-motion: reduce) {
    .scroll-to-top {
        transition: opacity 0.3s ease;
    }
    
    .scroll-to-top:hover {
        transform: none;
    }
}

/* Focus styles for keyboard navigation */
.scroll-to-top:focus {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 2px;
}

/* Professional Loading State for Images */
.about-image-item.loading {
    background: var(--background-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.about-image-item.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--cta-orange);
    animation: spin 1s ease-in-out infinite;
}

/* Animated Placeholders */
.animated-placeholder {
    position: relative;
}





/* Enhanced Section Animations */
.section-container,
.about-container,
.testimonials-container,
.schedule-container,
.technical-services-container {
    opacity: 1;
}

.section-title {
    position: relative;
    overflow: hidden;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    border-radius: 2px;
}

/* Professional Card Enhancements */
.professional-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.professional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.professional-card:hover::before {
    transform: scaleX(1);
}

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

/* Enhanced Hover Effects */
.hover-effect {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
    border: 2px solid var(--cta-orange) !important;
}

.hover-bounce {
    animation: hoverBounce 0.6s ease !important;
}

@keyframes hoverBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Ripple Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Animated Elements */
.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}



/* Professional Loading States */
.loading-professional {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--cta-orange);
    animation: spin 1s ease-in-out infinite;
}

/* Smooth Scroll Enhancements */
html {
    scroll-behavior: smooth;
}

/* Enhanced Focus States */
.btn:focus,
.form-input:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
    transform: scale(1.02);
}

/* Professional Shadows */
.shadow-professional {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
}

.shadow-professional-hover:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Enhanced Transitions */
.transition-professional {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Elements */
.interactive-element {
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-element:hover {
    transform: translateY(-2px);
}

/* Professional Gradients */
.gradient-professional {
    background: linear-gradient(135deg, var(--primary-dark-blue) 0%, var(--cta-orange) 100%);
}

.gradient-soft {
    background: linear-gradient(135deg, var(--background-light-blue) 0%, #e6f3ff 100%);
}

/* Glass Morphism Enhancement */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Text Selection Enhancement */
::selection {
    background: var(--cta-orange);
    color: white;
}

::-moz-selection {
    background: var(--cta-orange);
    color: white;
}

/* Scrollbar Enhancement */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-light-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--cta-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark-blue);
}

/* Counter Animation Styles */
.counter-container {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cta-orange);
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.1rem;
    color: var(--primary-dark-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Statistics Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-dark-blue), #2c5282);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.statistic-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.statistic-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.statistic-icon {
    font-size: 3rem;
    color: var(--cta-orange);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .about-images-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .placeholder-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .about-image-item {
        margin-bottom: 1rem;
    }
    
    .placeholder-item {
        padding: 2rem 1.5rem;
    }
    

    
    .statistics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .statistic-item {
        padding: 1.5rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-images-grid,
    .placeholder-grid {
        grid-template-columns: 1fr;
    }
    

    
    .statistics-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-number {
        font-size: 2rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    border-radius: 2px;
}

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

.testimonial-content {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--cta-orange);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cta-orange);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Schedule Calendar Section */
.schedule-section {
    padding: 6rem 0;
    background: var(--background-light-blue);
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.schedule-calendar {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light-blue);
}

/* Mobile-specific layout for calendar header - stack elements vertically */
@media (max-width: 768px) {
    .calendar-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .calendar-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .calendar-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .calendar-nav button {
        flex: 1;
        max-width: 120px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Extra small mobile devices - further optimize spacing */
@media (max-width: 480px) {
    .calendar-header {
        gap: 1rem;
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    .calendar-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .calendar-nav {
        gap: 0.75rem;
    }
    
    .calendar-nav button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        max-width: 100px;
    }
}

.calendar-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark-blue);
}

.calendar-nav {
    display: flex;
    gap: 1rem;
}

.calendar-nav button {
    padding: 0.5rem 1rem;
    background: var(--cta-orange);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.calendar-nav button:hover {
    background: var(--primary-dark-blue);
    transform: translateY(-2px);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
}

.calendar-day {
    background: var(--background-light-blue);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calendar-day:hover {
    background: var(--cta-orange);
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--cta-orange);
}

.calendar-day.active {
    background: var(--primary-dark-blue);
    color: white;
}

.calendar-day-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.calendar-day-date {
    font-size: 1.2rem;
    font-weight: 700;
}

.route-schedule {
    margin-top: 3rem;
}

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

.schedule-route-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.schedule-route-card:hover {
    border-color: var(--cta-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.schedule-route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--background-light-blue);
}

.schedule-route-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
}

.schedule-route-price {
    font-weight: 700;
    color: var(--cta-orange);
    font-size: 1.1rem;
}

.schedule-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.schedule-time {
    background: var(--background-light-blue);
    color: var(--primary-dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.schedule-time:hover {
    background: var(--cta-orange);
    color: white;
    transform: scale(1.05);
}

/* Technical Services Section */
.technical-services-section {
    padding: 6rem 0;
    background: var(--white);
}

.technical-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    z-index: 2;
}

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

.service-header {
    background: linear-gradient(135deg, var(--primary-dark-blue), #2c5282);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--cta-orange);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.service-description {
    opacity: 0.9;
    line-height: 1.5;
}

.service-content {
    padding: 2rem;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.features-list li i {
    color: var(--cta-orange);
}

.service-pricing {
    background: var(--background-light-blue);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-orange);
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Additional Styles for New Features */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Schedule CTA Button Styling */
.schedule-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem 0;
}

.contact-btn {
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #ff8c5a, var(--cta-orange));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.contact-btn i {
    font-size: 1.1rem;
}



.placeholder-image {
    background: var(--background-light-blue);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--light-gray);
}

.values-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

/* Calendar Enhancements */


.loading-schedule {
    text-align: center;
    padding: 3rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.loading-schedule i {
    margin-right: 0.5rem;
    color: var(--cta-orange);
}

/* Schedule Route Enhancements */
.schedule-route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--background-light-blue);
}

.route-duration {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.route-duration i {
    color: var(--cta-orange);
    font-size: 0.8rem;
}

.route-duration .separator {
    color: var(--primary-dark-blue);
    opacity: 0.5;
    font-weight: 600;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Testimonials Carousel */
.testimonials-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    padding: 0.75rem 1.5rem;
    background: var(--background-light-blue);
    border: 2px solid var(--primary-dark-blue);
    border-radius: 25px;
    color: var(--primary-dark-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--primary-dark-blue);
    color: white;
    transform: translateY(-2px);
}

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



/* Enhanced Schedule Time Styles */
.schedule-time {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--background-light-blue);
    color: var(--primary-dark-blue);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.schedule-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.schedule-time:hover::before {
    left: 100%;
}

.schedule-time:hover {
    background: var(--cta-orange);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.schedule-time.selected {
    background: var(--primary-dark-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
}

/* Professional Schedule Route Cards */
.schedule-route-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.schedule-route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cta-orange), #ff8c5a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-route-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--cta-orange);
}

.schedule-route-card:hover::before {
    opacity: 1;
}

/* Route Schedule Styling */
.route-schedule {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    border-left: 4px solid var(--cta-orange);
}

.schedule-item {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-dark-blue);
}

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

.schedule-item strong {
    color: var(--cta-orange);
    font-weight: 600;
}

.schedule-route-card.time-selected {
    border-color: var(--primary-dark-blue);
    background: rgba(26, 54, 93, 0.02);
}

/* Route Header Enhancement */
.schedule-route-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--background-light-blue);
}

.route-title-section {
    flex: 1;
}

.schedule-route-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-dark-blue);
    margin: 0 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.route-line {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    flex-shrink: 0;
}

.route-duration {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-route-price {
    text-align: right;
    flex-shrink: 0;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-orange);
    font-family: 'Montserrat', sans-serif;
}

.price-currency {
    font-size: 1rem;
    color: var(--light-gray);
    font-weight: 600;
}

/* Enhanced Time Slots */
.schedule-times {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Time Tooltip */
.time-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark-blue);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 0.5rem;
}

.time-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary-dark-blue);
}

.schedule-time:hover .time-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.tooltip-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.tooltip-content .price {
    color: var(--cta-orange);
    font-weight: 600;
}

.tooltip-content .duration {
    color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Route Footer */
.schedule-route-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.seat-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.seat-availability.available {
    background: rgba(56, 161, 105, 0.1);
    color: #38a169;
    border: 1px solid rgba(56, 161, 105, 0.3);
}

.seat-availability.limited {
    background: rgba(237, 137, 54, 0.1);
    color: #ed8936;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

.seat-availability.full {
    background: rgba(229, 62, 62, 0.1);
    color: #e53e3e;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

/* Booking functionality disabled - styles preserved for future implementation */
/*
.book-schedule-route {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 140px;
}

.book-schedule-route.loading {
    position: relative;
    color: transparent;
}

.book-schedule-route.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}
*/

.booking-info {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    font-style: italic;
}

/* Loading States */
.loading-schedule {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-gray);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--cta-orange);
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

/* No Routes Message */
.no-routes-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-gray);
}

.no-routes-icon {
    font-size: 4rem;
    color: var(--cta-orange);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.no-routes-message h3 {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
}

.no-routes-message p {
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Results Enhancements */
.search-results {
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease;
}

.results-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.results-title {
    color: var(--primary-dark-blue);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: var(--light-gray);
    margin-bottom: 1rem;
}

.results-count {
    background: var(--cta-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

/* Route Schedule Enhancement */
.route-schedule {
    margin-top: 2rem;
}

.route-schedule h4 {
    color: var(--primary-dark-blue);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.route-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.route-actions .btn {
    flex: none;
    min-width: 150px;
}

/* Enhanced Blog Posts Section */
.blog-posts-section .section-cta {
    margin-top: 4rem;
}

/* CRITICAL FIX: Blog section 'Виж всички статии' button visibility */
.blog-posts-section .section-cta .btn-outline,
.blog-section .btn-view-all,
.blog-cta .btn,
.view-all-btn {
    background: var(--cta-orange) !important;
    color: white !important;
    border: 2px solid var(--cta-orange) !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
}

/* Hover state for blog section button */
.blog-posts-section .section-cta .btn-outline:hover,
.blog-section .btn-view-all:hover,
.blog-cta .btn:hover,
.view-all-btn:hover {
    background: transparent !important;
    color: var(--cta-orange) !important;
    border-color: var(--cta-orange) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}

/* Ensure button icon visibility */
.blog-posts-section .section-cta .btn-outline i,
.blog-section .btn-view-all i,
.blog-cta .btn i,
.view-all-btn i {
    color: inherit !important;
    transition: color 0.3s ease !important;
}

/* Technical Services Section Enhancements */
.technical-services-section .section-cta {
    margin-top: 4rem;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .blog-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .post-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .post-meta {
        gap: 0.75rem;
        justify-content: center;
    }
    
    .breadcrumb {
        justify-content: flex-start;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        order: 1;
    }
    
    .about-image {
        order: 2;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    
    .calendar-day {
        padding: 1rem 0.5rem;
    }
    
    .calendar-day-name {
        font-size: 0.8rem;
    }
    
    .calendar-day-date {
        font-size: 1.1rem;
    }
    
    .schedule-routes {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .route-actions {
        flex-direction: column;
    }
    
    .route-actions .btn {
        min-width: auto;
    }
    
    .schedule-route-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .schedule-route-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-carousel-nav {
        flex-direction: column;
        align-items: center;
    }
    
    /* Schedule-specific mobile styles */
    .schedule-route-card {
        padding: 1.5rem;
    }
    
    .schedule-route-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .schedule-route-price {
        text-align: left;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .schedule-times {
        justify-content: center;
    }
    
    .schedule-time {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .book-schedule-route {
        width: 100%;
        justify-content: center;
    }
}

/* CRITICAL: Mobile Viewport and Layout Fixes */
@media (max-width: 480px) {
    /* Ensure proper mobile viewport handling */
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* CRITICAL FIX: Hero section background positioning on very small screens */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding: 2rem 0;
    }
    
    .hero::before {
        /* CRITICAL: Ensure background gradient covers entire hero section */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, 
            var(--primary-dark-blue) 0%, 
            rgba(26, 54, 93, 0.8) 50%, 
            var(--cta-orange) 100%);
        opacity: 0.1;
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-container {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* CRITICAL FIX: Ensure all sections are properly contained on mobile */
    .container,
    .section-container,
    .search-container,
    .about-container,
    .testimonials-container,
    .schedule-container,
    .technical-services-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
    
    .no-posts-found {
        padding: 3rem 1.5rem;
    }
    
    .recent-post-item {
        flex-direction: column;
        text-align: center;
    }
    
    .recent-post-thumb {
        width: 100%;
        height: 100px;
        margin: 0 auto;
    }
    
    .blog-post-content {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .schedule-calendar {
        padding: 2rem 1.5rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-route-card {
        padding: 1.5rem;
    }
    
    .placeholder-image {
        padding: 2rem 1rem;
    }
    
    .results-header {
        padding: 1.5rem;
    }
    
    .time-slots {
        justify-content: center;
    }
    
    /* Integrated Layout Responsive Design */
    .integrated-section {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .integrated-section:hover {
        transform: none;
    }
    
    .inline-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .inline-image:hover {
        transform: none;
    }
    
    .inline-image img {
        height: 250px;
    }
    
    .icon-text-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .icon-text-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .icon-text-title {
        font-size: 1.2rem;
        justify-content: center;
    }
    
    .icon-text-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Schedule-specific small mobile styles */
    .calendar-day {
        padding: 0.75rem 0.25rem;
    }
    
    .calendar-day-name {
        font-size: 0.7rem;
    }
    
    .calendar-day-date {
        font-size: 1rem;
    }
    
    .schedule-times {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-time {
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .schedule-route-title {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .time-tooltip {
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    /* CRITICAL: Ensure all modals work properly on very small screens */
    .image-modal {
        /* Ensure modal takes full viewport on very small screens */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;
    }
    
    .maps-modal {
        /* Ensure Google Maps modal takes full viewport */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999999;
    }
    
    /* CRITICAL: Prevent horizontal scroll on all mobile devices */
    * {
        max-width: 100%;
    }
    
    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* ==============================================
   ROUTE ICONS - Clock and Distance Icons
   ============================================== */

/* Custom clock icon for route duration */
.fa-clock-four:before,
.fa-clock:before {
    content: "\f017";
}

/* Custom distance icon for route distance */
.fa-route:before {
    content: "\f3c5";
}

/* Route icon styling for better visual appeal */
.route-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.route-info-item i {
    color: var(--cta-orange);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

/* ==============================================
   ROUTE HIGHLIGHTING READABILITY FIX
   Ensure all text is white when routes are highlighted in orange
   ============================================== */

/* Enhanced route highlighting for better readability with improved animations */
.route-card.highlighted,
.schedule-route-card.highlighted {
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a) !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    border: 2px solid var(--cta-orange);
    animation: pulse 1s ease-in-out;
    position: relative;
    z-index: 10;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced pulse animation for highlighted routes */
.highlight-pulse {
    animation: highlightPulse 1.5s ease-in-out infinite !important;
}

@keyframes highlightPulse {
    0%, 100% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
    }
}

/* Enhanced entrance animation for highlighted routes */
.route-card.highlighted,
.schedule-route-card.highlighted {
    animation: highlightEntrance 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, pulse 1s ease-in-out 0.8s;
}

@keyframes highlightEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
}

/* Make all text white in highlighted route cards EXCEPT buttons */
.route-card.highlighted *:not(.btn):not(button):not([role="button"]):not(input[type="button"]):not(input[type="submit"]):not(input[type="reset"]),
.schedule-route-card.highlighted *:not(.btn):not(button):not([role="button"]):not(input[type="button"]):not(input[type="submit"]):not(input[type="reset"]) {
    color: white !important;
}

/* Ensure buttons maintain their original styling in highlighted cards */
.route-card.highlighted .btn,
.schedule-route-card.highlighted .btn,
.route-card.highlighted button,
.schedule-route-card.highlighted button,
.route-card.highlighted [role="button"],
.schedule-route-card.highlighted [role="button"],
.route-card.highlighted input[type="button"],
.schedule-route-card.highlighted input[type="button"],
.route-card.highlighted input[type="submit"],
.schedule-route-card.highlighted input[type="submit"],
.route-card.highlighted input[type="reset"],
.schedule-route-card.highlighted input[type="reset"] {
    background: linear-gradient(135deg, var(--cta-orange), #ff8c5a) !important;
    color: white !important;
    border: 2px solid var(--cta-orange) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    transition: all 0.3s ease;
}

/* Button hover states in highlighted cards */
.route-card.highlighted .btn:hover,
.schedule-route-card.highlighted .btn:hover,
.route-card.highlighted button:hover,
.schedule-route-card.highlighted button:hover,
.route-card.highlighted [role="button"]:hover,
.schedule-route-card.highlighted [role="button"]:hover {
    background: linear-gradient(135deg, #ff8c5a, var(--cta-orange)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
    color: white !important;
}

/* Outline buttons in highlighted cards */
.route-card.highlighted .btn-outline,
.schedule-route-card.highlighted .btn-outline {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
}

.route-card.highlighted .btn-outline:hover,
.schedule-route-card.highlighted .btn-outline:hover {
    background: white !important;
    color: var(--primary-dark-blue) !important;
    border-color: white !important;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3) !important;
}

/* Specific element targeting for maximum readability */
.route-card.highlighted .route-title,
.schedule-route-card.highlighted .schedule-route-title,
.route-card.highlighted .route-title,
.schedule-route-card.highlighted .route-title {
    color: white !important;
    font-weight: 600;
}

.route-card.highlighted .route-price,
.schedule-route-card.highlighted .schedule-route-price,
.route-card.highlighted .price-amount,
.schedule-route-card.highlighted .price-amount {
    color: white !important;
    font-weight: bold;
}

.route-card.highlighted .route-details,
.schedule-route-card.highlighted .route-details {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Time display - make sure times are clearly visible */
.route-card.highlighted .schedule-time,
.schedule-route-card.highlighted .schedule-time {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.route-card.highlighted .schedule-time:hover,
.schedule-route-card.highlighted .schedule-time:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Duration and distance info - make icons and text white */
.route-card.highlighted .route-info-item,
.schedule-route-card.highlighted .route-info-item {
    color: rgba(255, 255, 255, 0.95) !important;
}

.route-card.highlighted .route-info-item i,
.schedule-route-card.highlighted .route-info-item i {
    color: white !important;
}

.route-card.highlighted .route-duration,
.schedule-route-card.highlighted .route-duration {
    color: rgba(255, 255, 255, 0.9) !important;
}

.route-card.highlighted .route-duration i,
.schedule-route-card.highlighted .route-duration i {
    color: white !important;
}

/* Feature icons (Wi-Fi, Air Conditioning, USB ports) - make them white */
.route-card.highlighted .feature,
.schedule-route-card.highlighted .feature,
.route-card.highlighted .vehicle-feature,
.schedule-route-card.highlighted .vehicle-feature {
    color: white !important;
}

.route-card.highlighted .feature i,
.schedule-route-card.highlighted .feature i,
.route-card.highlighted .vehicle-feature i,
.schedule-route-card.highlighted .vehicle-feature i {
    color: white !important;
}

.route-card.highlighted .feature span,
.schedule-route-card.highlighted .feature span,
.route-card.highlighted .vehicle-feature span,
.schedule-route-card.highlighted .vehicle-feature span {
    color: white !important;
}

/* Schedule items - make all text white */
.route-card.highlighted .schedule-item,
.schedule-route-card.highlighted .schedule-item {
    color: rgba(255, 255, 255, 0.95) !important;
}

.route-card.highlighted .schedule-item strong,
.schedule-route-card.highlighted .schedule-item strong {
    color: white !important;
    font-weight: 600;
}

/* Enhanced button visibility in highlighted cards - REMOVED as handled above */

/* Tooltip styling for highlighted routes */
.route-card.highlighted .time-tooltip,
.schedule-route-card.highlighted .time-tooltip {
    background: rgba(26, 54, 93, 0.95) !important;
    color: white !important;
    backdrop-filter: blur(10px);
}

.route-card.highlighted .time-tooltip::after,
.schedule-route-card.highlighted .time-tooltip::after {
    border-top-color: rgba(26, 54, 93, 0.95) !important;
}

.route-card.highlighted .tooltip-content,
.schedule-route-card.highlighted .tooltip-content {
    color: white !important;
}

.route-card.highlighted .tooltip-content .price,
.schedule-route-card.highlighted .tooltip-content .price {
    color: var(--cta-orange) !important;
    font-weight: 600;
}

.route-card.highlighted .tooltip-content .duration,
.schedule-route-card.highlighted .tooltip-content .duration {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Route line indicator - keep original color even when highlighted */
.route-card.highlighted .route-line,
.schedule-route-card.highlighted .route-line {
    /* Keep original color - no override needed */
}

/* Separator dots and lines */
.route-card.highlighted .separator,
.schedule-route-card.highlighted .separator {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Seat availability indicators */
.route-card.highlighted .seat-availability,
.schedule-route-card.highlighted .seat-availability {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Contact booking buttons - keep original styling in highlighted cards */

/* ==============================================
   IMAGE BORDER REMOVAL - ABOUT US SECTION
   Remove borders from Professional Team and Quality & Safety images
   ============================================== */

/* Remove borders from Professional Team image */
.about-image-item.team-image,
.about-image-item.team-image:hover {
    border: none !important;
    box-shadow: none !important;
}

/* Remove borders from Quality and Safety image */
.about-image-item.safety-image,
.about-image-item.safety-image:hover {
    border: none !important;
    box-shadow: none !important;
}

/* Ensure clean image display without borders */
.about-image-item.team-image img,
.about-image-item.safety-image img {
    border: none !important;
    box-shadow: none !important;
}

/* Additional specificity to override any existing border styles */
.about-section .about-image-item.team-image,
.about-section .about-image-item.safety-image {
    border: none !important;
    box-shadow: none !important;
}

.about-section .about-image-item.team-image:hover,
.about-section .about-image-item.safety-image:hover {
    border: none !important;
    box-shadow: none !important;
    transform: translateY(-10px) scale(1.05); /* Maintain hover effect without border */
}

/* Responsive design - ensure clean display on all devices */
@media (max-width: 768px) {
    .about-image-item.team-image,
    .about-image-item.safety-image {
        border: none !important;
        box-shadow: none !important;
    }
}
