/* --- RESET & BASE --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --magenta: #e6007e;
    --dark-charcoal: #231f20;
    --bg-gradient: radial-gradient(circle at top right, #4a0029, #231f20);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(15px);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- HERO SECTION --- */
.hero-container {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5% 40px 5%;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- QUICK LINKS GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--magenta);
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 10px rgba(230, 0, 126, 0.4);
}

.feature-card h2 {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* --- THE MASTER GLASS CARD --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta);
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-details {
    margin: 30px 0;
}

.contact-details p {
    margin: 15px 0;
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 300;
}

.map-wrapper {
    flex: 1.2;
    min-height: 450px;
}

/* --- UI ELEMENTS --- */
.magenta-text {
    color: var(--magenta);
}

.cta-button {
    display: inline-block;
    background: var(--magenta);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.3);
}

.cta-button:hover {
    box-shadow: 0 0 20px rgba(230, 0, 126, 0.5);
    transform: scale(1.05);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        padding: 40px 25px;
        text-align: center;
    }

    .contact-details p {
        justify-content: center;
    }

    .map-wrapper {
        height: 350px;
        width: 100%;
    }
}
.header-spacer {
    padding-top: 160px; /* Clears the fixed Nav */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* --- GLOBAL FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* High z-index to stay above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: white;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 950px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}