/* ==========================================
   K STUDIO LUXURY PHOTOGRAPHY WEBSITE
   PART 1
   RESET + VARIABLES + LOADER + NAVBAR + HERO
========================================== */

/* GOOGLE FONT FALLBACK */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

:root{

    --gold:#d4af37;
    --gold-light:#f4d36a;
    --black:#080808;
    --black-light:#121212;
    --dark:#0f0f0f;
    --white:#ffffff;
    --gray:#b8b8b8;
    --border:rgba(255,255,255,0.08);

    --playfair:'Playfair Display', serif;
    --poppins:'Poppins', sans-serif;

    --transition:all .4s ease;
}

/* ==========================================
   RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

html{
    overflow-x:hidden;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #000;
}


body{

    background:var(--white);

    color:var(--black);

    font-family:var(--poppins);
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

section{
    padding:70px 0;
}

/* ==========================================
   SCROLLBAR
========================================== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:50px;
}

/* ==========================================
   LOADER
========================================== */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#000;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:1s;
}

.loader-content{
    text-align:center;
}

.loader-content h1{

    font-family:var(--playfair);
    font-size:4rem;
    letter-spacing:8px;
    color:var(--gold);

    animation:pulse 2s infinite;
}

.loader-content span{
    color:#bbb;
    letter-spacing:5px;
    text-transform:uppercase;
}

@keyframes pulse{

    0%{
        opacity:.4;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:.4;
    }
}

/* ==========================================
   HEADER
========================================== */

.header{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    padding:20px 6%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    z-index:99999;

    backdrop-filter:blur(15px);

    background:rgba(0,0,0,.85);

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.4s ease;
}


.header.scrolled{

    padding:15px 6%;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 5px 20px rgba(0,0,0,.25);
}
.logo{

    display:flex;

    align-items:center;

    gap:10px;
}
.logo img{

    width:70px;

    height:70px;

    object-fit:contain;
}
.logo span{
    font-size:0.65em;
}
.logo h2{

    font-family:var(--playfair);

    color:var(--gold);

    font-size:2rem;

    letter-spacing:3px;

    margin:0;
}

/* ==========================================
   NAVBAR
========================================== */

.navbar ul{

    display:flex;

    gap:40px;
}


.navbar ul li a{

    color:#ffffff;

    font-size:.95rem;

    text-transform:uppercase;

    letter-spacing:1px;

    position:relative;

    transition:.4s ease;
}

.navbar ul li a:hover{
    color:var(--gold);
}

.navbar ul li a::after{

    content:'';

    position:absolute;
    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:var(--gold);

    transition:.4s;
}

.navbar ul li a:hover::after{
    width:100%;
}

.menu-btn{
display:none;

    font-size:2rem;

    color:#ffffff;

    cursor:pointer;

    z-index:100000;
}

.menu-btn i{

    color:white;
    font-size:1.7rem;
}

/* ==========================================
   HERO SECTION
========================================== */
.hero{

   min-height:auto;
    padding:120px 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

    

    background:#ffffff;

    position:relative;
}

.hero-content{
    flex:1;
    max-width:600px;
}

.hero-subtitle{

    color:var(--gold);

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

    display:block;
}

.hero h1{

    font-family:var(--playfair);

     font-size:2.8rem;

     line-height:1.15;

    color:#111;

    margin-bottom:25px;
}

.hero p{

    color:#555;

    font-size:1.15rem;

    line-height:1.8;

    margin-bottom:35px;
    text-align:justify;
    text-justify:inter-word;
}

.hero-image{
 width:100%;
 max-width:700px;
 height:auto;
 border-radius:30px;
 object-fit:cover;
    flex:1;

    display:flex;

    justify-content:center;
}

.hero-image img{

    width:100%;
    max-width:650px;

    border-radius:25px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.15);
}
.hero-slider{

    position:relative;

    width:100%;

    height:500px;

    border-radius:30px;

    overflow:hidden;
}

.hero-slider .slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s ease-in-out;
}

