/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

.container{
    width:min(90%,1300px);
    margin:auto;
}

/* ==========================================================
   COLORS
========================================================== */

:root{

    --blue:#0F3560;
    --light-blue:#EEF5FC;
    --yellow:#F4C542;
    --light-grey:#F7F7F7;
    --white:#ffffff;

}

/* ==========================================================
   HEADER
========================================================== */

header{

    position:sticky;
    top:0;
    z-index:1000;

    background:var(--blue);
    padding:18px 0;

}

.nav{

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;

}

/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;
    align-items:center;
    gap:12px;

}

.logo img{

    width:34px;

}

.logo h2{

    color:white;
    font-family:'Montserrat',sans-serif;
    letter-spacing:2px;
    font-size:28px;
    white-space:nowrap;

}

/* ==========================================================
   NAVIGATION
========================================================== */

nav{

    display:flex;
    gap:28px;

}

nav a{

    color:white;
    text-decoration:none;
    transition:.3s;
    font-weight:500;

}

nav a:hover{

    color:var(--yellow);

}

/* ==========================================================
   BUTTON
========================================================== */

.btn{

    background:var(--yellow);
    color:var(--blue);

    text-decoration:none;
    font-weight:700;

    padding:13px 24px;

    border-radius:8px;

    transition:.25s;

    white-space:nowrap;

}

.btn:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    height:85vh;

    background:url("../images/main.jpeg") center/cover no-repeat;

}

.hero-overlay{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    background:linear-gradient(
        90deg,
        rgba(15,53,96,.92),
        rgba(15,53,96,.45)
    );

}

.hero-content{

    width:min(90%,1300px);
    margin:auto;

    color:white;

}

.hero h1{

    font-family:'Montserrat',sans-serif;
    font-size:72px;
    line-height:1.1;
    max-width:700px;

}

.hero span{

    color:var(--yellow);

}

.hero p{

    margin-top:30px;

    max-width:550px;

    font-size:22px;
    line-height:1.7;

}

/* ==========================================================
   ABOUT
========================================================== */

.about{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;

    padding:100px 0;

    align-items:center;

}

.about h2{

    font-family:'Montserrat',sans-serif;
    color:var(--blue);

    font-size:42px;

    margin-bottom:28px;

}

.about p{

    line-height:1.8;
    font-size:16px;

}

