/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    color:#111111;
    overflow-x:hidden;
}

/* =========================
   VARIABLES
========================= */

:root{

    --primary:#d90429;
    --primary-dark:#a1031f;

    --blue:#74c0fc;

    --white:#ffffff;
    --black:#111111;

    --gray:#f4f4f4;
    --gray-dark:#777777;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --radius:20px;

    --transition:.3s ease;

}

/* =========================
   GLOBAL
========================= */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:100px 0;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   HEADER
========================= */

.header{

    position:sticky;
    top:0;

    width:100%;

    z-index:999;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);

}

.navbar{

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 0;

}

/* =========================
   LOGO
========================= */

.logo{

    display:flex;
    align-items:center;
    gap:14px;

    color:var(--black);

}

.logo-icon{

    width:55px;
    height:55px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    font-weight:700;

    box-shadow:var(--shadow);

}

.logo-text{

    display:flex;
    flex-direction:column;

}

.logo-text span{

    font-size:24px;
    font-weight:700;

}

.logo-text small{

    color:var(--gray-dark);

    margin-top:-4px;

}

/* =========================
   NAV
========================= */

.nav-links{

    display:flex;
    gap:35px;

}

.nav-links a{

    color:var(--black);

    font-weight:500;

    position:relative;

    transition:var(--transition);

}

.nav-links a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-6px;

    width:0%;
    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

/* =========================
   WHATSAPP BUTTON
========================= */

.btn-whatsapp{

    background:var(--primary);

    color:white;

    padding:14px 22px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}

.btn-whatsapp:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}

/* =========================
   MOBILE BUTTON
========================= */

.menu-toggle{

    display:none;

    background:none;
    border:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;
    height:3px;

    background:var(--black);

    margin:5px 0;

    border-radius:10px;

}

/* =========================
   FOOTER
========================= */

.footer{

    background:#111111;

    color:white;

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:50px;

}

.footer h3,
.footer h4{

    margin-bottom:20px;

}

.footer p,
.footer li{

    color:#cccccc;

    margin-bottom:10px;

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding:25px 0;

    border-top:1px solid rgba(255,255,255,.1);

}

/* =========================
   BUTTONS
========================= */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:15px 28px;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:white;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    background:var(--blue);

    color:#111111;

}

.btn-secondary:hover{

    transform:translateY(-3px);

}

/* =========================
   SECTION TITLE
========================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:15px;

}

.section-title p{

    color:var(--gray-dark);

}

/* =========================
   HERO
========================= */

.hero{

    height:100vh;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url('../img/hero/hero-greacy.png');

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;

}

.hero-container{

    position:relative;
    z-index:2;

}

.hero-content{

    max-width:750px;
    color:white;

}

.hero-badge{

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:12px 20px;

    border-radius:50px;

    display:inline-block;

    margin-bottom:25px;

    font-weight:500;

}

.hero-content h1{

    font-size:72px;
    line-height:1.1;

    margin-bottom:25px;

}

.hero-content p{

    font-size:20px;
    line-height:1.8;

    margin-bottom:40px;

    color:#f0f0f0;

}

.hero-buttons{

    display:flex;
    gap:20px;

}

/* =========================
   TOURS
========================= */

.tours-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.tour-card{

    background:white;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.tour-card:hover{

    transform:translateY(-10px);

}

.tour-image{

    position:relative;

    overflow:hidden;

}

.tour-image img{

    height:260px;

    object-fit:cover;

    transition:var(--transition);

}

.tour-card:hover img{

    transform:scale(1.06);

}

.tour-time{

    position:absolute;

    bottom:15px;
    left:15px;

    background:var(--primary);

    color:white;

    padding:10px 16px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

}

.tour-content{

    padding:30px;

}

.tour-content h3{

    font-size:26px;

    margin-bottom:15px;

}

.tour-content p{

    color:var(--gray-dark);

    line-height:1.8;

    margin-bottom:30px;

}

.tour-buttons{

    display:flex;
    gap:15px;

}

/* =========================
   BENEFITS
========================= */

.benefits{

    background:var(--gray);

}

.benefits-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.benefit-card{

    background:white;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow);

    text-align:center;

    transition:var(--transition);

}

.benefit-card:hover{

    transform:translateY(-8px);

}

.benefit-icon{

    font-size:42px;

    margin-bottom:20px;

}

.benefit-card h3{

    margin-bottom:15px;

}

/* =========================
   GALLERY
========================= */

.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap:20px;

}

