.hero {
    position: relative;
    min-height: calc(80vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:1;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:2;
}

.hero-content{
    position:relative;
    z-index:3;
    max-width:700px;
}

.hero h1{
    font-size:48px;
    font-weight:600;
}

.hero h1 span{
    color:#C6A75E;
}

.hero p{
    margin-top:20px;
    font-size:18px;
    opacity:0.9;
}

.hero-buttons{
    margin-top:30px;
}

.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #4A403A;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    color: #4A403A;
    line-height: 1.5;
}

.why-section{
    padding:100px 0;
    background:#F5F1EB;
    text-align:center;
}

.section-pretitle{
    font-size:14px;
    letter-spacing:1px;
    color:#4A403A;
    margin-bottom:10px;
    display:block;
}

.why-header h2{
    font-size:40px;
    margin-bottom:20px;
}

.why-header p{
    max-width:720px;
    margin:0 auto 60px;
    color:#4A403A;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    margin-bottom:70px;
}

.why-icon{
    width:60px;
    height:60px;
    background:#C6A75E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 20px;
    font-size:22px;
}

.why-card h3{
    font-size:18px;
    margin-bottom:10px;
}

.why-card p{
    color:#4A403A;
    line-height:1.6;
}

.why-cta h3{
    font-size:28px;
    margin-bottom:15px;
}

.why-cta p{
    max-width:600px;
    margin:0 auto;
    color:#4A403A;
}

.cta-section{
    padding:120px 0;
    background:#C6A75E;
}

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

.cta-content h2{
    font-size:44px;
    margin-bottom:20px;
    color:#2f2f2f;
}

.cta-content h2 em{
    font-style:italic;
    color:#f6efe0;
}

.cta-content em{
    font-style:italic;
}

.cta-content p{
    color:#1E1E1E;
    margin-bottom:20px;
    line-height:1.6;
}

.cta-stats{
    display:flex;
    gap:50px;
    margin:30px 0;
}

.cta-stat strong{
    display:block;
    font-size:28px;
}

.cta-stat span{
    font-size:13px;
    text-transform:uppercase;
    color:#4A403A;
}

.btn-dark{
    background:#1E1E1E;
    color:#fff;
    padding:14px 26px;
    border-radius:8px;
    text-decoration:none;
}

.cta-image{
    position:relative;
}

.cta-image img{
    width:100%;
    border-radius:14px;
}

.cta-review{
    position:absolute;
    bottom:20px;
    left:20px;
    right:20px;
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(6px);
    padding:18px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:14px;
}

.review-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
}

.review-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.review-content span{
    display:block;
    font-size:13px;
    color:#4A403A;
}

/* ---------- TABLET ---------- */

@media (max-width:1024px){

    .hero h1{
        font-size:40px;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .cta-content{
        max-width:700px;
    }

    .cta-image{
        max-width:700px;
        margin:0 auto;
    }

}

/* ---------- SMALL TABLET ---------- */

@media (max-width:768px){

    .hero{
        padding:80px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .section-header h2{
        font-size:30px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .service-image img{
        height:220px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .cta-stats{
        flex-wrap:wrap;
        gap:30px;
    }

    .cta-content h2{
        font-size:36px;
    }

}

/* ---------- MOBILE ---------- */

@media (max-width:480px){

    .hero{
        min-height:60vh;
    }

    .hero h1{
        font-size:28px;
    }

    .hero-buttons{
        margin-top:20px;
    }

    .section-header{
        margin-bottom:40px;
    }

    .services-section{
        padding:70px 0;
    }

    .why-section{
        padding:70px 0;
    }

    .cta-section{
        padding:80px 0;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-review{
        position:relative;
        left:auto;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }

    .cta-image img{
        border-radius:10px;
    }

}