@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ===================== BASE RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
}

/* ===================== SECTION HEADER STYLE (Reference) ===================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #292423;
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    color: #292423;
}

.section-title--white {
    color: #ffffff;
}

.section-subtitle--white {
    color: rgba(255, 255, 255, 0.6);
}

.section-description {
    max-width: 580px;
    margin: 1.25rem auto 0;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.75;
}

.section-description--white {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================== MOBILE DRAWER ===================== */
#mobile-drawer.open {
    transform: translateX(0);
}

/* ===================== HERO ANIMATIONS ===================== */
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 0.8s ease-out forwards;
}

.hero-animate:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-animate:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-animate:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-animate:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== SCROLL REVEAL ANIMATIONS ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===================== SERVICE CARD HOVER ===================== */
.service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(41, 36, 35, 0.08);
}

/* ===================== STAT COUNTER ===================== */
.stat-item {
    transition: transform 0.3s ease;
}

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

/* ===================== CTA BUTTONS ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #F78E37;
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(247, 142, 55, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: #292423;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border: 2px solid #292423;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #292423;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary--white {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary--white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ===================== TESTIMONIAL STRIP ===================== */
.testimonial-strip {
    position: relative;
    overflow: hidden;
}

.testimonial-strip::before,
.testimonial-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.testimonial-strip::before {
    left: 0;
    background: linear-gradient(to right, #F7F7F5, transparent);
}

.testimonial-strip::after {
    right: 0;
    background: linear-gradient(to left, #F7F7F5, transparent);
}

/* ===================== MOBILE NAV LINK HOVER EFFECT ===================== */
.mobile-nav-link {
    position: relative;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 3px;
    background-color: #F78E37;
    border-radius: 999px;
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* ===================== SMOOTH SCROLL ===================== */
html {
    scroll-behavior: smooth;
}