.hero-slider .slide.active{

    opacity:1;
}
/* ==========================================
/* ==========================================
   MOBILE
========================================== */
@media(max-width:768px){
 .logo{
        display:flex;
        align-items:center;
        gap:10px;
    }

    .logo img{
        width:50px;
        height:auto;
    }

    .logo h2{
        font-size:1.8rem;
        letter-spacing:1px;
        white-space:nowrap;
    }
    .hero{
        flex-direction:column;
        text-align:center;
        padding:110px 25px 60px;
    }

    .hero-content{
        max-width:350px;
        margin:0 auto;
    }
     .hero-image{
        width:100%;
    }
.hero-image img{
        width:100%;
        height:350px;
        object-fit:cover;
        border-radius:20px;
    }
    .hero-subtitle{
        font-size:0.85rem;
        letter-spacing:5px;
        line-height:1.8;
    }

    .hero h1{
        font-size:2.3rem;
        line-height:1.2;
        margin:20px 0;
    }

    .hero p{
        font-size:1rem;
        line-height:1.9;
        max-width:320px;
        margin:0 auto 30px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:18px;
    }

    .btn-gold,
    .btn-outline{
        width:280px;
    }
     .hero-slider{

        height:350px;
    }
}
/* ==========================================
   BUTTONS
========================================== */

.hero-buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    
}

.btn-gold{

    background:var(--gold);
    color:black;

    padding:15px 34px;

    font-weight:600;

    border-radius:50px;

    transition:.4s;

    display:inline-block;
}

.btn-gold:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px
    rgba(212,175,55,.35);
}

.btn-outline{

     border:2px solid var(--gold);

    color:#111;

    background:#fff;

    padding:15px 34px;

    font-weight:600;

    border-radius:50px;

    transition:.4s;

    display:inline-block;
}

.btn-outline:hover{
background:var(--gold);

    color:#000;
}
/* ==========================================
   SECTION TITLE
========================================== */

.section-title{

    text-align:center;

    margin-bottom:70px;
}

.section-title span{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:4px;

    font-size:.85rem;
}

.section-title h2{

    font-family:var(--playfair);

    font-size:2rem;

    margin-top:15px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .navbar{

        position:fixed;

        top:80px;
        left:0;

        width:100%;

        background:#0a0a0a;

        display:none;

        padding:20px 0;

        z-index:99999;
    }

    .navbar.mobile-active{
        display:block;
    }

    .navbar ul{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }
}

@media(max-width:768px){

    .hero{
        padding:110px 25px 60px;
    }

    .hero-content{
        max-width:350px;
        margin:0 auto; /* remove margin-left */
        text-align:center;
    }

    .hero-subtitle{
        font-size:0.85rem;
        letter-spacing:4px;
        line-height:1.8;
    }

    .hero h1{
        font-size:2.4rem;
        line-height:1.2;
        margin-bottom:20px;
    }

    .hero p{
        font-size:1rem;
        line-height:1.8;
        margin-bottom:30px;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .btn-gold,
    .btn-outline{
        width:280px;
        text-align:center;
    }

    .hero-image img{
        width:100%;
        max-width:100%;
        display:block;
    }

    .section-title h2{
         font-size:2rem;

        line-height:1.3;
    }

    .loader-content h1{
        font-size:2.5rem;
    }
}

@media(max-width:480px){

    .hero h1{
        font-size:2.1rem;
    }

    .hero p{
        font-size:.95rem;
    }

    .btn-gold,
    .btn-outline{
        width:100%;
        max-width:300px;
    }
}
/* ==========================================
   PART 2
   ABOUT + SERVICES + STATS
========================================== */

/* ==========================================
   ABOUT SECTION
========================================== */

/* ==========================================
   ABOUT SECTION
========================================== */

.about{

    background:#ffffff;

    padding:80px 0;
}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:25px;
    

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.about-content span{

    color:#d4af37;

    letter-spacing:3px;

    font-size:.9rem;

    font-weight:600;
}

.about-content h2{

    font-family:var(--playfair);

    font-size:3rem;

    color:#111;

    margin:15px 0 25px;
}

.about-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:20px;
}

/* MOBILE */
/* MOBILE */

@media(max-width:991px){

    .about-grid{

        grid-template-columns:1fr;

        gap:30px;

        text-align:left;
    }

    .about-content{

        order:2;

        text-align:left;
    }

    .about-image{

        order:1;
    }

}