.about img{

    width:100%;
    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* Optional list styling if you replace the <br> layout */

.about ul{

    margin-top:20px;
    padding-left:22px;

}

.about li{

    margin-bottom:12px;
    line-height:1.7;

}


/* ==========================================================
   GALLERY
========================================================== */

.gallery{

    padding:100px 0;
    background:var(--light-blue);

}

.gallery h2{

    text-align:center;
    color:var(--blue);

    font-family:'Montserrat',sans-serif;
    font-size:42px;

    margin-bottom:50px;

}

.carousel-container{

    width:min(92%,1400px);
    margin:auto;

    display:flex;
    align-items:center;
    gap:20px;

}

.carousel{

    overflow:hidden;
    width:100%;

}

.gallery-grid{

    display:flex;
    gap:20px;

    transition:.4s ease;

}

.gallery-grid img{

    width:calc(33.333% - 14px);
    height:320px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;

    flex-shrink:0;

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

.carousel-btn{

    width:56px;
    height:56px;

    border:none;
    border-radius:50%;

    background:var(--yellow);

    color:var(--blue);

    font-size:28px;

    cursor:pointer;

    transition:.25s;

    flex-shrink:0;

}

.carousel-btn:hover{

    transform:scale(1.08);

}

.carousel-btn:disabled{

    opacity:.4;
    cursor:not-allowed;
    transform:none;

}

/* ==========================================================
   LIGHTBOX
========================================================== */

.lightbox{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;
    align-items:center;

    background:rgba(0,0,0,.92);

    z-index:9999;

}

.lightbox.active{

    display:flex;

}

.lightbox img{

    max-width:85%;
    max-height:85%;

    border-radius:15px;

}

.lightbox-btn{

    position:absolute;

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:var(--yellow);

    color:var(--blue);

    font-size:30px;

    cursor:pointer;

}

.prev-lightbox{

    left:35px;

}

.next-lightbox{

    right:35px;

}

.close-lightbox{

    position:absolute;

    top:25px;
    right:35px;

    background:none;
    border:none;

    color:white;

    font-size:50px;

    cursor:pointer;

}

/* ==========================================================
   PRICES
========================================================== */

.prices{

    padding:100px 0;

}

.prices h2{

    text-align:center;

    color:var(--blue);

    font-family:'Montserrat',sans-serif;

    font-size:42px;

    margin-bottom:55px;

}

.prices-content{

    display:grid;

    grid-template-columns:0.9fr 1.1fr;

    gap:40px;

    align-items:start;

}

/* ==========================================================
   IMAGE
========================================================== */

.prices-image img{

    width:100%;
    height:470px;

    object-fit:cover;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

/* ==========================================================
   TABLE
========================================================== */

.prices-table{

    width:100%;

}

.prices-table table{

    width:100%;

    border-collapse:collapse;

    background:white;

    overflow:hidden;

    border-radius:15px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

.prices-table th{

    background:var(--blue);

    color:white;

    padding:14px;

    font-family:'Montserrat',sans-serif;

    font-size:18px;

}

.prices-table td{

    padding:14px 16px;

    border-bottom:1px solid #ececec;

    vertical-align:top;

}

.prices-table tr:last-child td{

    border-bottom:none;

}

.prices-table td:last-child{

    width:90px;

    text-align:center;

    white-space:nowrap;

    font-weight:700;

    color:var(--blue);

    font-size:17px;

}

.item-title{

    display:block;

    color:var(--blue);

    font-weight:700;

    font-size:18px;

    margin-bottom:4px;

}

.item-desc{

    display:block;

    color:#666;

    font-size:15px;

    line-height:1.5;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .prices-content{

        grid-template-columns:1fr;

        gap:30px;

        padding:0;

    }

    .prices-image img{

        height:340px;

    }

}

@media (max-width:768px){

    .gallery{

        padding:70px 0;

    }

    .gallery h2{

        font-size:32px;

    }

    .gallery-grid img{

        width:calc(50% - 10px);
        height:230px;

    }

    .carousel-container{

        gap:10px;

    }

    .carousel-btn{

        width:44px;
        height:44px;

        font-size:22px;

    }

    .prices{

        padding:70px 0;

    }

    .prices h2{

        font-size:32px;

    }

    .prices-table td{

        padding:10px 10px;

    }

    .prices-table td:last-child{

        width:70px;
        font-size:15px;

    }

    .item-title{

        font-size:16px;

    }

    .item-desc{

        font-size:14px;

    }

    .lightbox img{

        max-width:94%;
        max-height:80%;

    }

    .prev-lightbox{

        left:10px;

    }

    .next-lightbox{

        right:10px;

    }

}

@media (max-width:480px){

    .gallery-grid img{

        width:100%;
        height:220px;

    }

    .prices-table td{

        padding:8px;

    }

    .prices-table td:last-child{

        width:60px;
        font-size:14px;

    }

    .item-title{

        font-size:15px;

    }

    .item-desc{

        font-size:13px;
        line-height:1.4;

    }

}


/* ==========================================================
   SERVICES
========================================================== */

.infos{

    background:var(--light-grey);
    padding:100px 0;

}

.cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:white;

    padding:35px 25px;

    text-align:center;

    border-radius:15px;

    box-shadow:0 5px 20px rgba(0,0,0,.06);

    font-weight:600;

    transition:.25s;

}

.card:hover{

    transform:translateY(-5px);

}

/* ==========================================================
   GOOGLE MAPS
========================================================== */

.map-section{

    padding:100px 0;

}

.map-section h2{

    text-align:center;

    color:var(--blue);

    font-family:'Montserrat',sans-serif;

    font-size:42px;

    margin-bottom:40px;

}

.map-container{

    width:min(90%,1300px);

    margin:auto;

}

.map-container iframe{

    width:100%;
    height:500px;

    border:none;

    border-radius:15px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

/* ==========================================================
   FOOTER
========================================================== */

footer{

    background:var(--blue);

    color:white;

    text-align:center;

    padding:60px 20px;

}

footer h3{

    font-family:'Montserrat',sans-serif;

    margin-bottom:20px;

    font-size:28px;

}

footer p{

    margin-top:10px;

    line-height:1.6;

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:992px){

    .about{

        grid-template-columns:1fr;
        gap:40px;

    }

    .about h2{

        font-size:36px;

    }

    .hero h1{

        font-size:56px;

    }

    .cards{

        grid-template-columns:repeat(2,1fr);

    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

/* HEADER */

header{
    padding:12px 0;
}

.nav{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
}

.logo{
    justify-content:center;
}

.logo h2{
    font-size:22px;
    letter-spacing:1px;
    text-align:center;
}

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px 18px;
}

nav a{
    font-size:15px;
}

.btn{
    width:auto;
    max-width:none;
    padding:10px 18px;
    font-size:15px;
}
    /* HERO */

    .hero{

        height:65vh;

    }

    .hero-content{

        text-align:center;

    }

    .hero h1{

        font-size:42px;

        margin:auto;

    }

    .hero p{

        font-size:18px;

        margin:25px auto 0;

    }

    /* ABOUT */

    .about{

        padding:70px 0;

    }

    .about h2{

        font-size:32px;

    }

    .about p{

        font-size:15px;

    }

    /* SERVICES */

    .infos{

        padding:70px 0;

    }

    .cards{

        grid-template-columns:1fr;

        gap:20px;

    }

    .card{

        padding:28px 20px;

    }

    /* MAP */

    .map-section{

        padding:70px 0;

    }

    .map-section h2{

        font-size:32px;

    }

    .map-container iframe{

        height:350px;

    }

    /* FOOTER */

    footer{

        padding:50px 20px;

    }

    footer h3{

        font-size:24px;

    }

}

/* ==========================================================
   SMALL PHONES
========================================================== */

@media (max-width:480px){

    .container{

        width:94%;

    }

    .logo img{

        width:28px;

    }

    .logo h2{

        font-size:18px;

    }

    .btn{

        font-size:14px;
        padding:10px 14px;

    }

    .hero{

        height:60vh;

    }

    .hero h1{

        font-size:32px;
        line-height:1.15;

    }

    .hero p{

        font-size:16px;

    }

    .about{

        padding:60px 0;

    }

    .about h2{

        font-size:28px;

    }

    .about p{

        font-size:14px;

    }

    .card{

        padding:24px 18px;

        font-size:15px;

    }

    .map-container iframe{

        height:280px;

    }

    footer h3{

        font-size:20px;

    }

    footer p{

        font-size:14px;

    }

}

footer a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

footer a:hover{
    color:var(--yellow);
}


.about .about-space{
    display:block;
    margin-top:20px;
}