.container {
    margin: 0 auto;
}

.contact .container {
    padding: 0 2rem;
}

h1,
h2,
h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--theme-palette-color-3);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    color: var(--theme-text-muted);
    font-size: 1.1rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--theme-palette-color-1);
    color: var(--theme-palette-color-8);
    border: 2px solid var(--theme-palette-color-1);
}

.btn-primary:hover {
    background-color: var(--theme-palette-color-4);
    border-color: var(--theme-palette-color-4);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(29, 29, 27, 0.15);
}

/* WhatsApp & Call buttons */
.btn-whatsapp {
    background-color: #25D366;
    color: var(--theme-palette-color-8);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C4E;
    border-color: #128C4E;
    transform: translateY(-3px);
    color: var(--theme-palette-color-8);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-call {
    background-color: var(--theme-palette-color-2);
    color: var(--theme-palette-color-8);
    border: 2px solid var(--theme-palette-color-2);
}

.btn-call:hover {
    background-color: var(--theme-palette-color-1);
    border-color: var(--theme-palette-color-1);
    transform: translateY(-3px);
    color: var(--theme-palette-color-8);
    box-shadow: 0 10px 20px rgba(123, 134, 110, 0.2);
}

/* SECTIONS */
section {
    padding: 100px 0;
}

section.contact {
    padding: 30px 0;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--theme-palette-color-5) 0%, var(--theme-palette-color-8) 100%);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100% !important;
    max-width: 100vw;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194, 162, 93, 0.15) 0%, transparent 70%);
    /* Gold tint */
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero .buttons {
    margin-top: 2rem;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================= */
/* STATS SECTION - LIGHT PREMIUM VERSION     */
/* ========================================= */
.stats {
    background: var(--theme-palette-color-1);
    padding: 30px 0;
    text-align: center;
    width: 100% !important;
    max-width: 100vw;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    padding: 15px 10px;
    background: transparent;
    transition: transform 0.3s ease;
    position: relative;
}

/* Elegant vertical dividers between stats */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: var(--theme-palette-color-5);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--theme-palette-color-7);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--theme-palette-color-4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}


/* SERVICES SECTION */
.services {
    background-color: var(--theme-palette-color-7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--theme-palette-color-8);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(9, 9, 9, 0.04);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--theme-palette-color-6);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--theme-palette-color-1), var(--theme-palette-color-2));
    /* Olive to Gold */
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 40px rgba(9, 9, 9, 0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-palette-color-7);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--theme-palette-color-1);
    transform: rotate(8deg) scale(1.1);
}

.service-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--theme-palette-color-1);
    transition: fill 0.3s ease;
}

.service-card:hover .service-icon svg {
    fill: var(--theme-palette-color-8);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--theme-palette-color-3);
}

.service-card p {
    color: var(--theme-text-muted);
    font-size: 1.02rem;
    line-height: 1.5;
}

/* CONTACT SECTION */
.contact {
    background: var(--theme-palette-color-6);
    border-radius: 20px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.contact-info p {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--theme-text-muted);
}

.contact-info strong {
    color: var(--theme-palette-color-4);
}

.contact-form {
    background: var(--theme-palette-color-8);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(9, 9, 9, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--theme-palette-color-4);
}

input,
textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--theme-palette-color-6);
    border-radius: 12px;
    font-size: 1rem;
    transition: border 0.3s ease;
    background-color: var(--theme-palette-color-7);
    color: var(--theme-palette-color-3);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--theme-palette-color-1);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================= */
/* RESPONSIVE DESIGN                         */
/* ========================================= */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero .buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero .buttons .btn {
        width: 100%;
        justify-content: center;
    }

    section {
        padding: 80px 0;
    }


    .stats {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }
}