@media(max-width:768px){

    .about{

        padding:50px 20px;
    }

    .about-content span{

        display:block;

        text-align:center;
    }

    .about-content h2{

        font-size:1.8rem;

        line-height:1.3;

        text-align:center;

        margin-bottom:20px;
    }

    .about-content p{

        font-size:1rem;

        line-height:1.9;

        text-align:left;

        margin-bottom:15px;
    }

    .about-content .btn-gold{

        display:block;

        width:220px;

        margin:25px auto 0;

        text-align:center;
    }

}
/* ==========================================
   SERVICES SECTION
========================================== */

.services{

    background:#ffffff;

    padding:100px 0;
}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

/* CARD */

.service-card{

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    transition:.4s ease;

    box-shadow:
    0 5px 20px rgba(0,0,0,.05);
}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 15px 35px rgba(0,0,0,.10);
}

/* ICON */

.service-card i{

    font-size:3rem;

    color:var(--gold);

    margin-bottom:25px;
}

/* TITLE */

.service-card h3{

    font-family:var(--playfair);

    font-size:1.7rem;

    color:#111111;

    margin-bottom:15px;
}

/* TEXT */

.service-card p{

    color:#666666;

    line-height:1.8;

    font-size:1rem;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .services-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .services{

        padding:70px 0;
    }

    .services-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .service-card{

        padding:35px 25px;
    }

    .service-card h3{

        font-size:1.4rem;
    }
}

/* ==========================================
   STATS SECTION
========================================== */
/* ==========================================
   STATS SECTION
========================================== */

.stats{

      background:#ffffff !important;

    padding:100px 0;
}
.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}

.stat-box{

    background:#ffffff;

    border:2px solid #d4af37;

    border-radius:20px;

    padding:45px 25px;

    text-align:center;

    transition:.4s ease;

    box-shadow:
    0 0 15px rgba(212,175,55,.15),
    0 0 30px rgba(212,175,55,.08);
}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 25px rgba(212,175,55,.35),
    0 0 50px rgba(212,175,55,.20);

    border-color:#c99a00;
}

.stat-box h2{

    font-family:var(--playfair);

    font-size:3rem;

    color:#d4af37;

    margin-bottom:15px;

    font-weight:700;
}
.stat-box span{

    color:#111111;

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:500;
}
/* TABLET */

@media(max-width:991px){

    .stats-grid{

        grid-template-columns:repeat(2,1fr);
    }
}

/* MOBILE */

@media(max-width:768px){

    .stats{

        padding:70px 0;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .stat-box h2{

        font-size:2.5rem;
    }
}
/* ==========================================
   PART 3
   GALLERY + TESTIMONIAL + CTA + FOOTER
   WHATSAPP + FINAL ANIMATIONS
========================================== */

/* ==========================================
   GALLERY SECTION
========================================== */

.gallery-preview{
    background:#ffffff;
}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{

    width:100%;
    height:400px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:.6s ease;

    border:1px solid rgba(255,255,255,.05);
}

.gallery-grid img:hover{

    transform:scale(1.05);

    box-shadow:
    0 15px 40px rgba(0,0,0,.5),
    0 0 25px rgba(212,175,55,.25);

    border-color:rgba(212,175,55,.4);
}

/* ==========================================
   TESTIMONIAL SECTION
========================================== */
/* ==========================================
   TESTIMONIAL SECTION
========================================== */
/* TESTIMONIAL SECTION */

/* ==========================================
   TESTIMONIAL SECTION
========================================== */

.testimonial{
    padding:120px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.testimonial .container{
    max-width:1400px;
    width:100%;
    margin:0 auto;
    padding:0 80px;
    position:relative;
}

/* HEADING */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#d4af37;
    letter-spacing:3px;
    font-size:14px;
    font-weight:600;
}

.section-title h2{
    font-size:2.4rem;
    margin-top:10px;
    margin-bottom:20px;
    color:#111;
}

.section-title p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* ==========================================
   SLIDER
========================================== */

.testimonial-slider{
    position:relative;
    overflow:hidden;
    width:100%;
}

.testimonial-grid{
    display:flex;
    gap:20px;
    transition:transform .5s ease;
}

/* ==========================================
   CARD
========================================== */

.testimonial-card{

    flex:0 0 calc(33.333% - 20px);

    min-width:calc(33.333% - 20px);
    min-height:unset;
    justify-content:space-between;

    background:#fff;
    border-radius:25px;
    padding:25px 20px;
    text-align:center;
    border:2px solid #d4af37;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s ease;
    box-sizing:border-box;
}
.testimonial-grid{
    display:flex;
    gap:20px;
    align-items:stretch;
}
.testimonial-card:hover{

    transform:none;

    border-color:#d4af37;

    box-shadow:
    0 0 25px rgba(212,175,55,.25);
}

/* QUOTE */

.quote-icon{
    position:absolute;

    top:20px;
    right:25px;

    font-size:60px;

    color:#d4af37;

    opacity: 0.3;
}

/* IMAGE */

.testimonial-card img{
    width:90px;
    height:90px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #d4af37;

    display:block;

    margin:0 auto 25px;
}

/* STARS */

.review-stars{
    color:#d4af37;

    font-size:1.3rem;

    letter-spacing:3px;

    margin-bottom:20px;
}

/* REVIEW */

.testimonial-card p{
    text-align:justify;

    line-height:1.6;
     font-size:1rem;

    color:#555;

    margin-bottom:20px;
}

/* NAME */

.testimonial-card h3{
    margin-bottom:8px;

    color:#111;

    font-size:1.8rem;
}

/* CLIENT TYPE */

.client-type{
    display:block;

    color:#d4af37;

    font-weight:600;
}

/* ==========================================
   ARROWS
========================================== */

.testimonial-prev,
.testimonial-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    border-radius:50%;

    border:none;

    background:#d4af37;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:999;
}

