@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: url('travel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden; /* Hard locking viewport scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* =========================================
   LUXURY SCROLL-FREE CONTAINER
   ========================================= */
.main-card {
    background: rgba(11, 19, 30, 0.75); 
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 960px; /* Widened slightly to give horizontal elements room */
    width: 100%;
    padding: 30px 35px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    gap: 20px; /* Reduced vertical spacing gaps */
    max-height: 95vh;
}

/* =========================================
   TOP BRANDING DESIGN
   ========================================= */
.top-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    max-height: 45px; /* Scaled down slightly to save vertical space */
    width: auto;
    filter: brightness(0) invert(1);
}

.text-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1;
}

.text-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #94a3b8;
    margin-top: 4px;
}

/* =========================================
   STATUS PILL
   ========================================= */
.status-pill {
    background: rgba(34, 197, 94, 0.14);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(34, 197, 94, 0.25);
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* =========================================
   MIDSECTION TYPOGRAPHY
   ========================================= */
.message-area {
    text-align: center;
}

.message-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.intro-text {
    color: #cbd5e1;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto;
}

/* =========================================
   THE SIDE-BY-SIDE GRID ARCHITECTURE
   ========================================= */
.split-architecture {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Perfect balancing ratio */
    gap: 20px;
}

.ui-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 16px 20px;
    border-radius: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}

.section-icon {
    width: 16px;
    height: 16px;
}

.section-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f8fafc;
}

/* =========================================
   LEFT PANEL: LOCATIONS DESIGN
   ========================================= */
.locations-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
}

.location-card h4 {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.location-card p {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* =========================================
   RIGHT PANEL: CONTACTS DESIGN
   ========================================= */
.contacts-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.group-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

.buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.call-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0b131e;
    transform: translateY(-1px);
}

.btn-meta {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #38bdf8;
    font-weight: 700;
}

.call-btn:hover .btn-meta {
    color: #64748b;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: url('travel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden; /* Hard locking viewport scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* =========================================
   REFINED DARK GLASS (MORE BACKGROUND VISIBILITY)
   ========================================= */
.main-card {
    /* Dropped from 0.75 to 0.52 so the lake scenery pop outlines pass through beautifully */
    background: rgba(11, 19, 30, 0.52); 
    backdrop-filter: blur(20px); /* Increased blur slightly to protect text legibility */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 960px;
    width: 100%;
    padding: 30px 35px;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 95vh;
}

/* =========================================
   TOP BRANDING DESIGN
   ========================================= */
.top-branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-logo {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.text-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #ffffff;
    line-height: 1;
}

.text-logo span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #cbd5e1;
    margin-top: 4px;
}

/* =========================================
   STATUS PILL
   ========================================= */
.status-pill {
    background: #1F1F31;
    color: #3E679C;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    border: 1px solid #1F1F31;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #3E679C;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #1F1F31;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* =========================================
   MIDSECTION TYPOGRAPHY
   ========================================= */
.message-area {
    text-align: center;
}

.message-area h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.intro-text {
    color: #f1f5f9;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 750px;
    margin: 0 auto;
}

/* =========================================
   SIDE-BY-SIDE SPLIT ARCHITECTURE
   ========================================= */
.split-architecture {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

.ui-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 20px;
    border-radius: 16px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.section-icon {
    width: 16px;
    height: 16px;
}

.section-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f8fafc;
}

/* =========================================
   LEFT PANEL: LOCATIONS DESIGN
   ========================================= */
.locations-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-card {
    background: rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px;
}

.location-card h4 {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.location-card p {
    color: #cbd5e1;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* =========================================
   RIGHT PANEL: CONTACTS DESIGN
   ========================================= */
.contacts-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.group-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.buttons-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.call-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.call-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #0b131e;
    transform: translateY(-1px);
}

.btn-meta {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #38bdf8;
    font-weight: 700;
}

.call-btn:hover .btn-meta {
    color: #64748b;
}

.call-btn strong {
    font-size: 0.92rem;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE LAYOUT 
   ========================================= */
@media (max-width: 900px) {
    .split-architecture {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .main-card {
        max-height: 98vh;
        overflow-y: auto; 
    }
}

@media (max-width: 600px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    .top-branding {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contacts-split-row {
        grid-template-columns: 1fr;
    }
}
.call-btn strong {
    font-size: 0.92rem;
    font-weight: 600;
}

/* =========================================
   RESPONSIVE LAYOUT RESPONSES
   ========================================= */
@media (max-width: 900px) {
    .split-architecture {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .main-card {
        max-height: 98vh;
        overflow-y: auto; /* Allows safe fallback for small tablets */
    }
}

@media (max-width: 600px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    .top-branding {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contacts-split-row {
        grid-template-columns: 1fr;
    }
}