/* 
 * Seagull Travel - Premium Design System
 * Primary: Navy Blue | Secondary: Orange
 */

:root {
    /* Color Palette */
    --primary-color: #1b235b;
    --primary-hover: #131942;
    --secondary-color: #f48c22;
    --secondary-hover: #db7d1f;
    --accent-color: #e0f2fe; /* Light cyan/blue for backgrounds */
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    
    --bg-main: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-dark: #0f172a;
    
    --border-color: #e2e8f0;
    --success: #10b981;
    --error: #ef4444;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(27, 35, 91, 0.05), 0 2px 4px -1px rgba(27, 35, 91, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(27, 35, 91, 0.06), 0 4px 6px -2px rgba(27, 35, 91, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(27, 35, 91, 0.08), 0 10px 10px -5px rgba(27, 35, 91, 0.03);
    --shadow-glow: 0 0 20px rgba(244, 140, 34, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--secondary-hover);
}

/* Utilities */
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-subtle { background-color: var(--bg-subtle) !important; }
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }

.section-padding { padding: 5rem 0; }
.section-padding-lg { padding: 8rem 0; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary-custom:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary-custom:hover {
    background-color: var(--secondary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Navbar */
.navbar-custom {
    transition: var(--transition-smooth);
    padding: 1rem 0;
    z-index: 1030;
    /* Default variables for transparent/dark backgrounds */
    --bs-navbar-color: rgba(255, 255, 255, 0.85);
    --bs-navbar-hover-color: #ffffff;
    --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.2);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231b235b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-custom.scrolled,
.navbar-custom.bg-white {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-sm);
    padding: 0.5rem 0;
    /* Variables for solid white backgrounds */
    --bs-navbar-color: var(--text-main);
    --bs-navbar-hover-color: var(--secondary-color);
    --bs-navbar-toggler-border-color: rgba(27, 35, 91, 0.2);
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231b235b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-custom .nav-link {
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition-smooth);
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active {
    color: var(--secondary-color);
}
.navbar-custom.navbar-transparent .nav-link {
    color: white;
}
.navbar-custom.navbar-transparent.scrolled .nav-link {
    color: var(--text-main);
}

@media (max-width: 991px) {
    .navbar-custom .offcanvas-body .nav-link {
        color: var(--text-main) !important;
    }
    .navbar-custom .offcanvas-body .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
}
.navbar-brand img {
    height: 50px;
    transition: var(--transition-smooth);
}
.navbar-custom.scrolled .navbar-brand img {
    height: 40px;
}

@media (min-width: 992px) {
    .navbar-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(27,35,91,0.7), rgba(27,35,91,0.75));
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}
.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    color: white;
}
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* Tour Search Filter */
.search-filter-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -60px;
}
.search-filter-box {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}
.search-filter-box .form-control, .search-filter-box .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
}
.search-filter-box .form-control:focus, .search-filter-box .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 140, 34, 0.25);
    border-color: var(--secondary-color);
}

/* Section Titles */
.section-kicker {
    color: var(--secondary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.section-kicker::before {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Cards (Tours/Destinations) */
.premium-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.premium-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 66%; /* 3:2 Aspect Ratio */
}
.premium-card .card-img-wrapper img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.premium-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}
.premium-card .card-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}
.premium-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.premium-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.premium-card .card-title a {
    color: var(--primary-color);
}
.premium-card .card-title a:hover {
    color: var(--secondary-color);
}
.premium-card .card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.premium-card .card-meta i {
    color: var(--secondary-color);
}
.premium-card .card-price {
    margin-top: auto;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
.premium-card .card-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}
.site-footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.site-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer .footer-links li {
    margin-bottom: 0.75rem;
}
.site-footer .footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-smooth);
}
.site-footer .footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition-smooth);
}
.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .search-filter-wrapper { margin-top: 2rem; }
    .navbar-custom { background: white; }
    .navbar-custom.navbar-transparent .nav-link { color: var(--text-main); }
    .navbar-custom .navbar-brand img { filter: brightness(0.2) sepia(1) hue-rotate(180deg) saturate(5); } /* Rough attempt to make white logo dark if it was white */
}
@media (max-width: 575px) {
    .hero-title { font-size: 2.5rem; }
    .section-padding { padding: 3rem 0; }
}