/* Move outside cards */




.testimonial-prev:hover,
.testimonial-next:hover{
    transform:translateY(-50%) scale(1.1);
}

.testimonial-prev{
    left: -35px;
}

.testimonial-next{
    right:-25px;
}

/* ==========================================
   TABLET
========================================== */
@media(max-width:991px){

    .testimonial-card{

        flex:0 0 calc(50% - 10px);

        min-width:calc(50% - 10px);

        box-sizing:border-box;
    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    .testimonial{
        padding:80px 0;
    }

    .testimonial .container{
        padding:0 20px;
    }

    .testimonial-grid{
        gap:0;
    }

     .testimonial-card{
        flex:0 0 100%;
        min-width:100%;
        max-width:100%;
        box-sizing:border-box;

        min-height:500px; /* adjust as needed */
    }


    .testimonial-card img{
        width:100px;
        height:100px;
    }

    .testimonial-card p{
        text-align:left;
        line-height:1.9;
    }

    .section-title h2{
        font-size:2rem;
    }

    .testimonial-prev,
    .testimonial-next{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .testimonial-prev{
        left:-22px;
    }

    .testimonial-next{
        right:-10px;
    }
}
/* ==========================================
   CTA SECTION
========================================== */
/* ==========================================
   CTA SECTION
========================================== */

/* ==========================================
   CTA SECTION
========================================== */

.cta{
    background:#ffffff;
    padding:80px 20px;
    text-align:center;
    border-top:none;
}

.cta h2{

    font-family:var(--playfair);

    font-size:3rem;

    line-height:1.2;

    color:#111;

    margin-bottom:20px;

    max-width:900px;

    margin-left:auto;
    margin-right:auto;
}

.cta p{

    color:#666;

    font-size:1.1rem;

    line-height:1.8;

    max-width:700px;

    margin:0 auto 30px;
}

.cta .btn-gold{

    background:#d4af37;

    color:#111;

    padding:16px 40px;

    border-radius:50px;

    font-weight:600;

    display:inline-block;

    transition:.4s;
}

.cta .btn-gold:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(212,175,55,.25);
}
.cta-subtitle{

    display:block;

    color:#d4af37;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:768px){

    .cta{

        padding:60px 25px;
    }

      .cta h2{

        font-size:1.8rem;

        line-height:1.3;

        margin-bottom:15px;
    }


    .cta p{

        font-size:.95rem;

        line-height:1.8;

        max-width:300px;

        margin:0 auto 25px;
    }
    .cta-subtitle{

        font-size:.8rem;

        letter-spacing:3px;
    }

    .cta .btn-gold{

        width:280px;

        text-align:center;
    }
}
/* ==========================================
   FOOTER
========================================== */
/* ==========================================
   FOOTER - WHITE LUXURY THEME
========================================== */

/* ==========================================
   FOOTER - BLACK LUXURY THEME
========================================== */

footer{

    background:#0a0a0a;
     padding:10px 0 15px;

    text-align:center;

    border-top:1px solid rgba(212,175,55,.15);
}

footer h2{

    font-family:var(--playfair);

    color:#d4af37;

      font-size:2.2rem;

    letter-spacing:4px;

        margin-bottom:10px;
}

footer p{

    color:#cccccc;
margin-bottom:20px;
    font-size:1rem;
}

/* SOCIAL ICONS */

.social-icons{

    display:flex;

    justify-content:center;

    gap:15px;

    margin:15px 0;
}

.social-icons a{

    width:55px;
    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid rgba(212,175,55,.4);

    color:#d4af37;

    background:transparent;

    transition:.4s ease;
}

.social-icons a:hover{

    background:#d4af37;

    color:#000;

    transform:translateY(-5px);

    box-shadow:
    0 0 20px rgba(212,175,55,.35);
}

/* COPYRIGHT */

.copyright{

    margin-top:15px;

    padding-top:15px;

    color:#888;

    font-size:.95rem;
}
.footer-credit{
    margin-top:15px;
    font-size:0.9rem;
    color:#888 !important;
}


.footer-credit{
    margin-top:15px;
    font-size:0.9rem;
    color:#888 !important;
}

.footer-credit a,
.footer-credit a:visited,
.footer-credit a:active{
    color:#d4af37 !important;
    text-decoration:none;
    font-weight:600;
}

.footer-credit a:hover{
    color:#ffffff !important;
}

    .social-icons a{
        width:50px;
        height:50px;
        font-size:1rem;
    }

    .copyright{
font-size:0.9rem;
        line-height:1.6;
        max-width:300px;
        margin:auto;
    }



/* ==========================================
   WHATSAPP BUTTON
========================================== */

.whatsapp-btn{

    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#ffffff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:2rem;

    z-index:999;

    box-shadow:
    0 10px 25px rgba(37,211,102,.35);

    transition:.4s ease;
}

.whatsapp-btn:hover{

    transform:scale(1.1);

    box-shadow:
    0 15px 35px rgba(37,211,102,.55);
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

    footer{

        padding:15px 15px 20px;
    }

    footer h2{

        font-size:2rem;
    }

    .social-icons{

        gap:12px;
    }

    .social-icons a{

        width:45px;
        height:45px;
    }

    .whatsapp-btn{

        width:60px;
        height:60px;

        font-size:1.8rem;

        right:20px;
        bottom:20px;
    }
}

/* ==========================================
   GOLD SHIMMER EFFECT
========================================== */

@keyframes shimmer{

    0%{
        background-position:-200% center;
    }

    100%{
        background-position:200% center;
    }
}

.logo h2{

    background:
    linear-gradient(
        90deg,
        #b8860b,
        #ffd700,
        #fff2a8,
        #ffd700,
        #b8860b
    );

    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:shimmer 6s linear infinite;
}

/* ==========================================
   IMAGE HOVER GLOW
========================================== */

.gallery-grid img,
.about-image img{

    filter:brightness(.95);
}

.gallery-grid img:hover,
.about-image img:hover{

    filter:brightness(1.08);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    footer .container{
        width:95%;
        max-width:1400px;
        margin:auto;
    }
    .footer-links{
        gap:40px;
    }

    .footer-tagline,
    .footer-services,
    .footer-location{
        max-width:1000px;
        margin:15px auto;
    }

    .gallery-grid{

        grid-template-columns:repeat(2,1fr);
    }

    .cta h2{
        font-size:2.6rem;
    }
}

@media(max-width:768px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-grid img{

        height:400px;
    }

    .testimonial-box{

        padding:45px 25px;
    }

    .testimonial-box p{

        font-size:1rem;
    }

    .cta h2{

        font-size:2rem;
    }

    .cta p{

        font-size:.95rem;
    }
}

@media(max-width:480px){

    .whatsapp-btn{

        width:58px;
        height:58px;

        font-size:1.6rem;
    }

    footer h2{

        font-size:1.6rem;
    }
}
/* MOBILE MENU */

@media(max-width:991px){

    .menu-btn{
        display:block;
        z-index:10001;
    }

    .navbar{

        position:absolute;

        top:100%;
        left:0;

        width:100%;

        background:#0a0a0a;

        display:none;

        padding:20px 0;

        border-top:1px solid rgba(255,255,255,.08);

        z-index:99999;
    }

    .navbar.mobile-active{
        display:block;
    }

    .navbar ul{

        flex-direction:column;

        text-align:center;

        gap:25px;
    }

    .navbar ul li a{

        display:block;

        padding:10px;

        width:100%;
    }
}
/* ==========================================
   GALLERY PAGE
========================================== */

.gallery-hero{

    min-height:60vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:#ffffff;

    padding:140px 20px 80px;
}

.gallery-hero span{

    
    color:var(--gold);

    letter-spacing:6px;

    font-size:.9rem;

    font-weight:600;
}

.gallery-hero h1{
 font-family:var(--playfair);

    font-size:3rem;

    line-height:1.2;

    color:#111;

    margin:20px 0;
}

.gallery-hero p{

    color:#666;

    font-size:1.2rem;

    max-width:700px;

    margin:0 auto;
}

.filter-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.filter-buttons button{

    background:transparent;

    border:1px solid var(--gold);

    color:solid var(--gold);

    padding:12px 25px;

    border-radius:40px;

    cursor:pointer;
}

.filter-buttons button.active{

    background:var(--gold);

    color:black;
}

.portfolio-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:25px;
}

