:root {
    --primary-color: #ffffff;
    --secondary-color: #879e79;
    --secondary-hover: #6c8c6a;
    --text-dark: #2c3e2b;
    --text-gray: #6b7a69;
    --bg-light: #f5f8f5;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--primary-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(128, 162, 125, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Split Layout */
.split-layout {
    display: flex;
    min-height: 100vh;
}

.pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
}

/* Left Pane (Green) */
.left-pane {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Soft decorative glow behind the logo */
.left-pane::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.logo {
    max-width: 380px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    z-index: 1;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.tagline {
    font-family: 'Lato', sans-serif;
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
    z-index: 1;
}

/* Right Pane (White) */
.right-pane {
    background-color: var(--primary-color);
    align-items: flex-start;
}

.right-pane .content {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(128, 162, 125, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.title {
    font-family: 'Lato', sans-serif;
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* Info Card */
.info-card {
    background-color: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(128, 162, 125, 0.08);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.icon {
    font-size: 1.75rem;
}

.info-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.info-text span {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Map */
.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(128, 162, 125, 0.15);
    margin-bottom: 2rem;
    border: 1.5px solid #e1e8e0;
    transition: box-shadow 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 12px 40px rgba(128, 162, 125, 0.25);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
}

/* Social Icons */
.social-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.social-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(128, 162, 125, 0.1);
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-link:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(128, 162, 125, 0.35);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.stagger {
    animation-delay: 0.15s;
}

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

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        flex-direction: column;
    }

    .pane {
        padding: 4rem 2rem;
    }

    .left-pane {
        min-height: 40vh;
    }

    .right-pane {
        min-height: 60vh;
        align-items: center;
        text-align: center;
    }

    .right-pane .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        text-align: left;
        width: 100%;
    }

    .notify-form {
        flex-direction: column;
    }

    .notify-btn {
        width: 100%;
        padding: 1.2rem;
    }

    .title {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 280px;
    }
}