/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Glow Effect */
@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(0, 102, 204, 0.3); }
    50% { box-shadow: 0 0 30px rgba(0, 102, 204, 0.6); }
    100% { box-shadow: 0 0 20px rgba(0, 102, 204, 0.3); }
}

.glow {
    animation: glow 2s ease-in-out infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #0066cc;
    font-size: 1.8rem;
    margin: 0;
}

.nav-logo i {
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 1rem 0;
    z-index: 1000;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #0066cc;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.8) 0%, rgba(0, 68, 153, 0.8) 30%, rgba(0, 153, 255, 0.8) 70%, rgba(0, 204, 255, 0.8) 100%),
        url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: fixed, fixed;
    animation: gradientShift 20s ease infinite;
}

.hero-background::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 1200 600"><defs><radialGradient id="wave1" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="200" cy="100" r="80" fill="url(%23wave1)" opacity="0.6"><animate attributeName="cy" values="100;80;100" dur="4s" repeatCount="indefinite"/></circle><circle cx="800" cy="200" r="120" fill="url(%23wave1)" opacity="0.4"><animate attributeName="cy" values="200;170;200" dur="6s" repeatCount="indefinite"/></circle><circle cx="1000" cy="400" r="90" fill="url(%23wave1)" opacity="0.5"><animate attributeName="cy" values="400;380;400" dur="5s" repeatCount="indefinite"/></circle></svg>') no-repeat center center;
    background-size: cover;
    animation: float 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 50% 100%; }
    75% { background-position: 0% 50%; }
    100% { background-position: 50% 0%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ffffff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    animation: slideInUp 1.5s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1.8s ease-out 0.6s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::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.6s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e55a30, #e67544);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
    animation: buttonPulse 0.6s ease-out;
}

@keyframes buttonPulse {
    0% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-3px) scale(1.08); }
    100% { transform: translateY(-3px) scale(1.05); }
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Main Content */
.main-content {
    padding-top: 2rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    font-size: 2.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Service Overview */
.service-overview {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.disclaimer {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0066cc;
}

.disclaimer h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.disclaimer h3 i {
    margin-right: 0.5rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0099ff, #00ccff);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.2) rotate(-5deg); }
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0066cc, #0099ff, #00ccff);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    transition: all 0.4s ease;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Ferry Routes */
.ferry-routes {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.route-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #0066cc, #0099ff, #00ccff);
    border-radius: 20px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-card:hover::before {
    opacity: 1;
}

.route-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.route-card:hover .route-image-placeholder {
    transform: scale(1.05);
}

.route-card:hover .route-overlay {
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.9), rgba(0, 153, 255, 0.7));
}

.route-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.route-image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
    background-attachment: fixed;
    background-image: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.7) 0%, rgba(0, 68, 153, 0.7) 25%, rgba(0, 153, 255, 0.7) 50%, rgba(0, 204, 255, 0.7) 75%, rgba(102, 217, 255, 0.7) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.route-image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s ease-in-out infinite;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 102, 204, 0.8), rgba(0, 153, 255, 0.6));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.route-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.route-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.route-content {
    padding: 2rem;
}

.route-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.route-content p {
    margin-bottom: 1.5rem;
}

.route-features {
    list-style: none;
    margin-bottom: 2rem;
}

.route-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #666;
}

.route-features i {
    color: #0066cc;
    margin-right: 0.75rem;
    width: 16px;
}

.route-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.route-link:hover {
    color: #004499;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    text-align: center;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text h2,
.cta-text h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 2.5rem;
}

.cta-text h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 250px;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.contact-button i {
    font-size: 1.2rem;
}

/* Services Grid */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

.service-item i {
    font-size: 1.5rem;
    color: #0066cc;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: white;
}