/* Page Header Text Shadow (For all internal pages) */
.page-header h1, .page-header p, .service-header h1, .service-header p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
    color: white;
}
.page-header .breadcrumb-item, .page-header .breadcrumb-item a {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Offcanvas Menu Customization */
.offcanvas-end {
    background-color: var(--bg-main);
    /*border-left: 1px solid var(--border-color);*/
}
.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}
.offcanvas .nav-link {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}
.offcanvas .nav-link:hover, .offcanvas .nav-link.active {
    color: var(--secondary-color);
}
.offcanvas .dropdown-menu {
    border: none;
    background: var(--bg-subtle);
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
}

/* Enhanced Dropdown Menus */
.navbar-custom .dropdown-menu-custom {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0 0.25rem;
    min-width: 320px;
    margin-top: 0 !important;
    overflow: hidden;
    background: white;
}

.dropdown-header-custom {
    padding: 0.5rem 1.5rem 0.6rem;
    background: transparent;
}

.dropdown-kicker {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--secondary-color);
    font-family: var(--font-body);
}

.dropdown-menu-custom > li > .dropdown-divider {
    margin: 0 1.5rem 0.25rem;
    border-color: var(--border-color);
    opacity: 0.5;
}

.dropdown-item-custom {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem !important;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition-smooth);
    white-space: normal !important;
    gap: 1rem;
}

.dropdown-menu-custom > li:last-child > .dropdown-item-custom {
    border-bottom: none;
}

.dropdown-item-custom:hover,
.dropdown-item-custom:focus {
    background-color: var(--bg-subtle) !important;
    color: inherit;
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.dropdown-item-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.3;
}

.dropdown-item-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 400;
}

.dropdown-item-custom:hover .dropdown-item-title {
    color: var(--secondary-color);
}

.dropdown-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    border: 1.5px solid var(--secondary-color);
    padding: 0.15rem 0.55rem;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Desktop: hover-triggered dropdowns with smooth transitions */