.portfolio-item{

     position:relative;
    overflow:hidden;
    border-radius:20px;

    opacity:0;
    transform:translateY(40px);

    transition:.6s;
}

.portfolio-item.visible{

    opacity:1;

    transform:translateY(0);
}

.portfolio-item img{

   width:100%;
    height:420px;

    object-fit:cover;

    transition:.6s ease;
}
.overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );

    display:flex;

    align-items:flex-end;

    padding:25px;
}
.portfolio-item:hover img{

    transform:scale(1.08);
}
/* Show Overlay on Hover */

.portfolio-item:hover .overlay{

    opacity:1;
}

.overlay h3{

    color:#fff;

    font-family:var(--playfair);

    transform:translateY(20px);

    transition:.4s ease;
}

.portfolio-item:hover .overlay h3{

    transform:translateY(0);
}
/* LIGHTBOX */

.lightbox{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.95);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:9999;
}

.lightbox.show{

    display:flex;
}

.lightbox img{

    max-width:90%;
    max-height:85vh;

    border-radius:15px;
}

.close-lightbox{

    position:absolute;

    top:20px;
    right:30px;

    font-size:3rem;

    color:white;

    cursor:pointer;
}
/* CONTACT PAGE */

.contact-page{
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info,
.contact-form-box{

     background:#ffffff;

    border:2px solid #d4af37;

    border-radius:25px;
    height:auto;
    padding:35px;

    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.contact-info h2,
.contact-form-box h2{

    font-family:var(--playfair);
    margin-bottom:20px;
}

.info-box{

    display:flex;

    gap:20px;

    margin:20px 0;
}

.info-box i{

    color:var(--gold);

    font-size:1.4rem;
}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.contact-form-box input,
.contact-form-box textarea,
.contact-form-box select{
width:100%;

    background:#f8f8f8;

    border:1px solid #ddd;

    color:#111;

    padding:15px;

    border-radius:12px;

    font-size:1rem;
}

.contact-form-box button{
    border:none;
    cursor:pointer;
}
.contact-info:hover,
.contact-form-box:hover{

    transform:translateY(-5px);

    transition:.4s ease;

    box-shadow:0 10px 25px rgba(212,175,55,.15);
}
.map-box iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:20px;
}

.insta-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;
}

