:root {
    --primary-color: #5D7A73;
    /* Sage Green */
    --secondary-color: #8CA3A8;
    /* Soft Blue */
    --accent-color: #D6CFC4;
    /* Warm Beige */
    --text-dark: #2C3E3A;
    --text-light: #F4F7F6;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    /* Fallback */
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.content-container {
    width: 90%;
    max-width: 800px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 3rem;
    box-shadow: var(--shadow);
    text-align: center;
    margin: 2rem 0;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Logo */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-box {
    width: auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.construction-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/* Typography */
.headline {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.sub-headline {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #4A5D58;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.6);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Trust Message */
.trust-message {
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.vision-text {
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(93, 122, 115, 0.3);
}

.cta-button:hover {
    background-color: #4a635d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 122, 115, 0.4);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
}

.toggle-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.toggle-btn:hover {
    transform: scale(1.05);
}

.toggle-btn.active {
    transform: rotate(45deg);
    background-color: #4a5d58;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.contact-options.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s;
}

.contact-btn:hover {
    transform: scale(1.1);
}

.contact-btn.whatsapp {
    background-color: #25D366;
}

.contact-btn.call {
    background-color: #007AFF;
}

/* Responsive */
@media (max-width: 600px) {
    .content-container {
        padding: 2rem;
        width: 95%;
        margin: 1rem 0;
    }

    .headline {
        font-size: 1.8rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-options {
        /* Always show on mobile if preferred, or keep toggle */
    }
}