:root{
    --primary-color: #FFCA3A;
    --secondary-color: #1D141D;
    --colored-bg:#d9cec8;
    --colored-bg-light:#f1f1f1;
    --font-body: 'Poppins';
    --font-heading: 'Barlow Condensed';
    --font-cursive: 'Cookie';
    --font-color-body: #1a1a1a;
}

*{
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

p{
    margin-bottom: 15px;
    color: var(--font-color-body);
}

h1, h2, h3, h4{
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

h1{
    font-size:40px;
}

h2{
    font-size:35px;
}

h3, h4{
    font-size:25px;
}

a{
    text-decoration: none;
    color: var(--secondary-color);
}

a:hover{
    color: var(--primary-color);
}


/*DISPLAY*/
.flex{
    display: flex;
}

.h-center{
    align-items: center;
}

.spacebetween{
    justify-content: space-between;
}

.gap-10{
    gap:10px;
}

.gap-20{
    gap:20px;
}

.gap-50{
    gap:50px;
}

.grid{
    display: grid;
}

.grid-2-col{
    grid-template-columns: 1fr 1fr;
    align-items: stretch; /* equal-height columns */
}

.grid-3-col{
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch; /* equal-height columns */
}


.text-align-center{
    text-align: center;
}

/*COMPARE SLIDER*/
.compare-container{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.compare-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.before-img{
    position: absolute;
    inset: 0;
}

.after-wrapper{
    position: absolute;
    inset: 0;
    width: 0%;
    overflow: hidden;
}

.after-img{
    width: 100%;
    height: 100%;
}

.slider-line{
    position: absolute;
    top: 0;
    left: 0%;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
}

.slider-handle{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(0,0,0,.3);

    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle i{
    font-size: 24px;
    color: #000;
}

.compare-slider{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 3;
}

/*COMPARE SLIDER*/

/*IMAGE SLIDER*/
.image-slider{
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.image-slider .slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-slider .slide.active{
    opacity: 1;
}

.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 24px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
    transition: .3s;
}

.slider-btn:hover{
    background: rgba(0,0,0,.8);
}

.slider-btn.prev{
    left: 15px;
}

.slider-btn.next{
    right: 15px;
}
/*IMAGE SLIDER*/

/*SMALL GALLERY*/
.small-gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.small-gallery .backdrop-card{
    overflow: hidden;
}

.small-gallery img{
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.small-gallery .backdrop-card:hover img{
    transform: scale(1.05);
}

.details-block{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#preview-image{
    width: 100%;
    height:400px;
    object-fit: cover;
}

.backdrop-info{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#preview-title{
    margin: 0;
    font-size: 2rem;
}

#preview-description{
    line-height: 1.7;
    color: #666;
}

.backdrop-best-for{
    padding: 10px;
    background: #f8f8f8;
    border-left: 4px solid var(--primary-color);
}

.backdrop-best-for h4{
    margin-bottom: 8px;
}

#preview-best-for{
    margin: 0;
    line-height: 1.6;
    font-size:13px;
}

.backdrop-card{
    cursor: pointer;
}

.backdrop-card.active{
    outline: 4px solid var(--primary-color);
}

@media screen and (max-width:600px){
    .small-gallery{
        grid-template-columns: repeat(3, 1fr);
    }
}

/*SMALL GALLERY*/

/*REVIEWS*/
.testimonial-image-wrapper {
    position: relative;
    width: 100%;
    margin: 60px auto 0;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    width: 100%;
    height: 500px;
}

.testimonial-slider img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.testimonial-slider img.active {
    display: block;
    animation: fadeIn .5s ease;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.226);
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    transition: .3s;
}

.slider-btn:hover { 
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.05);
}

.prev {
    left: 0;
    color:#000;
}

.next {
    right: 0;
    color:#000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/*GENERAL*/
.note{
    font-size:12px;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0px;
}

.block{
    display: block;
}

.margin-20-top{
    margin-top:20px;
}

.margin-60-top{
    margin-top:60px;
}

.colored-wrapper{
    background: var(--colored-bg);
}

.colored-wrapper-light{
    background: var(--colored-bg-light);
}

.btn-design{
    display: inline-block;
    background: var(--primary-color);
    color: var(--font-color-body);
    padding: 8px 20px;
    border-radius: 50px;
    border: 3px solid #fff;
    cursor: pointer;
    transition: .3s;
    width: fit-content;

    box-shadow:
        0 0 0 4px var(--primary-color);
}

.btn-design:hover{
    background: var(--secondary-color);
    color:var(--primary-color);

    box-shadow:
        0 0 0 4px var(--secondary-color);
}

.btn-design-inverted{
    background: #fff;
    color: var(--font-color-body);
    border: 3px solid var(--primary-color);
    box-shadow:
        0 0 0 4px #fff;
}

.btn-design-inverted:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    box-shadow:
        0 0 0 4px var(--secondary-color);
}

.colored-block{
    background-color: var(--primary-color);
    padding: 20px;
}

.image-block{
    overflow: hidden;
}

.image-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*HEADER STYLE*/
.header-wrapper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: transparent;
    z-index: 100;
}

