*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#F6F3EE;
    color:#222;
    overflow-x:hidden;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
    background:rgba(0,0,0,0.2);
    backdrop-filter:blur(10px);
}

.logo{
    font-family:'Playfair Display', serif;
    color:white;
    font-size:24px;
    font-weight:600;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:15px;
    transition:0.3s;
}

nav a:hover{
    opacity:0.7;
}

/* HERO */
.hero-slider {
    width: 100%;
    height: 100vh;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.35);

    z-index: 1;
}

.hero-content {

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    text-align: center;

    color: white;

    z-index: 2;
}

.hero-content h1 {

    font-size: 4rem;

    margin-bottom: 20px;
}

.hero-content p {

    font-size: 1.2rem;
}

/* BUTTONS */

.btn-primary{
    background:#1F3A36;
    color:white;
    padding:16px 32px;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s;
    font-weight:500;
}

.btn-primary:hover{
    transform:translateY(-3px);
    background:#2D5D7B;
}

.btn-secondary{
    border:1px solid white;
    color:white;
    padding:16px 32px;
    text-decoration:none;
    border-radius:40px;
    transition:0.3s;
}

.btn-secondary:hover{
    background:white;
    color:#222;
}

/* GENERAL SECTIONS */

section{
    padding:120px 8%;
}

.section-tag{
    letter-spacing:3px;
    font-size:12px;
    color:#777;
    margin-bottom:20px;
    display:block;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-family:'Playfair Display', serif;
    font-size:48px;
    max-width:700px;
    margin:auto;
    line-height:1.3;
}

/* ABOUT */

.about-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
}

.about-content h2{
    font-family:'Playfair Display', serif;
    font-size:52px;
    line-height:1.3;
    margin-bottom:30px;
}

.about-content p{
    margin-bottom:25px;
    line-height:1.9;
    color:#555;
    font-size:17px;
}

/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    padding:50px 35px;
    border-radius:20px;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    font-family:'Playfair Display', serif;
    font-size:30px;
    margin-bottom:20px;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

/* NATURE */

.nature-section{
    height:70vh;
    background:url('images/forest.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.nature-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.nature-content{
    position:relative;
    z-index:2;
    color:white;
    text-align:center;
}

.nature-content h2{
    font-family:'Playfair Display', serif;
    font-size:60px;
}

/* TESTIMONIALS */

.testimonialSwiper{

    width:100%;

    margin-top:50px;

    padding-bottom:60px;
}

.testimonial-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

    max-width:800px;

    margin:auto;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    text-align:center;
}

.testimonial-card h4{

    margin-bottom:15px;
}

.testimonial-card p{

    font-size:1.1rem;

    line-height:1.8;

    color:#444;

    margin-bottom:20px;
}

.testimonial-card span{

    color:#888;

    font-size:.95rem;
}

/* CTA */

.cta-section{
    position:relative;
    background:url('images/mountain.jpg') center/cover no-repeat;
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.cta-content{
    position:relative;
    z-index:2;
    color:white;
    max-width:800px;
    padding:0 20px;
}

.cta-section h2{
    font-family:'Playfair Display', serif;
    font-size:58px;
    margin-bottom:40px;
}

/* FOOTER */

footer{
    background:#111;
    color:white;
    text-align:center;
    padding:50px 8%;
}

.footer-logo{
    font-family:'Playfair Display', serif;
    font-size:28px;
    margin-bottom:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero h1{
        font-size:52px;
    }

    .about-section{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .testimonials-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:38px;
    }

    .about-content h2{
        font-size:40px;
    }

    .nature-content h2{
        font-size:42px;
    }

    .cta-section h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        margin:10px;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero h1{
        font-size:42px;
    }

}

/* SCROLL REVEAL */

.about-section,
.services-section,
.testimonials-section,
.cta-section{
    opacity:0;
    transform:translateY(60px);
    transition:all 1s ease;
}

.about-section.active,
.services-section.active,
.testimonials-section.active,
.cta-section.active{
    opacity:1;
    transform:translateY(0);
}

/* WHATSAPP FLOAT */

.whatsapp-float{
    position:fixed;
    bottom:30px;
    right:30px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:32px;
    z-index:9999;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* SMOOTH IMAGE EFFECT */

.about-image img,
.service-card,
.testimonial-card{
    transition:0.5s;
}

.about-image img:hover{
    transform:scale(1.02);
}

.stats-section{

    display:flex;

    justify-content:center;

    gap:60px;

    padding:80px 40px;

    background:#f8f8f8;

    text-align:center;

    flex-wrap:wrap;
}

.stat-item h3{

    font-size:2.5rem;

    margin-bottom:10px;
}

.stat-item p{

    color:#666;
}

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    background:#25D366;

    color:white;

    text-decoration:none;

    z-index:999;

    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.1);
    }

    100%{
        transform:scale(1);
    }
}

.process-section{

    padding:100px 40px;

    text-align:center;
}

.process-grid{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:50px;
}

.process-card{

    width:220px;

    padding:30px;

    background:white;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.process-card h3{

    font-size:3rem;
}

.andrea-quote{

    margin-top:30px;

    padding-left:20px;

    border-left:4px solid #c8a97e;

    font-style:italic;

    color:#555;
}