.insta-grid img{

    height:260px;

    object-fit:cover;

    border-radius:15px;

    transition:.4s;
}

.insta-grid img:hover{

    transform:scale(1.05);
}

@media(max-width:991px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .insta-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .contact-info,
    .contact-form-box{

        padding:25px;
    }

    .contact-info h2,
    .contact-form-box h2{

        font-size:2rem;
    }

    .info-box{

        gap:15px;
    }
}
/* ABOUT PAGE */

.about-story{
     background:#ffffff;
    padding:80px 0;
}

.vision-section{
     background:#ffffff;
    padding:80px 0;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.vision-card{
 text-align:center;

    padding:35px;

    border-radius:20px;

    background:#ffffff;

    border:2px solid var(--gold);

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.vision-card:hover{

    transform:translateY(-10px);

    border-color:rgba(212,175,55,.4);
}

.vision-card i{

    font-size:3rem;

    color:var(--gold);

    margin-bottom:20px;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}

.why-box{

    background:white;

    padding:30px;

    border-radius:15px;

    border:2px solid rgba(255,255,255,.08);
}

.why-box h3{

    color:var(--gold);

    margin-bottom:10px;
}
.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;
}

.timeline-item{

    text-align:center;

    padding:30px;

    border-radius:15px;

    background:white;
}

.timeline-item h3{

    color:var(--gold);

    font-size:2rem;

    margin-bottom:10px;
}

@media(max-width:991px){

    .vision-grid,
    .timeline{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .vision-grid,
    .why-grid,
    .timeline{

        grid-template-columns:1fr;
    }

    .vision-card,
    .why-box,
    .timeline-item{

        padding:25px;
    }

    .section-title h2{

        font-size:2rem;
    }
      .gallery-hero{

        min-height:auto;

        padding:120px 20px 60px;
    }

    .gallery-hero h1{

        font-size:2.2rem;

        line-height:1.2;

        margin:15px 0;
    }

    .gallery-hero p{

        font-size:1rem;

        line-height:1.7;

        max-width:300px;
    }

    .gallery-hero span{

        font-size:.8rem;

        letter-spacing:4px;
    }
}
/* ==========================================
   SERVICES PAGE
========================================== */

.services-page{
    background:#ffffff;
    padding:100px 0;
}

.service-package-grid{
     display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,380px));
    justify-content:center;
    gap:30px;
}