.logo-link{
    display: flex;
    align-items: center;
    gap:10px;
    color:#fff;
}

.logo-link:hover{
    color:#fff;
}

.logo-div img{
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    object-fit: contain;

    background: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

.logo-div .logo-text{
    margin: 0;
    font-size:25px;
    cursor: pointer;
}

.logo-div .logo-text span:first-of-type {
    color:#fff !important;
}

.logo-div .logo-text span:last-of-type{
    color:#fff !important;
}

.navigation-div a:not(:last-child){
    color: #fff;
}

.navigation-div a:not(:last-child):hover{
    color: var(--primary-color);
}

.hamburger{
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.mobile-nav{
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--secondary-color);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-nav a{
    color: #fff;
    font-size: 18px;
}

.mobile-nav.open{
    right: 0;
}

.close-btn{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    color: #fff;
}

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 998;
}

.overlay.active{
    opacity: 1;
    pointer-events: all;
}

/*HERO*/
.hero-wrapper {
    position: relative;
    background: url('../images/hero-image.jpg');
    height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    /* Add this */
    padding: 120px 20px 60px;

    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-wrapper > * {
    position: relative;
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 800px;

    transform: translate(-50%, -50%);
    object-fit: cover;

    z-index: 0;
}

.hero-content{
    width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.internal-hero-wrapper {
    height: 300px;
}

.hero-text{
    margin-bottom: 40px;
}

.hero-text span{
    display: block;
    line-height: 60px;
}

.hero-text span:first-of-type{
    font-size: 25px;
    color: #fff;
    font-weight: 400;
}

.hero-text span:last-of-type{
    font-size: 100px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
}

.hero-desc{
    display: block;
    text-align: center;

    color:#fff;
}

/*CONTENTS*/
.wrapper{
    width:1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.designed-heading{
    margin-bottom: 40px;
}

.designed-heading span{
    display: block;
}

.designed-heading span:first-of-type{
    font-size: 23px;
    color: var(--secondary-color);
    font-weight: 400;
}

.designed-heading span:last-of-type{
    font-size: 70px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    color: var(--secondary-color);

    /*text-shadow:
        1px 1px 0 var(--secondary-color),
        2px 2px 0 var(--secondary-color),
        3px 3px 0 var(--secondary-color),
        0 8px 20px rgba(0, 0, 0, 0.2);*/
}


/*SERVICES*/
.services-section{
    padding: 80px 20px;
}

.section-heading{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-heading h2{
    margin-bottom: 20px;
}

.section-heading p{
    line-height: 1.8;
    color: #666;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card{
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s;
}

.service-card:hover{
    transform: translateY(-5px);
}

.service-card i{
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3{
    margin-bottom: 15px;
}

.service-card p{
    line-height: 1.7;
}

@media (max-width: 768px){
    .services-grid{
        grid-template-columns: 1fr;
    }
}

/*PACKAGES*/
.package-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 60px;
}

.package-card {
    position: relative;
    width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 30px 0px 80px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.package-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-card h4 {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.package-card ul {
    list-style: none;
    padding: 10px 0px;
    margin: 0;
    background: var(--primary-color);
    
}

.package-card ul li {
    font-size: 13px;
    margin: 8px 0;
    position: relative;
    padding-left: 15px;
    text-align: left;
}

.package-card span {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
}

.package-card:nth-child(2) {
    transform: scale(1.08);
    z-index: 2;
}

.package-card:nth-child(2) > ul {
    background: #111111;
    padding: 10px 0px;
    color:#fff;
}

.package-card:nth-child(2)::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f5c400;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 50px;
}
/*PACKAGES*/

/*FOOTER*/
.footer{
    background: var(--secondary-color);
    color: #fff;
    padding: 40px 20px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-col h3{
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p{
    margin: 5px 0;
    line-height: 1.6;
    color:#fff;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
}

/* Logo section */
.footer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    padding: 5px;
    cursor: pointer;
}

.footer-logo span{
    font-weight: 700;
    cursor: pointer;
}

.copyright-div{
    text-align: center;
    padding: 5px 20px;
    font-size:10px;
    background: #111111;;
    
}

.copyright-div p{
    margin: 0;
    color:#fff;
}

.copyright-div a{
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.copyright-div a:hover{
    text-decoration: underline;
}

.footer-navigation{
    padding: 15px 20px;
    background: var(--primary-color);
}

.footer-navigation nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-navigation a{
    color: var(--font-color-body);
    text-decoration: none;
    font-size: 0.95rem;
    transition: .3s;
}

.footer-navigation a:hover{
    color: #fff;
}

form {
    max-width: 700px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}

form label {
    display: block;
    margin: 14px 0 6px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

form input,
form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: 0.25s ease;
    background: #fafafa;
}

form input:focus,
form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15);
}

form input[type="file"] {
    padding: 10px;
    background: #fff;
}

form .form-btn{
    display: block;
    margin-top: 20px;
    width:100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.full {
    grid-column: span 2;
}

@media (max-width: 600px) {
    form {
        margin: 30px 15px;
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}

@media (max-width: 768px){
    .footer-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo{
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .package-grid {
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .package-card {
        width: 45%;
        padding: 25px 0px 70px;
    }

    .package-card:nth-child(2) {
        transform: scale(1.03);
    }

    .package-card h3 {
        font-size: 16px;
    }

    .package-card h4 {
        font-size: 13px;
    }

    .package-card ul li {
        font-size: 12px;
    }

    .package-card span {
        font-size: 18px;
    }
}

@media screen and (max-width: 800px){

    .wrapper{
        width: 100%;
        padding: 50px 20px;
    }

    .grid-2-col{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-2-col > div{
        justify-content: flex-start;
    }

    .hero-content{
        width: 100%;
        padding: 0 20px;
    }

    .hero-text span:last-of-type{
        font-size: 70px;
    }

    .hero-wrapper{
        height: auto;
        padding: 140px 20px 80px;
    }

    .hero-video {
        height: 100%;

    }

    .image-block img{
        height: auto;
        max-height: 450px;
    }

    .footer-grid{
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 600px){

    .wrapper{
        padding: 40px 15px;
    }

    .grid-2-col{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-text span:last-of-type{
        font-size: 80px;
        line-height: 70px;
    }

    .hero-text span:first-of-type{
        font-size: 18px;
    }

    .hero-content .btn-design{
        margin-top: 10px;
    }

    .image-block img{
        max-height: 320px;
    }

    .footer-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo{
        justify-content: center;
    }

    .designed-heading span:last-of-type{
        font-size: 40px;
    }

    .designed-heading span:first-of-type{
        font-size: 18px;
    }

    /* IMAGE SLIDER MOBILE */
    .image-slider{
        height: 320px;
    }

    .slider-btn{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-btn.prev{
        left: 10px;
    }

    .slider-btn.next{
        right: 10px;
    }
}

@media screen and (max-width: 600px){

    .navigation-div{
        display: none;
    }

    .hamburger{
        display: block;
        color: #fff;
    }
}

/* MOBILE - 600px */
@media (max-width: 600px) {
    .package-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }

    .package-card {
        width: 90%;
        max-width: 340px;
        padding: 25px 0px 70px;
    }

    .package-card:nth-child(2) {
        transform: none;
    }

    .package-card:nth-child(2)::before {
        font-size: 11px;
        padding: 5px 10px;
    }

    .package-card h3 {
        font-size: 16px;
    }

    .package-card h4 {
        font-size: 13px;
    }

    .package-card ul li {
        font-size: 12px;
    }

    .package-card span {
        font-size: 18px;
    }
}

.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin: 20px auto;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
    max-width: 600px;
}

.alert-success {
    background: #e9f9ef;
    border-left: 5px solid #2ecc71;
    color: #1e7e3c;
}

.alert-error {
    background: #fdecec;
    border-left: 5px solid #e74c3c;
    color: #a52822;
}

.alert .icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.alert-success .icon {
    background: #2ecc71;
    color: white;
}

.alert-error .icon {
    background: #e74c3c;
    color: white;
}

/* ANIMATION */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}