@media (min-width: 992px) {
    .navbar-custom .dropdown-menu-custom {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .navbar-custom .nav-item.dropdown:hover > .dropdown-menu-custom,
    .navbar-custom .nav-item.dropdown.show > .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-custom .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar-custom .nav-item.dropdown:hover > .dropdown-toggle::after,
    .navbar-custom .nav-item.dropdown.show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Mobile: distinct offcanvas-style dropdowns */
@media (max-width: 991px) {
    .navbar-custom .dropdown-menu-custom {
        border-radius: 0 !important;
        box-shadow: none !important;
        min-width: auto !important;
        background: transparent;
        border: none;
        border-left: 3px solid var(--secondary-color);
        margin-left: 0.5rem;
        padding: 0.25rem 0;
        display: none;
    }
    .navbar-custom .dropdown-menu-custom.show {
        display: block;
    }
    .dropdown-header-custom,
    .dropdown-divider-wrap {
        display: none;
    }
    .dropdown-menu-custom > li > .dropdown-divider {
        display: none;
    }
    .dropdown-item-custom {
        padding: 0.6rem 1rem !important;
        border-bottom: none !important;
        border-radius: 0;
    }
    .dropdown-item-custom:hover,
    .dropdown-item-custom:focus {
        background-color: rgba(244, 140, 34, 0.06) !important;
    }
    .dropdown-badge {
        display: none;
    }
    .dropdown-item-title {
        font-size: 0.9rem;
        font-weight: 500;
    }
    .dropdown-item-subtitle {
        font-size: 0.72rem;
    }
}

/* Tour Details - Swiper & Reviews */
.tour-main-swiper {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
}
.tour-main-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tour-thumb-swiper {
    width: 100%;
    height: 100px;
}
.tour-thumb-swiper .swiper-slide {
    opacity: 0.5;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.tour-thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--secondary-color);
}
.tour-thumb-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-overlay {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary-color);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.video-overlay:hover {
    background: var(--secondary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.review-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
    height: 100%;
}
.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.reviewer-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Mobile Sticky Booking Bar */
.mobile-sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1020;
}
.mobile-sticky-booking .bg-white {
    padding-bottom: env(safe-area-inset-bottom, 1rem) !important;
}

@media (max-width: 991px) {
    /* Prevent content from hiding behind the sticky bar */
    main {
        padding-bottom: 90px;
    }
}

/* ========================================= */
/* COMPREHENSIVE MOBILE OPTIMIZATIONS        */
/* ========================================= */
@media (max-width: 767px) {
    /* 1. Typography Scaling */
    .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem) !important; line-height: 1.2; word-wrap: break-word; hyphens: auto; }
    .section-title { font-size: 2rem !important; text-align: center; }
    .section-kicker { text-align: center; margin-left: auto; margin-right: auto; display: block; }
    .hero-subtitle { font-size: 1.1rem !important; }
    .page-header h1, .service-header h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    /* 2. Global Spacing & Padding */
    .section-padding { padding: 2.5rem 0 !important; }
    .section-padding-lg { padding: 3.5rem 0 !important; }
    
    /* Specific Component Spacing */
    .search-filter-box { padding: 1.5rem !important; }
    .contact-info-box, .contact-form { padding: 1.5rem !important; }
    .review-card { padding: 1.5rem !important; }
    
    /* 2-Column Mobile Grid Optimizations */
    /* Our Main Hubs (.premium-card) */
    .premium-card .card-body { padding: 0.75rem !important; }
    .premium-card .card-title { font-size: 1.1rem; margin-bottom: 0.5rem; }
    .premium-card .card-badge { font-size: 0.65rem; padding: 0.2rem 0.5rem; top: 0.5rem; right: 0.5rem; }
    .premium-card .card-meta { gap: 0.5rem; font-size: 0.75rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
    .premium-card .card-price { font-size: 1.1rem; }
    
    /* Travel with Confidence (.trust-card) */
    .trust-card { text-align: center; padding-right: 0 !important; }
    .trust-card .trust-icon-box { width: 50px; height: 50px; font-size: 1.25rem; margin: 0 auto 1rem; }
    .trust-card h4 { font-size: 1rem !important; margin-bottom: 0.5rem !important; }
    .trust-card p { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0; }
    
    /* Beyond Excursions (.service-card) */
    .service-card { padding: 1.25rem 1rem !important; }
    .service-card .service-icon { font-size: 2rem; margin-bottom: 1rem; }
    .service-card h4 { font-size: 1rem !important; margin-bottom: 0.5rem !important; }
    .service-card p { font-size: 0.8rem; line-height: 1.4; }
    
    .tour-card .card-body { padding: 1rem !important; }
    
    /* 3. Alignments & Layouts */
    .hero-section { text-align: center; }
    
    /* Footer Optimization */
    .site-footer { text-align: center; }
    .site-footer h4 { margin-top: 1.5rem; margin-bottom: 1rem !important; }
    .site-footer .footer-links li { justify-content: center !important; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; padding-top: 1.5rem !important; }
    .footer-bottom .d-flex { justify-content: center; }
    .social-icons { justify-content: center; margin-top: 1.5rem; }
}

/* ========================================= */
/* COMING SOON PAGE                          */
/* ========================================= */
.coming-soon-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 2rem;
}
.coming-soon-wrapper .hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.coming-soon-wrapper .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(27,35,91,0.7), rgba(27,35,91,0.85));
    z-index: 2;
}
.coming-soon-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
}
.coming-soon-logo {
    /*max-height: 80px;*/
    margin-bottom: 2.5rem;
    /* filter: brightness(0) invert(1);  */
}
.coming-soon-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
    color: white;
}
.coming-soon-subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3.5rem;
}
.contact-glass-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.contact-glass-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    text-align: left;
}
.contact-glass-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    color: var(--secondary-color);
}
.contact-glass-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}
.contact-glass-item:hover .contact-glass-icon {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 575px) {
    .contact-glass-panel a div:nth-child(2) { display: none; }
    .coming-soon-logo { max-height: 60px; margin-bottom: 2rem; }
    .contact-glass-panel { padding: 1.5rem; gap: 1rem; }
    .contact-glass-item { font-size: 1rem; flex-direction: column; text-align: center; gap: 0.75rem; padding: 1rem 0.5rem; }
    .contact-glass-item:hover { transform: translateY(-3px); }
    .contact-glass-icon { width: 40px; height: 40px; font-size: 1.1rem; }
}