.service-item span {
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-item:hover span {
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #0066cc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 280px;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-contact {
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .route-content,
    .disclaimer {
        padding: 1.5rem;
    }

    .service-item {
        padding: 1rem;
    }

    .contact-button {
        min-width: 200px;
        font-size: 0.9rem;
    }
}

/* Loading Animation for Route Images */
.route-image-placeholder {
    position: relative;
    overflow: hidden;
}

.route-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .contact-cta {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        height: auto;
        margin-top: 0;
        page-break-inside: avoid;
    }

    .hero-content {
        color: #333;
    }
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Page Hero Styles */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #004499 0%, #0066cc 50%, #0099ff 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* Route Overview Styles */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.overview-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.route-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #0066cc;
}

.highlight-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.highlight-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.ferry-image-placeholder {
    height: 300px;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0066cc 0%, #004499 25%, #0099ff 50%, #00ccff 75%, #66d9ff 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ferry-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><radialGradient id="water" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><g opacity="0.6"><circle cx="100" cy="100" r="30" fill="url(%23water)"><animate attributeName="r" values="30;40;30" dur="4s" repeatCount="indefinite"/></circle><circle cx="300" cy="150" r="25" fill="url(%23water)"><animate attributeName="r" values="25;35;25" dur="5s" repeatCount="indefinite"/></circle><circle cx="200" cy="300" r="35" fill="url(%23water)"><animate attributeName="r" values="35;45;35" dur="3s" repeatCount="indefinite"/></circle></g></svg>') no-repeat;
    background-size: 100% 100%;
    animation: slowFloat 10s ease-in-out infinite;
    z-index: 0;
}

.ferry-image-placeholder::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,80 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.2)"/><path d="M0,80 Q300,100 600,80 T1200,80 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    animation: waveFlow 8s linear infinite;
}

