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

:root {
    --primary: #384D71;
    --primary-dark: #1a2744;
    --primary-light: #5a7ab0;
    --accent: #d4a574;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-900: #111827;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    min-height: 100vh;
    color: var(--gray-900);
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-pattern {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23384D71' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
    background-size: 40px 40px;
}

.floating-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(56, 77, 113, 0.06), rgba(90, 122, 176, 0.08));
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08), rgba(212, 165, 116, 0.04));
    bottom: -100px;
    left: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(56, 77, 113, 0.04), rgba(139, 92, 246, 0.03));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(20px, -30px) scale(1.02);
    }

    50% {
        transform: translate(-30px, 20px) scale(0.98);
    }

    75% {
        transform: translate(15px, 25px) scale(1.01);
    }
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo {
    max-width: 260px;
    height: auto;
    margin-bottom: 28px;
    filter: drop-shadow(0 10px 25px rgba(56, 77, 113, 0.15));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.subtitle {
    font-size: clamp(15px, 2.5vw, 18px);
    font-weight: 400;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    letter-spacing: -0.01em;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 100px;
    margin-bottom: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(56, 77, 113, 0.25), 0 2px 8px rgba(56, 77, 113, 0.15);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(56, 77, 113, 0.25), 0 2px 8px rgba(56, 77, 113, 0.15);
    }

    50% {
        box-shadow: 0 12px 40px rgba(56, 77, 113, 0.35), 0 4px 12px rgba(56, 77, 113, 0.2);
    }
}

.coming-soon-badge .dot {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.coming-soon-badge span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
}

/* Info Cards */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 50px;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    box-shadow: 0 2px 12px rgba(56, 77, 113, 0.04);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gray-200);
    box-shadow: 0 16px 50px rgba(56, 77, 113, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.info-card .icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.icon-location {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.icon-clock {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.info-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
    line-height: 1.6;
}

.info-card .metro-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-radius: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.info-card .metro-note svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-card .service-times {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-100);
}

.service-times .time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 13px;
}

.service-times .time-row .label {
    color: var(--gray-500);
    font-weight: 400;
}

.service-times .time-row .time {
    font-weight: 600;
    color: var(--primary);
    background: rgba(56, 77, 113, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* Quick Links */
.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(56, 77, 113, 0.04);
}

.link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 77, 113, 0.1);
}

.link-btn svg {
    width: 20px;
    height: 20px;
}

.link-btn.youtube {
    background: #ff0000;
    border-color: #ff0000;
    color: var(--white);
}

.link-btn.youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
}

.link-btn.directions {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.link-btn.directions:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Contact Info */
.contact-section {
    text-align: center;
    margin-bottom: 30px;
}

.contact-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.contact-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 6px rgba(56, 77, 113, 0.04);
}

.contact-pill:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(56, 77, 113, 0.08);
    transform: translateY(-2px);
}

.contact-pill svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray-100);
}

.footer p {
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-400);
}

.footer .established {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }

    .logo {
        max-width: 200px;
    }

    .subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .coming-soon-badge {
        padding: 12px 24px;
    }

    .coming-soon-badge span {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card {
        padding: 24px;
    }

    .quick-links {
        flex-direction: column;
        align-items: stretch;
    }

    .link-btn {
        justify-content: center;
    }

    .contact-pills {
        flex-direction: column;
        align-items: center;
    }

    .contact-section h2 {
        font-size: 20px;
    }
}