.service-package{
     width:100%;
    max-width:380px;
    background:#fff;
    border:2px solid #d4af37;
    border-radius:25px;
    padding:35px 25px;
    transition:.4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.service-package:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(212,175,55,.15);
}

.service-icon{
    text-align:center;
    margin-bottom:20px;
}

.service-icon i{
    font-size:2.5rem;
    color:#d4af37;
}

.service-package h3{
    font-family:var(--playfair);
    font-size:1.6rem;
    color:#111;
    text-align:center;
    margin-bottom:15px;
}

.service-package p{
    max-width:280px;
    margin:0 auto 20px;
    line-height:1.8;
}

.service-package ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-package li{
    padding:8px 0;
    color:#555;
   
}
.process-section{
    padding:100px 0;
    background:#fff;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-box{
    background:#fff;
    border:2px solid #d4af37;
    border-radius:20px;
    padding:30px;
    text-align:center;
}

.process-box h3{
    color:#d4af37;
    font-size:2rem;
    margin-bottom:10px;
}

.process-box h4{
    color:#111;
    margin-bottom:15px;
}

.process-box p{
    color:#666;
    line-height:1.8;
}
@media(max-width:991px){

    .service-package-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .service-package-grid,
    .process-grid{
        grid-template-columns:1fr;
    }

    .service-package{
        padding:30px 20px;
    }

    .service-package h3{
        font-size:1.4rem;
    }
}
.floating-social{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
    transition:.3s ease;
}

.floating-social a:hover{
    transform:scale(1.1);
}

.whatsapp{
    background:#25D366;
}

.instagram{
    background:linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888);
}

.facebook{
    background:#1877F2;
}

.youtube{
    background:#FF0000;
}

@media(max-width:768px){

    .floating-social{

        right:8px;

        bottom:20px;

        gap:10px;

        z-index:9999;
    }

    .floating-social a{

        width:45px;

        height:45px;

        font-size:20px;
    }

}
footer .footer-credit a,
footer .footer-credit a:link,
footer .footer-credit a:visited,
footer .footer-credit a:active{
    color:#d4af37 !important;
    text-decoration:none !important;
}

footer .footer-credit a:hover{
    color:#ffffff !important;
}
.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px 25px;
    margin:20px 0;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
}

.footer-tagline,
.footer-location{
    margin:8px 0;
    line-height:1.8;
}

.footer-credit a{
    color:var(--gold);
    text-decoration:none;
}

.footer-credit a:hover{
    text-decoration:underline;
}
.footer-phone a,
.footer-website a{
    color:#d4af37;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.footer-phone a:hover,
.footer-website a:hover{
    color:#ffffff;
}

hr{
    border:none;
    height:1px;
    background:rgba(212,175,55,.2);
    width:90%;
    margin:25px auto;
}
.footer-services{
    line-height:1.8;
    max-width:900px;
    margin:15px auto;
}