:root {
    --primary-blue: #0051A0;
    --secondary-blue: #003366;
    --accent-yellow: #FFC107;
    --accent-red: #D32F2F;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--primary-blue);
    background: radial-gradient(circle at 10% 20%, var(--primary-blue) 0%, var(--secondary-blue) 90%);
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

/* Background Shapes for depth */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary-blue);
    border-radius: 50%;
}

.shape-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: #001f4d;
    border-radius: 50%;
}

.main-wrapper {
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Glass Card Container */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Logo & Badge */
.logo-img {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

.badge-open {
    position: absolute;
    top: -15px;
    right: -25px;
    background-color: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transform: rotate(15deg);
    z-index: 10;
    text-align: center;
    line-height: 1.1;
    transition: transform 0.3s ease;
}

.badge-open:hover {
    transform: rotate(0deg) scale(1.1);
}

/* Typography */
.phone-number {
    font-size: 2.2rem;
    color: var(--text-white);
    letter-spacing: -1px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Social Icons */
.social-icons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icons .social-link:hover {
    background-color: var(--accent-yellow);
    color: var(--secondary-blue);
    transform: translateY(-5px);
    border-color: var(--accent-yellow);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

/* Chat Box */
.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.05);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Footer Locations */
.locations-grid h6 {
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .glass-card {
        padding: 2rem !important;
    }
    
    .border-end-lg {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .phone-number {
        font-size: 2rem;
    }

    .badge-open {
        right: -10px;
    }
}

@media (max-width: 575.98px) {
    .main-title {
        font-size: 1.75rem;
    }
    
    .logo-img {
        max-width: 180px;
    }
}
