/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #053473;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand-name {
    position: absolute;
    top: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.9;
}

.text-group h1 {
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 800;
    line-height: 0.8;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.sub-text {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: -0.02em;
}

.badge {
    margin-top: 40px;
    font-size: 13px;
    letter-spacing: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    display: inline-block;
    font-weight: 400;
    text-transform: uppercase;
}

/* Connect Section Styles */
.connect-section {
    margin-top: 50px;
}

.connect-section p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 10px;
}

/* FIX: This forces all links/icons to stay white */
.contact-links a, 
.phone-number,
a[href^="tel"] {
    color: #ffffff !important; 
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.phone-number {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-top: 10px;
}

.contact-links a:hover {
    color: #25D366 !important; /* Green hover for WhatsApp */
    transform: translateY(-3px);
}