.gallery-grid img{

    height:280px;

    object-fit:cover;

    border-radius:20px;

    transition:var(--transition);

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

/* =========================
   CTA
========================= */

.cta{

    background:
        linear-gradient(
            rgba(0,0,0,.7),
            rgba(0,0,0,.7)
        ),
        url('../img/hero/hero.png');

    background-size:cover;
    background-position:center;

}

.cta-box{

    text-align:center;

    color:white;

    max-width:850px;

    margin:auto;

}

.cta-box h2{

    font-size:52px;

    margin-bottom:20px;

}

.cta-box p{

    font-size:20px;

    margin-bottom:35px;

    color:#dddddd;

}

/* =========================
   PAGE HERO
========================= */

.page-hero{

    height:60vh;

    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url('../img/hero/hero.png');

    background-size:cover;
    background-position:center;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

}

.page-overlay{

    position:absolute;
    inset:0;

}

.page-hero-content{

    position:relative;
    z-index:2;

    color:white;

    max-width:850px;

}

.page-hero-content h1{

    font-size:64px;

    margin-bottom:20px;

}

.page-hero-content p{

    font-size:20px;

    color:#eeeeee;

}

/* =========================
   TOUR PLACES
========================= */

.tour-places{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.tour-places span{

    background:#f3f3f3;

    padding:10px 16px;

    border-radius:50px;

    font-size:14px;

    color:#444444;

}

/* =========================
   ALL TOURS
========================= */

.all-tours{

    background:white;

}

/* =========================
   TOUR HERO
========================= */

.tour-hero{

    height:70vh;

    background:
        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),
        url('../img/hero/hero.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;

    position:relative;

}

.tour-hero-overlay{

    position:absolute;
    inset:0;

}

.tour-hero-content{

    position:relative;
    z-index:2;

    color:white;

    max-width:800px;

}

.tour-hero-content h1{

    font-size:68px;

    margin:25px 0;

}

.tour-hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#eeeeee;

}

/* =========================
   TOUR DETAILS
========================= */

.tour-details{

    background:white;

}

.tour-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

}

/* =========================
   DESCRIPTION
========================= */

.tour-description{

    margin-bottom:50px;

}

.tour-description h2{

    font-size:42px;

    margin-bottom:25px;

}

.tour-description p{

    color:#555555;

    line-height:1.9;

    margin-bottom:20px;

}

/* =========================
   INCLUDED
========================= */

.included-section{

    margin-bottom:50px;

}

.included-section h3{

    font-size:32px;

    margin-bottom:30px;

}

.included-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

.included-card{

    background:#f7f7f7;

    padding:24px;

    border-radius:18px;

    font-weight:500;

    transition:var(--transition);

}

.included-card:hover{

    background:var(--primary);

    color:white;

    transform:translateY(-5px);

}

/* =========================
   RECOMMENDATIONS
========================= */

.recommendations h3{

    font-size:32px;

    margin-bottom:25px;

}

.recommendations ul{

    display:flex;
    flex-direction:column;

    gap:18px;

}

.recommendations li{

    background:#f7f7f7;

    padding:20px;

    border-radius:16px;

}

/* =========================
   SIDEBAR
========================= */

.sidebar-card{

    position:sticky;

    top:120px;

    background:white;

    border-radius:24px;

    padding:35px;

    box-shadow:var(--shadow);

}

.sidebar-card h3{

    margin-bottom:30px;

    font-size:28px;

}

.sidebar-item{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid #eeeeee;

}

.sidebar-item span{

    color:#666666;

}

.sidebar-btn{

    width:100%;

    margin-top:20px;

}

/* =========================
   RESERVATIONS
========================= */

.reservation-page{

    background:#f7f7f7;

}

.reservation-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

}

.reservation-box{

    background:white;

    padding:50px;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:10px;

    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    padding:18px;

    border-radius:14px;

    border:1px solid #dddddd;

    font-family:inherit;

    font-size:15px;

    transition:var(--transition);

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

}

.full-width{

    grid-column:1 / -1;

}

.reservation-alert{

    background:#fff4e5;

    color:#8a5b00;

    padding:20px;

    border-radius:16px;

    margin:30px 0;

    line-height:1.7;

}

.submit-btn{

    width:100%;

    border:none;

    cursor:pointer;

    font-size:16px;

}

.reservation-sidebar{

    position:relative;

}

.reservation-info{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin:30px 0;

}

.reservation-info li{

    background:#f7f7f7;

    padding:18px;

    border-radius:14px;

}

/* =========================
   CONTACT
========================= */

.contact-section{

    background:#f7f7f7;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.contact-info-box,
.contact-form-box{

    background:white;

    padding:50px;

    border-radius:24px;

    box-shadow:var(--shadow);

}

.contact-info-box h2,
.contact-form-box h2{

    font-size:36px;

    margin-bottom:20px;

}

.contact-info-box p{

    color:#666666;

    line-height:1.8;

}

.contact-cards{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin:40px 0;

}

.contact-card{

    background:#f7f7f7;

    padding:25px;

    border-radius:18px;

}

.contact-card h3{

    margin-bottom:10px;

}

.whatsapp-contact-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    height:60px;

    background:#25d366;

    color:white;

    text-decoration:none;

    border-radius:16px;

    font-weight:600;

    transition:.3s;

}

.whatsapp-contact-btn:hover{

    transform:translateY(-3px);

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.map-section iframe{

    width:100%;

    height:500px;

    border:none;

}

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25d366;

    color:white;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:28px;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

    z-index:999;

}