@keyframes slowFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes waveFlow {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

/* Specific Route Images */
.milwaukee-route {
    background-image: 
        linear-gradient(135deg, rgba(0, 102, 204, 0.6) 0%, rgba(0, 68, 153, 0.6) 50%, rgba(0, 153, 255, 0.6) 100%),
        url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') !important;
}

.bahamas-route {
    background-image: 
        linear-gradient(135deg, rgba(0, 180, 216, 0.6) 0%, rgba(0, 119, 182, 0.6) 50%, rgba(2, 62, 138, 0.6) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') !important;
}

/* Page Hero Backgrounds */
.bahamas-hero .page-hero-background {
    background: 
        linear-gradient(135deg, rgba(0, 180, 216, 0.8) 0%, rgba(0, 119, 182, 0.8) 50%, rgba(2, 62, 138, 0.8) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero .page-hero-background {
    background: 
        linear-gradient(135deg, rgba(99, 102, 241, 0.8) 0%, rgba(139, 92, 246, 0.8) 50%, rgba(168, 85, 247, 0.8) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2084&q=80') !important;
    background-size: cover;
    background-position: center;
}

.contact-hero .page-hero-background {
    background: 
        linear-gradient(135deg, rgba(5, 150, 105, 0.8) 0%, rgba(16, 185, 129, 0.8) 50%, rgba(52, 211, 153, 0.8) 100%),
        url('https://images.unsplash.com/photo-1486312338219-ce68e2c6b7d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80') !important;
    background-size: cover;
    background-position: center;
}

.legal-hero .page-hero-background {
    background: 
        linear-gradient(135deg, rgba(100, 116, 139, 0.8) 0%, rgba(71, 85, 105, 0.8) 50%, rgba(51, 65, 85, 0.8) 100%),
        url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') !important;
    background-size: cover;
    background-position: center;
}

.ferry-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.ferry-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Schedule Section Styles */
.schedule-section {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.schedule-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.schedule-notice i {
    color: #856404;
    margin-top: 0.2rem;
}

.schedule-notice p {
    margin: 0;
    color: #856404;
}

.schedule-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.schedule-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.schedule-table {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1px;
    background: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.schedule-row {
    display: contents;
}

.schedule-row div {
    padding: 1rem;
    background: white;
    text-align: center;
}

.schedule-row.header div {
    background: #0066cc;
    color: white;
    font-weight: 600;
}

.schedule-note {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* Pricing Section Styles */
.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0066cc;
}

.pricing-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.pricing-card h3 i {
    color: #0066cc;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #0066cc;
    font-size: 1.1rem;
}

.pricing-note {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid #0066cc;
}

.pricing-note i {
    color: #0066cc;
    margin-right: 0.5rem;
}

.pricing-note p {
    margin: 0;
    color: #333;
}

/* Amenities Section */
.amenities-section {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 1.5rem;
    color: #0066cc;
    margin-top: 0.2rem;
}

.amenity-item h4 {
    margin: 0 0 0.5rem 0;
    color: #333;
}

.amenity-item p {
    margin: 0;
    color: #666;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item h4 i {
    color: #0066cc;
    margin-top: 0.2rem;
}

.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.terminal-locations p {
    margin-bottom: 1rem;
}

.terminal-locations p:last-child {
    margin-bottom: 0;
}

/* Booking CTA Section */
.booking-cta {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-button.large {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    text-align: left;
}

.cta-button.large i {
    font-size: 1.5rem;
}

.button-title {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.button-subtitle {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.service-promise {
    text-align: center;
}

.service-promise p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 2rem 0;
    background: #f8f9fa;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #6c757d;
}

.disclaimer-box i {
    color: #6c757d;
    margin-top: 0.2rem;
}

.disclaimer-box p {
    margin: 0;
    color: #495057;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0066cc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004499;
}

/* Bahamas-specific styles */
.bahamas-hero .page-hero-background {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #023e8a 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.bahamas-routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bahamas-route-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bahamas-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.route-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.route-header i {
    font-size: 1.5rem;
    color: #0077b6;
}

.route-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

.route-details {
    margin-bottom: 1.5rem;
}

.route-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.route-detail i {
    color: #0077b6;
    width: 16px;
}

.route-image-small {
    display: flex;
    justify-content: center;
}

.bahamas-image-placeholder {
    height: 120px;
    width: 200px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.bahamas-image-placeholder.bimini {
    background: 
        linear-gradient(45deg, rgba(6, 255, 165, 0.8), rgba(0, 212, 170, 0.8)),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.bahamas-image-placeholder.freeport {
    background: 
        linear-gradient(45deg, rgba(255, 149, 0, 0.8), rgba(255, 107, 53, 0.8)),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

.bahamas-image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.bahamas-image-placeholder p {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.bahamas-schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.customs-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.customs-notice i {
    color: #1565c0;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.customs-notice p {
    margin: 0;
    color: #1565c0;
    font-weight: 500;
}

/* Travel Requirements Section */
.travel-requirements {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.requirement-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
}

.requirement-card.passport {
    border-top: 4px solid #e91e63;
}

.requirement-card.timing {
    border-top: 4px solid #ff9800;
}

.requirement-card.luggage {
    border-top: 4px solid #4caf50;
}

.requirement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.requirement-card.passport .requirement-icon {
    background: linear-gradient(135deg, #e91e63, #f06292);
}

.requirement-card.timing .requirement-icon {
    background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.requirement-card.luggage .requirement-icon {
    background: linear-gradient(135deg, #4caf50, #81c784);
}

.requirement-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.requirement-card p {
    color: #666;
    line-height: 1.6;
}

.terminal-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0077b6;
}

.terminal-info h3 {
    color: #0077b6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-details p:first-child {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.terminal-details p:last-child {
    color: #666;
    margin: 0;
}

/* Routes Overview Section */
.routes-overview {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* About Us page styles */
.about-hero .page-hero-background {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-image-placeholder {
    height: 300px;
    background: 
        linear-gradient(45deg, rgba(99, 102, 241, 0.8), rgba(139, 92, 246, 0.8)),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2084&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-image-placeholder::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 400 300"><defs><radialGradient id="team" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(255,255,255,0.2)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><g opacity="0.7"><circle cx="100" cy="80" r="20" fill="url(%23team)"><animate attributeName="r" values="20;30;20" dur="5s" repeatCount="indefinite"/></circle><circle cx="300" cy="120" r="15" fill="url(%23team)"><animate attributeName="r" values="15;25;15" dur="4s" repeatCount="indefinite"/></circle><circle cx="200" cy="200" r="25" fill="url(%23team)"><animate attributeName="r" values="25;35;25" dur="6s" repeatCount="indefinite"/></circle></g></svg>') no-repeat center;
    background-size: cover;
    animation: float 8s ease-in-out infinite;
}

.team-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.team-image-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mission-section {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2084&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.mission-content h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.value-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.services-section {
    background: white;
}

.do-dont-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.do-section,
.dont-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.do-section h3 {
    color: #10b981;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dont-section h3 {
    color: #ef4444;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.do-section .service-list i {
    color: #10b981;
    margin-top: 0.2rem;
}

.dont-section .service-list i {
    color: #ef4444;
    margin-top: 0.2rem;
}

.why-choose-section {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('https://images.unsplash.com/photo-1486312338219-ce68e2c6b7d3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.benefit-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.story-section {
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: #333;
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.thank-you {
    text-align: center;
    margin-top: 2rem;
}

.thank-you p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-style: italic;
}

/* Contact Us page styles */
.contact-hero .page-hero-background {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}

.contact-info-section {
    background: white;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-intro h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.phone-card {
    border-top: 4px solid #059669;
}

.email-card {
    border-top: 4px solid #0ea5e9;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.email-card .contact-icon {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.contact-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-link {
    display: block;
    color: #0066cc;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #004499;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.hours-section {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1551698618-1dfe5d97d256?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hours-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-card h2 {
    color: #333;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hours-card h2 i {
    color: #0066cc;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.hours-item.closed {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.help-section {
    background: white;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.help-item:hover {
    transform: translateY(-5px);
}

.help-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.help-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.help-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.routes-support-section {
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2074&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.routes-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.route-support-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.route-support-card:hover {
    transform: translateY(-5px);
}

.route-support-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.route-support-header i {
    font-size: 1.5rem;
    color: #0066cc;
}

.route-support-header h3 {
    color: #333;
    margin: 0;
}

.route-list {
    list-style: none;
    margin-bottom: 2rem;
}

.route-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.route-list i {
    color: #0066cc;
    width: 16px;
}

.route-support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.route-support-link:hover {
    color: #004499;
}

.notice-section {
    background: white;
}

.notice-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #856404;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notice-content h3 {
    color: #856404;
    margin-bottom: 1rem;
}

.notice-content p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Legal pages styles */
.legal-hero .page-hero-background {
    background: linear-gradient(135deg, #64748b 0%, #475569 50%, #334155 100%);
}

.legal-content {
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    margin-bottom: 2rem;
}

.last-updated p {
    margin: 0;
    color: #666;
}

.legal-intro {
    margin-bottom: 3rem;
}

.legal-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #333;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-section h2 i {
    color: #0066cc;
}

.legal-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section ul li {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #004499;
}

.legal-acceptance {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.acceptance-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 8px;
    padding: 1.5rem;
}

.acceptance-box i {
    color: #1890ff;
    margin-top: 0.2rem;
    font-size: 1.2rem;
}

.acceptance-box p {
    color: #1890ff;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Enhanced Contact Buttons */
.contact-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.contact-button::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.6s;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-button i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.contact-button:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Loading Animation */
@keyframes loadingDots {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0066cc;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(2) { animation-delay: -0.32s; }
.loading-dots span:nth-child(3) { animation-delay: -0.16s; }

/* Stagger Animation for Cards */
.stagger-animation .feature-card:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation .feature-card:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation .feature-card:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation .feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #0066cc, #0099ff, #00ccff);
    width: 0%;
    transition: width 0.3s ease;
}

/* Enhanced Shadows */
.enhanced-shadow {
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24),
        0 4px 8px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.12);
}

.enhanced-shadow:hover {
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.24),
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Glassmorphism Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #0066cc, #0099ff, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Magnetic Effect */
.magnetic-button {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.magnetic-button:hover {
    transform: translate(var(--x, 0), var(--y, 0)) scale(1.05);
}

/* Floating Decorative Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><radialGradient id="bubble1" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(0,102,204,0.05)"/><stop offset="100%" stop-color="transparent"/></radialGradient><radialGradient id="bubble2" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="rgba(0,153,255,0.03)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><g opacity="0.6"><circle cx="200" cy="200" r="40" fill="url(%23bubble1)"><animate attributeName="cy" values="200;150;200" dur="8s" repeatCount="indefinite"/></circle><circle cx="800" cy="400" r="60" fill="url(%23bubble2)"><animate attributeName="cy" values="400;350;400" dur="12s" repeatCount="indefinite"/></circle><circle cx="1500" cy="300" r="35" fill="url(%23bubble1)"><animate attributeName="cy" values="300;250;300" dur="10s" repeatCount="indefinite"/></circle><circle cx="1200" cy="700" r="45" fill="url(%23bubble2)"><animate attributeName="cy" values="700;650;700" dur="9s" repeatCount="indefinite"/></circle><circle cx="400" cy="800" r="30" fill="url(%23bubble1)"><animate attributeName="cy" values="800;750;800" dur="11s" repeatCount="indefinite"/></circle></g></svg>') no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    animation: floatingSlow 20s ease-in-out infinite;
}

@keyframes floatingSlow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Phone Link Styling */
.phone-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.05);
    border: 2px solid transparent;
}

.phone-link:hover {
    color: #004499;
    background: rgba(0, 102, 204, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.phone-link i {
    font-size: 1.2rem;
    color: #0066cc;
    transition: all 0.3s ease;
}

.phone-link:hover i {
    color: #004499;
    transform: scale(1.1) rotate(10deg);
    animation: phoneRing 0.6s ease-in-out;
}

@keyframes phoneRing {
    0%, 100% { transform: scale(1.1) rotate(10deg); }
    25% { transform: scale(1.2) rotate(-5deg); }
    50% { transform: scale(1.1) rotate(15deg); }
    75% { transform: scale(1.2) rotate(5deg); }
}

.phone-link span {
    font-weight: 600;
    color: inherit;
}

/* Main Phone Button Styling */
.main-phone-cta {
    margin-top: 2rem;
    text-align: center;
}

.main-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.main-phone-button::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.6s;
}

.main-phone-button:hover::before {
    left: 100%;
}

.main-phone-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.6);
    animation: phoneButtonPulse 1s infinite;
}

@keyframes phoneButtonPulse {
    0% { transform: translateY(-3px) scale(1.05); }
    50% { transform: translateY(-3px) scale(1.08); }
    100% { transform: translateY(-3px) scale(1.05); }
}

.main-phone-button i {
    font-size: 1.5rem;
    animation: phoneIconBounce 2s ease-in-out infinite;
}

@keyframes phoneIconBounce {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    50% { transform: rotate(10deg) scale(1.2); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

.phone-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.phone-number {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Floating Phone Button */
.floating-phone-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: floatingPhone 3s ease-in-out infinite;
}

.floating-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #e55a30, #e67544);
}

.floating-phone-btn:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

.floating-phone-btn i {
    animation: phoneIconRing 2s ease-in-out infinite;
}

@keyframes floatingPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes phoneIconRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-10deg); }
    20% { transform: rotate(10deg); }
    30% { transform: rotate(-10deg); }
    40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.phone-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    line-height: 1.3;
    text-align: center;
}

.phone-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.9);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .route-highlights {
        grid-template-columns: 1fr;
    }

    .schedule-table {
        grid-template-columns: 1fr;
    }

    .schedule-row div {
        text-align: left;
        border-bottom: 1px solid #e9ecef;
    }

    .schedule-row.header div {
        text-align: center;
        border-bottom: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button.large {
        min-width: 280px;
    }

    /* Mobile Phone Button Adjustments */
    .floating-phone-btn {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .phone-tooltip {
        right: 70px;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .main-phone-button {
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }

    .phone-number {
        font-size: 1.1rem;
    }

    .phone-details {
        align-items: center;
    }

    /* Bahamas-specific responsive styles */
    .bahamas-routes-grid {
        grid-template-columns: 1fr;
    }

    .bahamas-schedule-grid {
        grid-template-columns: 1fr;
    }

    .requirements-grid {
        grid-template-columns: 1fr;
    }
}
