*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family:'poppins',sans-serif ;
    font-size: .938rem;
    font-weight: 500;
    background-color:hsl(210,55%,85%);
    color: hsl(210,24%,15%);
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
}
img{
    display: block;
    max-width: 100%;
    height: auto;
}

.container{
    max-width: 1120px;
    margin-inline: 1.5rem;
}
.main{
    overflow: hidden;
}

.header{
    width: 100%;
    background-color: hsl(210,55%,85%);
    z-index: 100;
}
.nav{
    position: relative;
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 8px;
}
.nav__logo{
    width: 32px;

}
.nav__logo img{
    border-radius: 50%;
    width: 100%;
}
.nav__toggle, .nav__close{
    display: none;
    font-size: 1.25rem;
    color: hsl(210,52%,20%);
    cursor: pointer;
}
.nav__logo{
    width: 42px;       
    min-width: 42px;
}

.nav__logo img{
    width: 100%;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
}



@media screen and (max-width: 1024px){
    .nav__menu{
        display: none !important;
    }
    
    .nav__toggle{
        display: inline-flex !important;
    }
    
    .mobile-nav{
        display: block;
    }
    

    
    .container{
        margin-inline: 2rem;
    }
    
    .nav{
        height: calc(3.5rem + 1.5rem);
    }
    

    
    .home__title{
        font-size: 2.3rem;
    }
    
    .home__content{
        max-width: 500px;
    }
    
    .home__button{
        display: inline-flex;
        padding: 1rem 1.5rem;
        font-size: .9rem;
        min-height: 44px;
        min-width: 100px;
    }
    
    .about__features{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing__packages{
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location__content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.nav__list{
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 2rem;
}

.nav__link{
    color: hsl(210,52%,20%);
    transition: all .3s;
    padding: 1.2rem 2rem;
    border-radius: .75rem;
    font-weight: 500;
    min-height: 48px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.nav__link:hover{
    color: hsl(195,100%,30%);
    background-color: hsla(195,100%,30%,.1);
    transform: translateY(-2px);
}

.nav__button-link, .nav__button-ghost{
    display: inline-block;
    color: hsl(210,52%,20%);
}
.nav__button-ghost{
    background-color: transparent;
    padding: 1.2rem 2.5rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: .75rem;
    transition: all .3s;
    font-weight: 500;
    min-height: 48px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav__button-ghost:hover{
    background-color: hsl(210,52%,20%);
    color: white;
    transform: translateY(-2px);
}

.nav__social-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 2px solid hsl(210,52%,20%);
    border-radius: 50%;
    color: hsl(210,52%,20%);
    font-size: 1.2rem;
    transition: all .3s;
    margin-left: .5rem;
}

.nav__social-btn:hover{
    background-color: hsl(210,52%,20%);
    color: white;
    transform: translateY(-2px);
}

.nav__buttons{
    display: flex;
    align-items: center;
    gap: .5rem;
}
.nav__close{
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.show-menu{
    top: 0;
}

/* Secondary Mobile Navigation */
.mobile-nav{
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, hsl(210,55%,85%), hsl(195,100%,90%));
    z-index: 1000;
    transition: left .4s ease;
    box-shadow: 2px 0 16px hsla(210,55%,24%,.2);
    display: none;
}

@media screen and (max-width: 1024px){
    .mobile-nav{
        display: block;
    }
}

.mobile-nav.show-mobile-nav{
    left: 0;
}

.mobile-nav__container{
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid hsl(210,52%,20%);
}

.mobile-nav__logo{
    width: 50px;
}

.mobile-nav__logo img{
    border-radius: 50%;
    width: 100%;
}

.mobile-nav__close{
    display: inline-flex;
    font-size: 1.5rem;
    color: hsl(210,52%,20%);
    cursor: pointer;
    padding: .5rem;
    border-radius: 50%;
    transition: all .3s;
}

.mobile-nav__close:hover{
    background-color: hsla(210,52%,20%,.1);
    transform: rotate(90deg);
}

.mobile-nav__list{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.mobile-nav__link{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: hsl(210,52%,20%);
    padding: 1.2rem 1.5rem;
    border-radius: .75rem;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all .3s;
    text-decoration: none;
    min-height: 56px;
}

.mobile-nav__link:hover{
    background-color: hsla(210,52%,20%,.1);
    transform: translateX(8px);
}

.mobile-nav__link--active{
    background-color: hsla(210,52%,20%,.2);
    font-weight: 600;
    transform: translateX(4px);
}

.mobile-nav__link--contact{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    margin-top: 1rem;
}

.mobile-nav__link--contact:hover{
    background: linear-gradient(90deg, hsl(210,55%,15%),hsl(192,62%,20%));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 16px hsla(210,54%,24%,.3);
}

.mobile-nav__link i{
    font-size: 1.3rem;
    min-width: 24px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: hsla(0,0%,0%,.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

.mobile-nav-overlay.show-overlay{
    opacity: 1;
    visibility: visible;
}



@media screen and (max-width: 305px) {
    .container{
        margin-inline: 1rem;
    }
    .home__title{
        font-size: 2rem;
    }
    
}
@media screen and (min-width: 376px) and (min-height:800px) {
    .home__container{
        padding-top: 10rem;
    }
    .home__images{
        width: 700px;
        left: -12rem;
    }
    
}

@media screen and (min-width: 480px) {
    .home__content{
        max-width: 305px;
    }

    .home__images img{
        width: initial;
        left: 0;
    }
    
}

/* Desktop/Laptop baseline */
@media screen and (min-width: 1025px){
    .nav{
        height: calc(3.5rem + 2rem);
        column-gap: 4rem;
    }
    .nav__toggle, .nav__close{
        display: none;
    }
    .nav__menu{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav__list{
        flex-direction: row;
        column-gap: 2rem;
    }
    .nav__buttons{
        flex-direction: row;
        column-gap: 3rem;
    }

    .home__content{
        max-width: 550px;
    }
    .home__data{
        row-gap: 1rem;
    }
    .home__subtitle{
        font-size: .938rem;
    }
    .home__description{
        margin-bottom: 3rem;
    }
    .home__button{
        padding: .6rem 1rem;
        font-size: .85rem;
        min-height: 36px;
        min-width: 40px;
    }
    .about__features{
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width:1120px) {
    .container{
        margin-inline: auto;
    }
}
@media screen and (min-width: 1300px){
    .home__container{
        height: 950px;
        padding-top: 10rem;
    }

    .home__images img{
        bottom: -3rem;
    }

    ::-webkit-scrollbar{
        width: .6rem;
        border-radius: .5rem;
        background-color: hsl(220,24%,15%);
    }
    ::-webkit-scrollbar-thumb{
        border-radius: .5rem;
        background-color: hsl(220,24%,25%);
    }

}
.contact{
    padding: 4rem 0;
    min-height: 100vh;
}

.contact__container{
    max-width: 600px;
    margin: 0 auto;
}

.contact__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 1rem;
}

.contact__description{
    text-align: center;
    color: hsl(210,24%,15%);
    margin-bottom: 3rem;
}

.contact__form{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.form__group{
    margin-bottom: 1.5rem;
}

.form__label{
    display: block;
    color: hsl(210,52%,20%);
    font-weight: 500;
    margin-bottom: .5rem;
}

.form__input{
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: .5rem;
    background-color: transparent;
    color: hsl(210,52%,20%);
    font-family: 'poppins', sans-serif;
}

.form__input:focus{
    outline: none;
    border-color: hsl(195,100%,30%);
}

.form__dates{
    margin-bottom: 2rem;
}

.form__guests{
    margin-bottom: 2rem;
}

.form__subtitle{
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dates__row, .guests__row{
    display: flex;
    gap: 1rem;
}

.date__group, .guest__group{
    flex: 1;
}

.form__button{
    width: 100%;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2rem;
    border: none;
    border-radius: .75rem;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 56px;
    transition: all .3s;
    position: relative;
}

.form__button:hover{
    transform: translateY(-2px);
}

.about{
    padding: 4rem 0;
    min-height: 100vh;
}

.about__container{
    max-width: 800px;
    margin: 0 auto;
}

.about__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 3rem;
}

.about__section{
    margin-bottom: 3rem;
}

.about__subtitle{
    font-size: 1.5rem;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.about__text{
    color: hsl(210,24%,15%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about__features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
    text-align: center;
}

.feature__icon{
    font-size: 2.5rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1rem;
}

.feature__title{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.feature__text{
    color: hsl(210,24%,15%);
    font-size: .9rem;
}

.about__cta{
    text-align: center;
    margin-top: 3rem;
}

.about__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
    position: relative;
}

.about__button:hover{
    transform: translateY(-2px);
}

.activities__list, .why__list{
    margin-top: 1rem;
}

.activity__item, .why__item{
    color: hsl(210,24%,15%);
    margin-bottom: .5rem;
    line-height: 1.5;
}

.thank-you{
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you__container{
    max-width: 600px;
    margin: 0 auto;
}

.thank-you__content{
    text-align: center;
    background-color: hsla(0,0%,100%, .3);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.thank-you__icon{
    font-size: 4rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1.5rem;
}

.thank-you__title{
    font-size: 2rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.thank-you__message{
    color: hsl(210,24%,15%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thank-you__details{
    margin-bottom: 2rem;
}

.thank-you__subtitle{
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.thank-you__list{
    text-align: left;
    color: hsl(210,24%,15%);
    line-height: 1.6;
}

.thank-you__list li{
    margin-bottom: .5rem;
}

.thank-you__actions{
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you__button{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
}

.thank-you__button-secondary{
    background-color: transparent;
    color: hsl(210,52%,20%);
    padding: 1rem 2rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
}

.thank-you__button:hover, .thank-you__button-secondary:hover{
    transform: translateY(-2px);
}

.gallery{
    padding: 4rem 0;
    min-height: 100vh;
}

.gallery__container{
    max-width: 1200px;
    margin: 0 auto;
}

.gallery__header{
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.gallery__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.gallery__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery__item{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid hsl(210,52%,20%);
    background-color: hsla(0,0%,100%, .3);
    transition: transform .3s ease;
}

.gallery__item:hover{
    transform: translateY(-5px);
}

.gallery__item--large{
    grid-column: span 2;
}

.gallery__item--wide{
    grid-column: span 2;
}

.gallery__image{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery__video{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery__item--large .gallery__image{
    height: 300px;
}

.gallery__overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, hsla(210,52%,20%,.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.gallery__item:hover .gallery__overlay{
    transform: translateY(0);
}

.gallery__item-title{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: white;
}

.gallery__item-text{
    font-size: .9rem;
    color: hsla(0,0%,100%,.8);
}

.gallery__cta{
    text-align: center;
}

.gallery__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
    position: relative;
}

.gallery__button:hover{
    transform: translateY(-2px);
}

@media screen and (max-width: 768px){
    .gallery__item--large, .gallery__item--wide{
        grid-column: span 1;
    }
    
    .gallery__grid{
        grid-template-columns: 1fr;
    }
}

.pricing{
    padding: 4rem 0;
    min-height: 100vh;
}

.pricing__container{
    max-width: 1200px;
    margin: 0 auto;
}

.pricing__header{
    text-align: center;
    margin-bottom: 3rem;
}

.pricing__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.pricing__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.pricing__highlight{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
}

.highlight__title{
    font-size: 2rem;
    font-family: "lora", sans-serif;
    margin-bottom: 1rem;
}

.highlight__text{
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight__badge{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background-color: hsla(0,0%,100%,.2);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 500;
}

.pricing__packages{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package--single{
    border-color: hsl(195,100%,30%);
    box-shadow: 0 24px 32px hsla(210,54%,24%,.2);
}

.package--contact{
    background: linear-gradient(135deg, hsla(210,55%,20%,.1), hsla(192,62%,25%,.1));
    border-color: hsl(210,52%,20%);
}

.package__contact-info{
    text-align: center;
    margin-bottom: 1rem;
}

.package__contact-text{
    color: hsl(210,52%,20%);
    font-weight: 500;
    font-size: 1.1rem;
}

.package__contact-btn{
    margin-top: 1.5rem;
    text-align: center;
}

.contact-package-btn{
    display: inline-block;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 12px 24px hsla(210,54%,24%,.3);
    transition: transform .3s;
}

.contact-package-btn:hover{
    transform: translateY(-2px);
}

.discount__highlight{
    text-align: center;
}

.discount__main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.discount__main i{
    font-size: 2rem;
    color: hsl(195,100%,30%);
}

.discount__text{
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(210,52%,20%);
}

.discount__note{
    color: hsl(210,24%,15%);
    font-style: italic;
}

.package{
    background-color: hsla(0,0%,100%, .3);
    border: 2px solid hsl(210,52%,20%);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: transform .3s ease;
}

.package:hover{
    transform: translateY(-5px);
}

.package--featured{
    border-color: hsl(195,100%,30%);
    box-shadow: 0 24px 32px hsla(210,54%,24%,.2);
}

.package__badge{
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: .8rem;
    font-weight: 500;
}

.package__header{
    text-align: center;
    margin-bottom: 2rem;
}

.package__name{
    font-size: 1.5rem;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.package__price{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .25rem;
}

.package__currency{
    font-size: 1.2rem;
    color: hsl(195,100%,30%);
    font-weight: 500;
}

.package__amount{
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(210,52%,20%);
}

.package__period{
    color: hsl(210,24%,15%);
    font-size: .9rem;
}

.package__list{
    list-style: none;
}

.package__item{
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem;
    color: hsl(210,24%,15%);
}

.package__item i{
    color: hsl(195,100%,30%);
    font-size: 1.2rem;
}

.pricing__discount{
    background-color: hsla(0,0%,100%, .3);
    border: 2px solid hsl(210,52%,20%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.discount__title{
    text-align: center;
    color: hsl(210,52%,20%);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.discount__offers{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.discount__item{
    display: flex;
    align-items: center;
    gap: .75rem;
    color: hsl(210,24%,15%);
    font-weight: 500;
}

.discount__item i{
    color: hsl(195,100%,30%);
    font-size: 1.5rem;
}

.pricing__cta{
    text-align: center;
}

.cta__title{
    color: hsl(210,52%,20%);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__text{
    color: hsl(210,24%,15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 180px;
    transition: all .3s;
    position: relative;
}

.pricing__button:hover{
    transform: translateY(-2px);
}

/* Ultra Small Mobile (320px) */
@media screen and (max-width: 320px){
    .container{
        margin-inline: .5rem;
        max-width: 100%;
    }
    
    .nav{
        height: 3rem;
        padding: 0 .25rem;
    }
    
    .home__container{
        padding-top: .5rem;
        height: 100vh;
    }
    
    .home__title{
        font-size: 1.4rem;
        line-height: 1.1;
    }
    
    .home__subtitle{
        font-size: .6rem;
        letter-spacing: 1px;
    }
    
    .home__description{
        font-size: .8rem;
        margin-bottom: 1rem;
    }
    
    .home__button{
        padding: .8rem 1.5rem;
        font-size: .85rem;
        margin-bottom: 1rem;
    }
    
    .home__social-buttons{
        gap: .3rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .home__social-btn{
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 1px;
    }
    
    .home__images img{
        width: 450px;
        left: -5rem;
    }
}

/* Small Mobile (321px-360px) */
@media screen and (min-width: 321px) and (max-width: 360px){
    .container{
        margin-inline: .6rem;
    }
    
    .nav{
        height: 3.2rem;
    }
    
    .home__title{
        font-size: 1.5rem;
    }
    
    .home__social-btn{
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* Standard Mobile (361px-375px) */
@media screen and (min-width: 361px) and (max-width: 375px){
    .container{
        margin-inline: .7rem;
    }
    
    .home__title{
        font-size: 1.6rem;
    }
    
    .home__social-btn{
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
}

/* Large Mobile Portrait (376px-480px) */
@media screen and (min-width: 376px) and (max-width: 480px){
    .container{
        margin-inline: .75rem;
        max-width: 100%;
    }
    
    .nav{
        height: 3.5rem;
        padding: 0 .5rem;
    }
    
    .nav__menu{
        padding: 2.5rem 1.5rem;
    }
    
    .nav__list{
        row-gap: 1.2rem;
    }
    
    .nav__link{
        padding: 1rem 1.2rem;
        font-size: .9rem;
        min-height: 44px;
    }
    
    .nav__button-ghost{
        padding: 1rem 1.5rem;
        font-size: .9rem;
        min-height: 44px;
    }
    
    .home__container{
        padding-top: 1rem;
    }
    
    .home__subtitle{
        font-size: .7rem;
    }
    
    .home__title{
        font-size: 1.7rem;
        line-height: 1.2;
    }
    
    .home__description{
        font-size: .85rem;
        margin-bottom: 1.5rem;
    }
    
    .home__button{
        padding: 1rem 1.8rem;
        font-size: .95rem;
        margin-bottom: 1.5rem;
    }
    
    .home__social-buttons{
        flex-wrap: wrap;
        gap: .5rem;
        justify-content: flex-start;
    }
    
    .home__social-btn{
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        border-width: 2px;
    }
    
    .about__title, .contact__title, .gallery__title, .pricing__title{
        font-size: 1.8rem;
    }
    
    .about__features{
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature{
        padding: 1.5rem;
    }
    
    .pricing__packages{
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .package{
        padding: 1.5rem;
    }
    
    .package__amount{
        font-size: 2rem;
    }
    
    .gallery__grid{
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery__item--large, .gallery__item--wide{
        grid-column: span 1;
    }
    
    .gallery__image{
        height: 200px;
    }
    
    .contact__form{
        padding: 1.5rem;
    }
    
    .dates__row, .guests__row{
        flex-direction: column;
        gap: 0;
    }
    
    .location__content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map__actions{
        flex-direction: column;
        gap: .8rem;
    }
}

/* Small Tablets Portrait (481px-600px) */
@media screen and (min-width: 481px) and (max-width: 600px){
    .container{
        margin-inline: 1rem;
    }
    
    .nav{
        height: 4rem;
    }
    
    .nav__list{
        row-gap: 1.5rem;
    }
    
    .nav__link{
        padding: 1.1rem 1.3rem;
        font-size: .95rem;
    }
    
    .nav__button-ghost{
        padding: 1.1rem 1.8rem;
        font-size: .95rem;
    }
    
    .home__container{
        padding-top: 1.5rem;
    }
    
    .home__title{
        font-size: 2rem;
    }
    
    .home__social-buttons{
        gap: .8rem;
    }
    
    .home__social-btn{
        width: 50px;
        height: 50px;
    }
    
    .about__features{
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .pricing__packages{
        grid-template-columns: 1fr;
        gap: 1.8rem;
        max-width: 500px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
    
    .gallery__item--large, .gallery__item--wide{
        grid-column: span 1;
    }
    
    .contact__container{
        max-width: 500px;
    }
    
    .location__content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Standard Tablets Portrait (601px-768px) */
@media screen and (min-width: 601px) and (max-width: 768px){
    .container{
        margin-inline: 1.2rem;
    }
    
    .nav{
        height: 4.2rem;
    }
    
    .home__title{
        font-size: 2.2rem;
    }
    
    .home__social-btn{
        width: 52px;
        height: 52px;
    }
    
    .about__features{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
        max-width: 650px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact__container{
        max-width: 600px;
    }
    
    .location__content{
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Large Tablets Portrait (769px-800px) */
@media screen and (min-width: 769px) and (max-width: 800px){
    .container{
        margin-inline: 1.5rem;
    }
    
    .nav{
        height: calc(3.5rem + 1rem);
    }
    
    .nav__list{
        column-gap: 1.8rem;
    }
    
    .home__content{
        max-width: 450px;
    }
    
    .home__title{
        font-size: 2.1rem;
    }
    
    .about__features{
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about__container{
        max-width: 700px;
    }
    
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__container{
        max-width: 800px;
    }
    
    .contact__container{
        max-width: 550px;
    }
    
    .location__content{
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Tablets Landscape (801px-1024px) */
@media screen and (min-width: 801px) and (max-width: 1024px){
    .container{
        margin-inline: 2rem;
    }
    
    .nav{
        height: calc(3.5rem + 1.5rem);
        column-gap: 3rem;
    }
    
    .nav__menu{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav__list{
        flex-direction: row;
        column-gap: 2rem;
    }
    
    .nav__buttons{
        flex-direction: row;
        column-gap: 2rem;
    }
    
    .nav__toggle, .nav__close{
        display: none;
    }

    .home__content{
        max-width: 500px;
    }
    
    .home__title{
        font-size: 2.3rem;
    }
    
    .home__data{
        row-gap: 1rem;
    }
    
    .about__features{
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .about__container{
        max-width: 900px;
    }
    
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery__container{
        max-width: 950px;
    }
    
    .contact__container{
        max-width: 600px;
    }
    
    .location__content{
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}



/* Small Laptops (1025px-1300px) */
@media screen and (min-width: 1025px) and (max-width: 1300px){
    .container{
        max-width: 95%;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 2rem);
        column-gap: 2rem;
    }
    
    .nav__toggle, .nav__close{
        display: none;
    }
    
    .nav__menu{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .nav__list{
        flex-direction: row;
        column-gap: 1.5rem;
    }
    
    .nav__buttons{
        flex-direction: row;
        column-gap: 2rem;
    }

    .home__container{
        height: 100vh;
        padding-top: 1rem;
    }
    
    .home__content{
        max-width: 480px;
    }
    
    .home__data{
        row-gap: 1rem;
    }
    
    .home__title{
        font-size: 2.1rem;
    }
    
    .home__description{
        margin-bottom: 2.5rem;
        font-size: 1rem;
    }
    
    .home__images img{
        width: 500px;
        left: -5rem;
    }
    
    .about__features{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
    
    .about__container{
        max-width: 95%;
    }
    
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
        max-width: 95%;
    }
    
    .pricing__container{
        max-width: 95%;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .gallery__container{
        max-width: 95%;
    }
    
    .contact__container{
        max-width: 95%;
    }
    
    .location__container{
        max-width: 95%;
    }
}

/* Medium Laptops (1301px-1366px) */
@media screen and (min-width: 1301px) and (max-width: 1366px){
    .container{
        max-width: 1200px;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 2rem);
        column-gap: 3rem;
    }
    
    .nav__list{
        column-gap: 2rem;
    }
    
    .nav__buttons{
        column-gap: 2.5rem;
    }
    
    .home__container{
        height: 100vh;
        padding-top: 3rem;
    }
    
    .home__content{
        max-width: 520px;
    }
    
    .home__title{
        font-size: 2.4rem;
    }
    
    .home__description{
        margin-bottom: 3rem;
    }
    
    .home__images img{
        width: 550px;
        left: -6rem;
    }
    
    .about__features{
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .about__container{
        max-width: 1000px;
    }
    
    .pricing__packages{
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .pricing__container{
        max-width: 1100px;
    }
    
    .gallery__grid{
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .gallery__container{
        max-width: 1100px;
    }
    
    .contact__container{
        max-width: 650px;
    }
    
    .location__container{
        max-width: 1100px;
    }
}

/* Standard Desktop HD (1367px-1920px) */
@media screen and (min-width: 1367px) and (max-width: 1920px){
    .container{
        max-width: 1400px;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 2.5rem);
        column-gap: 5rem;
    }
    
    .nav__list{
        column-gap: 3rem;
    }

    .home__content{
        max-width: 600px;
    }
    
    .home__title{
        font-size: 2.8rem;
    }
    
    .home__description{
        font-size: 1.1rem;
    }
    
    .about__features{
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .about__container{
        max-width: 1100px;
    }
    
    .about__title, .contact__title, .gallery__title, .pricing__title{
        font-size: 2.8rem;
    }
    
    .pricing__packages{
        max-width: 900px;
    }
    
    .pricing__container{
        max-width: 1200px;
    }
    
    .gallery__container{
        max-width: 1300px;
    }
    
    .contact__container{
        max-width: 700px;
    }
    
    .thank-you__container{
        max-width: 700px;
    }
    
    .location__container{
        max-width: 1200px;
    }
}

/* Large Desktop Full HD+ (1921px-2560px) */
@media screen and (min-width: 1921px) and (max-width: 2560px){
    .container{
        max-width: 1800px;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 3rem);
        column-gap: 6rem;
    }
    
    .nav__list{
        column-gap: 4rem;
    }
    
    .home__content{
        max-width: 700px;
    }
    
    .home__title{
        font-size: 3.2rem;
    }
    
    .home__description{
        font-size: 1.2rem;
    }
    
    .home__social-btn{
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about__features{
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .about__container{
        max-width: 1400px;
    }
    
    .about__title, .contact__title, .gallery__title, .pricing__title{
        font-size: 3.2rem;
    }
    
    .pricing__packages{
        max-width: 1100px;
    }
    
    .pricing__container{
        max-width: 1500px;
    }
    
    .gallery__container{
        max-width: 1600px;
    }
    
    .contact__container{
        max-width: 800px;
    }
    
    .location__container{
        max-width: 1500px;
    }
}

/* Ultra Wide 4K (2561px-3840px) */
@media screen and (min-width: 2561px) and (max-width: 3840px){
    .container{
        max-width: 2400px;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 4rem);
        column-gap: 8rem;
    }
    
    .nav__list{
        column-gap: 5rem;
    }
    
    .home__content{
        max-width: 900px;
    }
    
    .home__title{
        font-size: 4rem;
    }
    
    .home__description{
        font-size: 1.4rem;
    }
    
    .home__social-btn{
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .about__features{
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem;
    }
    
    .about__container{
        max-width: 1800px;
    }
    
    .about__title, .contact__title, .gallery__title, .pricing__title{
        font-size: 4rem;
    }
    
    .pricing__packages{
        max-width: 1400px;
    }
    
    .pricing__container{
        max-width: 2000px;
    }
    
    .gallery__container{
        max-width: 2200px;
    }
    
    .contact__container{
        max-width: 1000px;
    }
    
    .location__container{
        max-width: 2000px;
    }
}

/* 8K and Beyond (3841px+) */
@media screen and (min-width: 3841px){
    .container{
        max-width: 3200px;
        margin-inline: auto;
    }
    
    .nav{
        height: calc(3.5rem + 5rem);
        column-gap: 10rem;
    }
    
    .nav__list{
        column-gap: 6rem;
    }

    .home__content{
        max-width: 1200px;
    }
    
    .home__title{
        font-size: 5rem;
    }
    
    .home__description{
        font-size: 1.6rem;
    }
    
    .home__social-btn{
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .about__features{
        grid-template-columns: repeat(5, 1fr);
        gap: 5rem;
    }
    
    .about__container{
        max-width: 2400px;
    }
    
    .about__title, .contact__title, .gallery__title, .pricing__title{
        font-size: 5rem;
    }
    
    .pricing__packages{
        max-width: 1800px;
    }
    
    .pricing__container{
        max-width: 2800px;
    }
    
    .gallery__container{
        max-width: 3000px;
    }
    
    .contact__container{
        max-width: 1200px;
    }
    
    .location__container{
        max-width: 2800px;
    }
}

/* Location Page Styles */
.location{
    padding: 4rem 0;
    min-height: 100vh;
}

.location__container{
     max-width: 1350px;
    grid-template-columns: 1.1fr .9fr;
    margin: 0 auto;
}

.location__header{
    text-align: center;
    margin-bottom: 3rem;
}

.location__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.location__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.location__content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media screen and (max-width: 1024px){
    .location__content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.location__subtitle{
    color: hsl(210,52%,20%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location__details{
    margin-bottom: 2rem;
}

.location__address{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address__item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.address__item i{
    font-size: 1.5rem;
    color: hsl(195,100%,30%);
    margin-top: .2rem;
}

.address__text h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.address__text p{
    color: hsl(210,24%,15%);
    line-height: 1.5;
}

.directions__list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction__item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.direction__item i{
    font-size: 1.5rem;
    color: hsl(195,100%,30%);
    margin-top: .2rem;
}

.direction__content h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.direction__content p{
    color: hsl(210,24%,15%);
    line-height: 1.5;
}

.map__container{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.map__embed{
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.map__actions{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    min-height: 48px;
    min-width: 140px;
    transition: all .3s;
    position: relative;
}

.map__button--call{
    background: transparent;
    color: hsl(210,52%,20%);
    border: 2px solid hsl(210,52%,20%);
    min-height: 48px;
    min-width: 120px;
}

.map__button--whatsapp{
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    min-height: 48px;
    min-width: 140px;
}

.map__button--whatsapp:hover{
    background: #128C7E;
    border-color: #128C7E;
}

.map__button:hover{
    transform: translateY(-2px);
}

.location__nearby{
    margin-bottom: 3rem;
}

.nearby__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nearby__item{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
    text-align: center;
    transition: transform .3s;
}

.nearby__item:hover{
    transform: translateY(-5px);
}

.nearby__item i{
    font-size: 2.5rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1rem;
}

.nearby__item h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

.nearby__item p{
    color: hsl(210,24%,15%);
    font-size: .9rem;
    line-height: 1.5;
}

.location__cta{
    text-align: center;
}

.cta__title{
    color: hsl(210,52%,20%);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__text{
    color: hsl(210,24%,15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.location__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 160px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.location__button:hover{
    transform: translateY(-2px);
}

/* Location Page Mobile Responsiveness */
@media screen and (max-width: 768px){
    .location__content{
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .location__title{
        font-size: 1.8rem;
    }
    
    .location__description{
        font-size: 1rem;
    }
    
    .location__subtitle{
        font-size: 1.3rem;
    }
    
    .address__item, .direction__item{
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .address__item i, .direction__item i{
        margin-top: 0;
        font-size: 2rem;
    }
    
    .map__container{
        padding: 1rem;
    }
    
    .map__embed iframe{
        height: 300px;
    }
    
    .map__actions{
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .map__button{
        width: 100%;
        justify-content: center;
    }
    
    .nearby__grid{
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .nearby__item{
        padding: 1.5rem;
    }
    
    .location__cta .cta__title{
        font-size: 1.5rem;
    }
    
    .location__cta .cta__text{
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px){
    .location{
        padding: 2rem 0;
    }
    
    .location__header{
        margin-bottom: 2rem;
    }
    
    .location__title{
        font-size: 1.6rem;
    }
    
    .location__subtitle{
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .address__item, .direction__item{
        padding: 0.8rem;
    }
    
    .address__text h3, .direction__content h3{
        font-size: 1rem;
    }
    
    .address__text p, .direction__content p{
        font-size: 0.9rem;
    }
    
    .map__embed iframe{
        height: 250px;
    }
    
    .nearby__item{
        padding: 1rem;
    }
    
    .nearby__item i{
        font-size: 2rem;
    }
    
    .nearby__item h3{
        font-size: 1.1rem;
    }
    
    .nearby__item p{
        font-size: 0.85rem;
    }
}



.contact{
    padding: 4rem 0;
    min-height: 100vh;
}

.contact__container{
    max-width: 600px;
    margin: 0 auto;
}

.contact__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 1rem;
}

.contact__description{
    text-align: center;
    color: hsl(210,24%,15%);
    margin-bottom: 3rem;
}

.contact__form{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.form__group{
    margin-bottom: 1.5rem;
}

.form__label{
    display: block;
    color: hsl(210,52%,20%);
    font-weight: 500;
    margin-bottom: .5rem;
}

.form__input{
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: .5rem;
    background-color: transparent;
    color: hsl(210,52%,20%);
    font-family: 'poppins', sans-serif;
}

.form__input:focus{
    outline: none;
    border-color: hsl(195,100%,30%);
}

.form__dates{
    margin-bottom: 2rem;
}

.form__guests{
    margin-bottom: 2rem;
}

.form__subtitle{
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dates__row, .guests__row{
    display: flex;
    gap: 1rem;
}

.date__group, .guest__group{
    flex: 1;
}

.form__button{
    width: 100%;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2rem;
    border: none;
    border-radius: .75rem;
    font-family: 'poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 56px;
    transition: all .3s;
    position: relative;
}

.form__button:hover{
    transform: translateY(-2px);
}

.about{
    padding: 4rem 0;
    min-height: 100vh;
}

.about__container{
    max-width: 800px;
    margin: 0 auto;
}

.about__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 3rem;
}

.about__section{
    margin-bottom: 3rem;
}

.about__subtitle{
    font-size: 1.5rem;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.about__text{
    color: hsl(210,24%,15%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about__features{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin: 0 100px;
}

.feature{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
    text-align: center;

}

.feature__icon{
    font-size: 2.5rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1rem;
}

.feature__title{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.feature__text{
    color: hsl(210,24%,15%);
    font-size: .9rem;
}

.about__cta{
    text-align: center;
    margin-top: 3rem;
}

.about__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
    position: relative;
}

.about__button:hover{
    transform: translateY(-2px);
}

.activities__list, .why__list{
    margin-top: 1rem;
}

.activity__item, .why__item{
    color: hsl(210,24%,15%);
    margin-bottom: .5rem;
    line-height: 1.5;
}

.thank-you{
    padding: 4rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you__container{
    max-width: 600px;
    margin: 0 auto;
}

.thank-you__content{
    text-align: center;
    background-color: hsla(0,0%,100%, .3);
    padding: 3rem 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.thank-you__icon{
    font-size: 4rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1.5rem;
}

.thank-you__title{
    font-size: 2rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.thank-you__message{
    color: hsl(210,24%,15%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.thank-you__details{
    margin-bottom: 2rem;
}

.thank-you__subtitle{
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.thank-you__list{
    text-align: left;
    color: hsl(210,24%,15%);
    line-height: 1.6;
}

.thank-you__list li{
    margin-bottom: .5rem;
}

.thank-you__actions{
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you__button{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
}

.thank-you__button-secondary{
    background-color: transparent;
    color: hsl(210,52%,20%);
    padding: 1rem 2rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
}

.thank-you__button:hover, .thank-you__button-secondary:hover{
    transform: translateY(-2px);
}
.gallery{
    padding: 4rem 0;
    min-height: 100vh;
}

.gallery__container{
    max-width: 1200px;
    margin: 0 auto;
}

.gallery__header{
    text-align: center;
    margin-bottom: 3rem;
}

.gallery__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.gallery__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

/* 🔧 GRID FIX */
.gallery__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ITEM */
.gallery__item{
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid hsl(210,52%,20%);
    background-color: hsla(0,0%,100%, .3);
    transition: transform .3s ease;
}

.gallery__item:hover{
    transform: translateY(-5px);
}

/* ❌ span mobile pe problem karta tha — desktop only */
@media screen and (min-width: 1025px){
    .gallery__item--large,
    .gallery__item--wide{
        grid-column: span 2;
    }
}

/* IMAGE / VIDEO FIX */
.gallery__image,
.gallery__video{
    width: 100%;
    height: auto;              /* 🔧 fixed */
    aspect-ratio: 4 / 3;       /* 🔧 consistent look */
    object-fit: cover;
    display: block;
}

/* overlay */
.gallery__overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, hsla(210,52%,20%,.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform .3s ease;
}

.gallery__item:hover .gallery__overlay{
    transform: translateY(0);
}

.gallery__item-title{
    font-size: 1.2rem;
    margin-bottom: .5rem;
    color: white;
}

.gallery__item-text{
    font-size: .9rem;
    color: hsla(0,0%,100%,.8);
}

.gallery__cta{
    text-align: center;
}

.gallery__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
}

.gallery__button:hover{
    transform: translateY(-2px);
}


.gallery__button:hover{
    transform: translateY(-2px);
}

.pricing{
    padding: 4rem 0;
    min-height: 100vh;
}

.pricing__container{
    max-width: 1200px;
    margin: 0 auto;
}

.pricing__header{
    text-align: center;
    margin-bottom: 3rem;
}

.pricing__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.pricing__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.pricing__highlight{
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
}

.highlight__title{
    font-size: 2rem;
    font-family: "lora", sans-serif;
    margin-bottom: 1rem;
}

.highlight__text{
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.highlight__badge{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background-color: hsla(0,0%,100%,.2);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 500;
}

.pricing__discount{
    background-color: hsla(0,0%,100%, .3);
    border: 2px solid hsl(210,52%,20%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.discount__title{
    text-align: center;
    color: hsl(210,52%,20%);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.discount__highlight{
    text-align: center;
}

.discount__main{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.discount__main i{
    font-size: 2rem;
    color: hsl(195,100%,30%);
}

.discount__text{
    font-size: 1.2rem;
    font-weight: 600;
    color: hsl(210,52%,20%);
}

.discount__note{
    color: hsl(210,24%,15%);
    font-style: italic;
}

.pricing__cta{
    text-align: center;
}

.cta__title{
    color: hsl(210,52%,20%);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta__text{
    color: hsl(210,24%,15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.pricing__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 180px;
    transition: all .3s;
    position: relative;
}

.pricing__button:hover{
    transform: translateY(-2px);
}

/* Location Page Styles */
.location{
    padding: 4rem 0;
    min-height: 100vh;
}

.location__container{
    max-width: 1200px;
    margin: 0 auto;
}

.location__header{
    text-align: center;
    margin-bottom: 3rem;
}

.location__title{
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.location__description{
    color: hsl(210,24%,15%);
    font-size: 1.1rem;
}

.location__content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.location__subtitle{
    color: hsl(210,52%,20%);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location__details{
    margin-bottom: 2rem;
}

.location__address{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address__item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.address__item i{
    font-size: 1.5rem;
    color: hsl(195,100%,30%);
    margin-top: .2rem;
}

.address__text h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.address__text p{
    color: hsl(210,24%,15%);
    line-height: 1.5;
}

.directions__list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direction__item{
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.direction__item i{
    font-size: 1.5rem;
    color: hsl(195,100%,30%);
    margin-top: .2rem;
}

.direction__content h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.1rem;
}

.direction__content p{
    color: hsl(210,24%,15%);
    line-height: 1.5;
}

.map__container{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.map__embed{
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.map__actions{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    min-height: 48px;
    min-width: 140px;
    transition: all .3s;
    position: relative;
}

.map__button--call{
    background: transparent;
    color: hsl(210,52%,20%);
    border: 2px solid hsl(210,52%,20%);
    min-height: 48px;
    min-width: 120px;
}

.map__button--whatsapp{
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
    min-height: 48px;
    min-width: 140px;
}

.map__button--whatsapp:hover{
    background: #128C7E;
    border-color: #128C7E;
}

.map__button:hover{
    transform: translateY(-2px);
}

.location__nearby{
    margin-bottom: 3rem;
}

.nearby__grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nearby__item{
    background-color: hsla(0,0%,100%, .3);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
    text-align: center;
    transition: transform .3s;
}

.nearby__item:hover{
    transform: translateY(-5px);
}

.nearby__item i{
    font-size: 2.5rem;
    color: hsl(195,100%,30%);
    margin-bottom: 1rem;
}

.nearby__item h3{
    color: hsl(210,52%,20%);
    margin-bottom: .5rem;
    font-size: 1.2rem;
}

.nearby__item p{
    color: hsl(210,24%,15%);
    font-size: .9rem;
    line-height: 1.5;
}

.location__cta{
    text-align: center;
}

.location__button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    font-size: 1.1rem;
    min-height: 52px;
    min-width: 160px;
    cursor: pointer;
    transition: all .3s;
    position: relative;
}

.location__button:hover{
    transform: translateY(-2px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing for scrollable home page */
.home, .about, .pricing, .gallery, .location, .contact {
    padding: 4rem 0;
    min-height: 100vh;
}

/* About section on home page */
.about {
    background-color: hsla(0,0%,100%, .1);
    padding: 8rem 0;
    min-height: 100vh;
    padding-top: 8rem;
}

.about__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 4rem;
}

.about__text {
    color: hsl(210,24%,15%);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing section on home page */
.pricing {
    background-color: hsl(210,55%,85%);
}

.pricing__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing__highlight {
    margin: 0 2rem 1rem 2rem;
}

/* Gallery section on home page */
.gallery {
    background-color: hsla(0,0%,100%, .1);
}

/* Title same – no visual change */
.gallery__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 2rem;
}

/* 🔧 Responsive grid fix */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* safer */
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding-inline: 1rem; /* mobile breathing space */
}

/* 📱 Mobile – one image per row */
@media screen and (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* 💻 Desktop – clean 3 column look */
@media screen and (min-width: 1025px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Location section on home page */
.location {
    background-color: hsl(210,55%,85%);
}

.location__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    text-align: center;
    margin-bottom: 2rem;
}

.location__info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact section on home page */
.contact {
    background-color: hsla(0,0%,100%, .1);
    text-align: center;
}

.contact__title {
    font-size: 2.25rem;
    font-family: "lora", sans-serif;
    color: hsl(210,52%,20%);
    margin-bottom: 1rem;
}

.contact__description {
    color: hsl(210,24%,15%);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1.4rem 2.5rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 24px 32px hsla(210,54%,24%,.3);
    min-height: 52px;
    min-width: 160px;
    transition: all .3s;
}

.contact__button--call {
    background: transparent;
    color: hsl(210,52%,20%);
    border: 2px solid hsl(210,52%,20%);
}

.contact__button:hover {
    transform: translateY(-2px);
}

/* Desktop enhancements for individual pages */
@media screen and (min-width: 1025px) {
    /* About page desktop styling - centered like original */
    .about .about__container {
        max-width: 1120px;
        margin-inline: auto;
        text-align: center;
    }
    
    .about .about__features {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .about .about__text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 1.5rem;
    }
    
    /* Pricing page desktop styling - centered */
    .pricing .pricing__container {
        max-width: 1120px;
        margin-inline: auto;
        text-align: center;
    }
    
    /* Gallery page desktop styling - centered */
    .gallery .gallery__container {
        max-width: 1120px;
        margin-inline: auto;
        text-align: center;
    }
    
    .gallery .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* Location page desktop styling - centered like original */
    .location .location__container {
        max-width: 1120px;
        margin-inline: auto;
        text-align: center;
    }
    
    .location .location__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .location .location__info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        text-align: left;
    }
    
    /* Contact page desktop styling - centered like original */
    .contact .contact__container {
        max-width: 1120px;
        margin-inline: auto;
        text-align: center;
    }
}

/* Mobile responsiveness for new sections */
@media screen and (max-width: 768px) {
    .about__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* 🔧 FIXED: gallery items – no circle, no fixed size */
    #gallery .gallery__item:nth-child(2),
    #gallery .gallery__item:nth-child(3) {
        border-radius: 1rem;   /* same as other images */
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    #gallery .gallery__item:nth-child(2) .gallery__image,
    #gallery .gallery__item:nth-child(2) .gallery__video,
    #gallery .gallery__item:nth-child(3) .gallery__image,
    #gallery .gallery__item:nth-child(3) .gallery__video {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;   /* 🔥 consistent look */
        object-fit: cover;
        display: block;
    }
    
    .location__info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .home, .about, .pricing, .gallery, .location, .contact {
        padding: 2rem 0;
        min-height: auto;
    }
}

/* Sitemap styles */
.sitemap {
    text-align: center;
    margin-bottom: 3rem;
}

.sitemap__title {
    color: hsl(210,52%,20%);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sitemap__links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sitemap__link {
    color: hsl(210,52%,20%);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid hsl(210,52%,20%);
    border-radius: 0.5rem;
    transition: all 0.3s;
    font-weight: 500;
}

.sitemap__link:hover {
    background-color: hsl(210,52%,20%);
    color: white;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .sitemap__links {
        gap: 0.8rem;
    }
    
    .sitemap__link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}
/* Location section map styles for home page */
.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map__container {
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.map__title {
    color: hsl(210,52%,20%);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.map__embed {
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.map__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Enhanced desktop styling for all pages */
@media screen and (min-width: 1024px) {
    /* Enhanced spacing and typography */
    .about, .pricing, .gallery, .location {
        padding: 6rem 0;
    }
    
    /* Beautiful hover effects for desktop */
    .feature:hover, .nearby__item:hover, .gallery__item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px hsla(210,54%,24%,.2);
    }
    
    /* Enhanced button styling */
    .about__button:hover, .pricing__button:hover, .gallery__button:hover, .location__button:hover {
        transform: translateY(-3px);
        box-shadow: 0 30px 50px hsla(210,54%,24%,.4);
    }
    
    /* Better spacing for content sections */
    .about__section, .pricing__highlight, .gallery__header {
        margin-bottom: 4rem;
    }
}

.map__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
    flex: 1;
    min-height: 40px;
}

.map__button--call {
    background: transparent;
    color: hsl(210,52%,20%);
    border: 2px solid hsl(210,52%,20%);
}

.map__button:hover {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .location__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .map__actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .map__embed iframe {
        height: 250px;
    }
}
/* Updated location section map styles - centered single map */
.location .map__container {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.location .map__embed {
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
}

.location .map__actions {
    display: flex;
    justify-content: center;
}

.location .map__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.location .map__button:hover {
    transform: translateY(-2px);
}
/* Reduced margins for sections on home page */
.pricing, .gallery, .location {
    padding: 2rem 0;
}

.pricing__title, .gallery__title, .location__title {
    margin-bottom: 1rem;
}

.pricing__highlight {
    margin-bottom: 1rem;
}

.gallery__grid {
    margin-bottom: 1rem;
}

/* Updated location section map styles - reduced margins */
.location .map__container {
    max-width: 800px;
    margin: 1rem auto 0;
    background-color: hsla(0,0%,100%, .3);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}
/* Minimal spacing for sections - attached layout */
.home, .about, .pricing, .gallery, .location, .contact {
    padding: 1rem 0;
}

.about__title, .pricing__title, .gallery__title, .location__title, .contact__title {
    margin-bottom: 0.5rem;
}

.about__text {
    margin-bottom: 1rem;
}

.pricing__highlight, .gallery__grid {
    margin-bottom: 0.5rem;
}

.contact__description {
    margin-bottom: 1rem;
}

/* Minimal map container spacing */
.location .map__container {
    max-width: 800px;
    margin: 0.5rem auto 0;
    background-color: hsla(0,0%,100%, .3);
    padding: 1rem;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.location .map__embed {
    margin-bottom: 0.5rem;
}
/* Override all existing media queries - minimal spacing for ALL resolutions */
.home, .about, .pricing, .gallery, .location, .contact {
    padding: 1rem 0 !important;
    min-height: auto !important;
}

.about__title, .pricing__title, .gallery__title, .location__title, .contact__title {
    margin-bottom: 0.5rem !important;
}

.about__text {
    margin-bottom: 1rem !important;
}

.pricing__highlight, .gallery__grid {
    margin-bottom: 0.5rem !important;
}

.contact__description {
    margin-bottom: 1rem !important;
}

.location .map__container {
    max-width: 800px;
    margin: 0.5rem auto 0 !important;
    background-color: hsla(0,0%,100%, .3);
    padding: 1rem !important;
    border-radius: 1rem;
    border: 2px solid hsl(210,52%,20%);
}

.location .map__embed {
    margin-bottom: 0.5rem !important;
}

/* Override all media query spacing */
@media screen and (min-width: 1025px) {
    .home, .about, .pricing, .gallery, .location, .contact {
        padding: 1rem 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .home, .about, .pricing, .gallery, .location, .contact {
        padding: 1rem 0 !important;
    }
}
/* Add proper margins for all containers */
.container {
    margin-inline: 1.5rem;
}

@media screen and (max-width: 768px) {
    .container {
        margin-inline: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        margin-inline: 0.8rem;
    }
}
/* Add proper margins only for mobile and tablet - keep desktop as is */
@media screen and (max-width: 1024px) {
    .container {
        margin-inline: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        margin-inline: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        margin-inline: 0.8rem;
    }
}
/* Center all sections with proper margins */
.home, .about, .pricing, .gallery, .location, .contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about__container, .pricing__container, .gallery__container, .location__container, .contact__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media screen and (max-width: 768px) {
    .about__container, .pricing__container, .gallery__container, .location__container, .contact__container {
        padding: 0 1rem;
    }
}
/* Override previous centering - keep original layout with mobile margins only */
.home, .about, .pricing, .gallery, .location, .contact {
    display: block !important;
    flex-direction: initial !important;
    align-items: initial !important;
    text-align: initial !important;
}

.about__container, .pricing__container, .gallery__container, .location__container, .contact__container {
    width: initial !important;
    max-width: initial !important;
    margin: initial !important;
    padding: initial !important;
}

@media screen and (max-width: 768px) {
    .container {
        margin-inline: 1rem !important;
    }
}

@media screen and (max-width: 480px) {
    .container {
        margin-inline: 0.8rem !important;
    }
}
/* Gallery section desktop layout - 3 images in a row */
@media screen and (min-width: 1025px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto 2rem;
    }
    
    .gallery__item--large, .gallery__item--wide {
        grid-column: span 1;
    }
}

/* Gallery CTA button */
.gallery__cta {
    text-align: center;
    margin-top: 1rem;
}

.gallery__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: #fff;
    padding: 1rem 2rem;
    border-radius: .75rem;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s;
}

.gallery__button:hover {
    transform: translateY(-2px);
}
/* Make highlight badge clickable */
.highlight__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background-color: hsla(0,0%,100%,.2);
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    font-weight: 500;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    cursor: pointer;
}

.highlight__badge:hover {
    background-color: hsla(0,0%,100%,.3);
    transform: translateY(-2px);
}


/* Footer */
.footer {
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.footer__container {
    max-width: 1120px;
    margin: 0 auto;
}

.footer__copyright {
    font-size: .9rem;
    color: hsla(0,0%,100%,.9);
}
/* Fixed Footer */
.footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}
/* Bottom-only Footer with Marquee */
.footer {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, hsl(210,55%,20%),hsl(192,62%,25%));
    color: white;
    padding: 1rem 0;
    text-align: center;
    z-index: 1000;
    transition: bottom 0.3s ease;
    box-shadow: 0 -4px 16px hsla(210,54%,24%,.3);
}

.footer.show {
    bottom: 0;
}

.footer__container {
    max-width: 1120px;
    margin: 0 auto;
}

.footer__copyright {
    font-size: .9rem;
    color: hsla(0,0%,100%,.9);
    margin: 0;
}

.footer__copyright marquee {
    font-weight: 500;
}
/* Natural Bottom Footer Override */
.footer {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    z-index: auto !important;
    transition: none !important;
}