/*======================================
  GOOGLE FONTS
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/*======================================
  ROOT VARIABLES
======================================*/

:root{

    --primary:#D4AF37;
    --primary-dark:#B68C20;

    --black:#000000;
    --dark:#111111;
    --dark-light:#1B1B1B;

    --white:#FFFFFF;
    --text:#DDDDDD;
    --text-light:#999999;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.06);

    --shadow:0 15px 40px rgba(0,0,0,.45);

    --radius:18px;

    --transition:.35s ease;

    --container:1280px;

}


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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

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

    background:var(--black);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea{

    font-family:inherit;

    outline:none;

}


/*======================================
  SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}


/*======================================
  COMMON CLASSES
======================================*/

.container{

    width:92%;

    max-width:var(--container);

    margin:auto;

}

.section{

    padding:110px 0;

}

.section-subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:.95rem;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:14px;

}

.section-title{

    font-family:'Cinzel',serif;

    font-size:clamp(2rem,4vw,3.5rem);

    line-height:1.2;

    margin-bottom:20px;

}

.section-description{

    max-width:650px;

    color:var(--text);

    margin:auto;

}


/*======================================
  BUTTONS
======================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-gold{

    background:var(--primary);

    color:var(--black);

}

.btn-gold:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:var(--black);

}


/*======================================
  GLASS CARD
======================================*/

.glass{

    background:var(--glass);

    backdrop-filter:blur(15px);

    -webkit-backdrop-filter:blur(15px);

    border:1px solid var(--border);

    border-radius:var(--radius);

}


/*======================================
  SELECTION
======================================*/

::selection{

    background:var(--primary);

    color:var(--black);

}
/*======================================
  LOADER
======================================*/

#loader{

    position:fixed;

    inset:0;

    background:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    z-index:99999;

    transition:.6s ease;

}

#loader img{

    width:180px;

    animation:loaderZoom 2s ease infinite;

}

#loader.hide{

    opacity:0;

    visibility:hidden;

}

@keyframes loaderZoom{

    0%{

        transform:scale(.95);

        opacity:.7;

    }

    50%{

        transform:scale(1);

        opacity:1;

    }

    100%{

        transform:scale(.95);

        opacity:.7;

    }

}


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

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    padding:12px 0;

    transition:.35s ease;

}

#header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

}

#header.scrolled{

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

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:12px 0;

}


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

.logo{

    display:flex;

    align-items:center;

}
.logo{
    flex-shrink:0;
}

.logo img{
    display:block;
}

.logo img{

    height:90px;

    width:auto;

    transition:.35s;

}

#header.scrolled .logo img{

    height:95px;
    max-width:none;

}


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

.navbar ul{

    display:flex;

    align-items:center;

    gap:36px;

}

.navbar a{

    color:#fff;

    font-size:.95rem;

    font-weight:500;

    transition:.3s;

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover{

    color:var(--primary);

}

.navbar a:hover::after{

    width:100%;

}
.navbar a.active,
#mobile-menu a.active{

    color: var(--primary);

}

.navbar a.active::after{

    width:100%;

}

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

.header-buttons{

    display:flex;

    align-items:center;

    gap:12px;

}

.call-btn,

.whatsapp-btn{

    padding:12px 24px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    transition:.35s;

}

.call-btn{

    background:var(--primary);

    color:#000;

}

.call-btn:hover{

    background:#fff;

}

.whatsapp-btn{

    border:2px solid var(--primary);

    color:var(--primary);

}

.whatsapp-btn:hover{

    background:var(--primary);

    color:#000;

}


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

#menu-btn{

    display:none;

    width:50px;

    height:50px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    align-items:center;

    justify-content:center;

}

#menu-btn i{
    font-size:24px;
    color:#D4AF37;

}


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

#mobile-menu{

    position:fixed;

    top:0;

    right:-100%;

    width:300px;

    height:100vh;

    background:#0d0d0d;

    z-index:9999;

    padding:110px 35px;

    transition:.45s ease;

    border-left:1px solid rgba(255,255,255,.08);

}

#mobile-menu.active{

    right:0;

}

#mobile-menu ul{

    display:flex;

    flex-direction:column;

    gap:28px;

}

#mobile-menu a{

    color:#fff;

    font-size:1.05rem;

    transition:.3s;

}

#mobile-menu a:hover{

    color:var(--primary);

}


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

.mobile-overlay{

    position:fixed;

    inset:0;

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

    backdrop-filter:blur(3px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:9998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}


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

@media(max-width:992px){

.navbar{

    display:none;

}

.header-buttons{

    display:none;

}

#menu-btn{

    display:flex;

}

.logo img{

    height:95px;
    max-width:none;

}

}
/*======================================
  HERO SECTION
======================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../assets/images/hero.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,0,0,.88) 15%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.20) 100%);

}

.hero-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:40px;

    padding-top:150px;

}

.hero-content{

    max-width:650px;

}
.hero-content p{
    margin-bottom:24px !important;
}

.hero-tag{
    margin-bottom:18px !important;
}

.hero-content h1{
    margin-bottom:18px !important;
}
.hero-tag{

    display:inline-block;

    background:rgba(212,175,55,.15);

    border:1px solid rgba(212,175,55,.35);

    color:var(--primary);

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    font-weight:600;

    letter-spacing:1px;

}

.hero-content h1{

    font-family:'Cinzel',serif;

    font-size:clamp(3rem,7vw,5.4rem);

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    color:var(--text);

    font-size:1.05rem;

    max-width:560px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:50px;

}


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

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

}

.feature{

    display:flex;

    align-items:center;

    gap:10px;

}

.feature img{

    width:18px;

}

.feature span{

    color:#ddd;

    font-size:.95rem;

}


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

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:flex-end;

}

.hero-image img{

    width:92%;

    max-width:430px;

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}


/*======================================
  SCROLL INDICATOR
======================================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    color:#fff;

    z-index:5;

    animation:scrollMove 2s infinite;

}

.scroll-down span{

    font-size:.8rem;

    letter-spacing:2px;

    text-transform:uppercase;

}

@keyframes scrollMove{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,12px);

    }

    100%{

        transform:translate(-50%,0);

    }

}


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

.about{

    background:#070707;

}

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:25px;

}

.about-image img{

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-content p{

    color:var(--text);

    margin-bottom:20px;

}


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

.about-stats{

    display:grid;

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

    gap:20px;

    margin-top:40px;

}

.stat-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:28px 15px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

}

.stat-card h3{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    color:#ccc;

    margin:0;

}


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

@media(max-width:992px){

.hero-container{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}
.hero-buttons{
    gap:12px !important;
    margin-bottom:28px !important;
}
.hero-features{

    justify-content:center;

}
.hero-features{
    gap:12px !important;
    margin-top:10px;
}

.feature{
    gap:8px;
}

.feature span{
    font-size:.88rem;
}
.hero-image{

    margin-top:-60px;
    display:flex;
    justify-content:center;
    align-items:flex-end;

}

.about-container{

    grid-template-columns:1fr;

}

.about-stats{

    grid-template-columns:1fr;

}

}
/*======================================
  SERVICES SECTION
======================================*/

.services{

    background:#000;

    overflow:hidden;

}

.services .section-description{

    margin-bottom:60px;

}

.services-slider{

    display:flex;

    gap:28px;

    overflow-x:auto;

    padding:10px 4% 30px;

    scroll-behavior:smooth;

    scroll-snap-type:x mandatory;

}

.services-slider::-webkit-scrollbar{

    height:8px;

}

.services-slider::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}


/*======================================
  SERVICE CARD
======================================*/

.service-card{

    flex:0 0 330px;

    scroll-snap-align:start;

    background:#111;

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

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

}

.service-card img{

    height:360px;

    object-fit:cover;

    transition:.5s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:25px;

}

.service-content h3{

    font-family:'Cinzel',serif;

    color:var(--primary);

    margin-bottom:12px;

    font-size:1.45rem;

}

.service-content p{

    color:var(--text);

    font-size:.95rem;

}


/*======================================
  OFFER SECTION
======================================*/

.offer{

    position:relative;

    padding:0;

    overflow:hidden;

}

.offer-bg img{

    width:100%;

    height:520px;

    object-fit:cover;

}

.offer-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:center;

    background:linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.75));

}

.offer-overlay .container{

    max-width:700px;

}

.offer-overlay h2{

    font-family:'Cinzel',serif;

    font-size:clamp(2.3rem,5vw,4rem);

    margin-bottom:20px;

}

.offer-overlay p{

    color:#ddd;

    margin-bottom:35px;

}


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

.gallery{

    background:#090909;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:60px;

}

.gallery-item{

    overflow:hidden;

    border-radius:22px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    height:340px;

    object-fit:cover;

    transition:.55s;

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.45));

    opacity:0;

    transition:.35s;

    z-index:2;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item:hover img{

    transform:scale(1.08);

}


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

.gallery-item,

.service-card{

    box-shadow:0 10px 35px rgba(0,0,0,.25);

}


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

@media(max-width:992px){

.service-card{

    flex:0 0 290px;

}

.service-card img{

    height:320px;

}

.offer-bg img{

    height:430px;

}

.offer-overlay{

    text-align:center;

}

.offer-overlay .container{

    width:92%;

}

.gallery-item img{

    height:280px;

}

}

@media(max-width:576px){

.services-slider{

    padding-left:20px;

}

.service-card{

    flex:0 0 270px;

}

.offer-bg img{

    height:360px;

}

.gallery-grid{

    grid-template-columns:1fr;

}

}
/*======================================
  TESTIMONIALS
======================================*/

.testimonials{

    background:#070707;

    overflow:hidden;

}

.testimonial-slider{

    display:flex;

    gap:30px;

    margin-top:60px;

    overflow-x:auto;

    scroll-snap-type:x mandatory;

    scroll-behavior:smooth;

    padding-bottom:20px;

}

.testimonial-slider::-webkit-scrollbar{

    display:none;

}

.testimonial-card{

    flex:0 0 380px;

    scroll-snap-align:center;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

    transition:var(--transition);

}

.testimonial-card:hover{

    transform:translateY(-10px);

    border-color:var(--primary);

}

.testimonial-card img{

    height:260px;

    object-fit:cover;

}

.testimonial-content{

    padding:28px;

}

.testimonial-content h3{

    font-family:'Cinzel',serif;

    color:var(--primary);

    margin-bottom:12px;

}

.testimonial-content p{

    color:var(--text);

    margin-bottom:20px;

}

.stars{

    display:flex;

    gap:5px;

}

.stars img{

    width:18px;

    height:18px;

}


/*======================================
  CTA SECTION
======================================*/

.cta{

    position:relative;

    background:url("../assets/images/cta-bg.jpg")
    center/cover no-repeat;

    padding:120px 0;

}

.cta::before{

    content:"";

    position:absolute;

    inset:0;

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

}

.cta .container{

    position:relative;

    z-index:2;

    text-align:center;

    max-width:850px;

}

.cta h2{

    font-family:'Cinzel',serif;

    font-size:clamp(2.2rem,5vw,4rem);

    margin-bottom:20px;

}

.cta p{

    color:#ddd;

    margin-bottom:35px;

}


/*======================================
  CONTACT SECTION
======================================*/

.contact{

    background:#000;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:60px;

}

.contact-info p{

    color:var(--text);

}

.contact-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px;

    margin-top:22px;

    transition:var(--transition);

}

.contact-card:hover{

    border-color:var(--primary);

    transform:translateY(-6px);

}

.contact-card img{

    width:28px;

}

.contact-card h4{

    margin-bottom:8px;

    color:var(--primary);

    font-size:1.1rem;

}

.contact-card a{

    color:var(--primary);

}

.contact-map{

    border-radius:22px;

    overflow:hidden;

    min-height:520px;

}

.contact-map iframe{

    width:100%;

    height:100%;

    border:none;

}


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

footer{

    background:#090909;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0 30px;

    text-align:center;

}

.footer-logo{

    width:130px;

    margin:0 auto 25px;

}

footer p{

    color:var(--text);

}

.footer-links{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:28px;

    margin:35px 0;

}

.footer-links a{

    transition:var(--transition);

}

.footer-links a:hover{

    color:var(--primary);

}

.footer-social{

    display:flex;

    justify-content:center;

    margin-bottom:30px;

}

.footer-social a{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:var(--transition);

}

.footer-social a:hover{

    background:var(--primary);

}

.footer-social img{

    width:24px;

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:35px;

    padding-top:25px;

    font-size:.9rem;

    color:#888;

}


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

@media(max-width:768px){

.mobile-action-bar{

    display:flex;

}

.floating-call,
.floating-whatsapp,
.floating-direction{

    display:none;

}

#backToTop{

    bottom:90px;

    left:15px;

}

}

@media(max-width:576px){

#backToTop{

    width:52px;

    height:52px;

    font-size:1rem;

}

.mobile-action-bar{

    padding:10px 5px;

}

.mobile-action-bar span{

    font-size:.72rem;

}

}
/*======================================
  SMOOTH SECTION TRANSITIONS
======================================*/

section{

    position:relative;

    overflow:hidden;

}

section::before{

    content:"";

    position:absolute;

    inset:0;

    pointer-events:none;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.04),
    transparent 45%);

}


/*======================================
  LUXURY GOLD GRADIENTS
======================================*/

.gold-text{

    background:linear-gradient(
        90deg,
        #fff6c9 0%,
        #D4AF37 30%,
        #FFD95A 60%,
        #B8860B 100%
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.gold-border{

    position:relative;

}

.gold-border::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:inherit;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.15),
        rgba(212,175,55,.65)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

}


/*======================================
  GLASS ENHANCEMENTS
======================================*/

.glass{

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
        0 10px 35px rgba(0,0,0,.25),
        inset 0 1px 0 rgba(255,255,255,.08);

}


/*======================================
  PREMIUM CARD EFFECTS
======================================*/

.service-card,
.testimonial-card,
.contact-card,
.stat-card{

    position:relative;

    overflow:hidden;

}

.service-card::before,
.testimonial-card::before,
.contact-card::before,
.stat-card::before{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:80px;

    height:220%;

    background:rgba(255,255,255,.08);

    transform:rotate(25deg);

    transition:.8s;

}

.service-card:hover::before,
.testimonial-card:hover::before,
.contact-card:hover::before,
.stat-card:hover::before{

    left:130%;

}


/*======================================
  BUTTON RIPPLE STYLE
======================================*/

.btn{

    position:relative;

    overflow:hidden;

}

.btn::after{

    content:"";

    position:absolute;

    width:20px;

    height:20px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    transform:scale(0);

    opacity:0;

    transition:.5s;

}

.btn:hover::after{

    transform:scale(18);

    opacity:1;

}


/*======================================
  FOCUS STATES
======================================*/

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:4px;

}


/*======================================
  GPU ACCELERATION
======================================*/

.hero-image img,
.gallery-item img,
.service-card img,
.testimonial-card,
.stat-card,
.contact-card{

    will-change:transform;

    transform:translateZ(0);

    backface-visibility:hidden;

}


/*======================================
  LARGE SCREEN OPTIMIZATION
======================================*/

@media(min-width:1440px){

.container{

    max-width:1380px;

}

.hero-content h1{

    font-size:6rem;

}

.hero-content p{

    font-size:1.15rem;

}

.section{

    padding:140px 0;

}

.service-card{

    flex:0 0 360px;

}

.gallery-item img{

    height:380px;

}

.testimonial-card{

    flex:0 0 420px;

}

}


/*======================================
  EXTRA SMALL DEVICES
======================================*/

@media(max-width:400px){

.hero-content h1{

    font-size:2.4rem;

}

.section{

    padding:75px 0;

}

.hero-buttons{

    flex-direction:column;

}

.btn{

    width:100%;

}

.contact-card{

    padding:18px;

}

.footer-links{

    gap:12px;

}

}
/*======================================
  FINAL PRODUCTION POLISH
======================================*/


/*======================================
  PERFORMANCE
======================================*/

html{

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

body{

    min-width:320px;

}


/*======================================
  LAZY LOADED IMAGES
======================================*/

img[loading="lazy"]{

    background:#111;

}


/*======================================
  FORM ELEMENTS
======================================*/

input,
textarea,
select{

    width:100%;

    color:var(--white);

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    padding:15px 18px;

    transition:var(--transition);

}

input::placeholder,
textarea::placeholder{

    color:#777;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(212,175,55,.15);

}


/*======================================
  UTILITY CLASSES
======================================*/

.text-center{

    text-align:center;

}

.text-left{

    text-align:left;

}

.text-right{

    text-align:right;

}

.w-100{

    width:100%;

}

.d-none{

    display:none!important;

}

.d-flex{

    display:flex;

}

.justify-center{

    justify-content:center;

}

.align-center{

    align-items:center;

}

.mt-1{

    margin-top:10px;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:30px;

}

.mt-4{

    margin-top:40px;

}

.mb-1{

    margin-bottom:10px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:30px;

}

.mb-4{

    margin-bottom:40px;

}


/*======================================
  HIDE SCROLLBAR (OPTIONAL)
======================================*/

.no-scrollbar{

    -ms-overflow-style:none;

    scrollbar-width:none;

}

.no-scrollbar::-webkit-scrollbar{

    display:none;

}


/*======================================
  REDUCED MOTION
======================================*/

@media(prefers-reduced-motion:reduce){

*{

    animation:none!important;

    transition:none!important;

    scroll-behavior:auto!important;

}

}


/*======================================
  PRINT STYLE
======================================*/

@media print{

header,
footer,
.mobile-action-bar,
.floating-call,
.floating-whatsapp,
.floating-direction,
#backToTop{

    display:none!important;

}

body{

    background:#fff;

    color:#000;

}

a{

    color:#000;

    text-decoration:underline;

}

}


/*======================================
  SAFARI FIXES
======================================*/

img{

    -webkit-user-drag:none;

}

button{

    -webkit-appearance:none;

    appearance:none;

}


/*======================================
  FINAL SHADOW SYSTEM
======================================*/

.shadow-sm{

    box-shadow:0 8px 20px rgba(0,0,0,.18);

}

.shadow-md{

    box-shadow:0 15px 35px rgba(0,0,0,.28);

}

.shadow-lg{

    box-shadow:0 25px 55px rgba(0,0,0,.40);

}


/*======================================
  BORDER RADIUS UTILITIES
======================================*/

.rounded{

    border-radius:var(--radius);

}

.rounded-lg{

    border-radius:28px;

}

.rounded-full{

    border-radius:999px;

}


/*======================================
  OPACITY UTILITIES
======================================*/

.opacity-0{

    opacity:0;

}

.opacity-50{

    opacity:.5;

}

.opacity-75{

    opacity:.75;

}

.opacity-100{

    opacity:1;

}


/*======================================
  FINAL SELECTION
======================================*/

::selection{

    background:var(--primary);

    color:#000;

}
/*==============================
RIPPLE EFFECT
==============================*/

.btn{

    position:relative;

    overflow:hidden;

}

.ripple{

    position:absolute;

    border-radius:50%;

    transform:scale(0);

    background:rgba(255,255,255,.45);

    animation:ripple .6s linear;

    pointer-events:none;

}

@keyframes ripple{

    to{

        transform:scale(4);

        opacity:0;

    }

}
/*==============================
SCROLL ANIMATION
==============================*/

.fade-up,
.fade-left,
.fade-right{

    opacity:0;

    transition:.8s ease;

}

.fade-up{

    transform:translateY(40px);

}

.fade-left{

    transform:translateX(-40px);

}

.fade-right{

    transform:translateX(40px);

}

.show{

    opacity:1;

    transform:translate(0);

}
/* Premium Mobile Action Bar */
.mobile-action-bar{
    background:rgba(10,10,10,.92)!important;
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-top:1px solid rgba(212,175,55,.25);
    box-shadow:0 -10px 30px rgba(0,0,0,.45);
}

.mobile-action-bar a{
    transition:.35s ease;
}

.mobile-action-bar a:hover,
.mobile-action-bar a:active{
    color:#D4AF37;
    transform:translateY(-2px);
}

@media (max-width:768px){

.contact-wrapper{
    display:flex;
    flex-direction:column;
}

.contact-map{
    width:100%;
    margin-top:30px;
}

.contact-map iframe{
    width:100%;
    height:320px;
}

}

/* ===== Mobile Action Bar Complete ===== */

.mobile-action-bar{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:72px;
    display:none;
    justify-content:space-around;
    align-items:center;
    background:rgba(10,10,10,.95);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-top:1px solid rgba(212,175,55,.25);
    box-shadow:0 -8px 25px rgba(0,0,0,.45);
    z-index:9999;
}

.mobile-action-bar a{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    gap:5px;
}

.mobile-action-bar a img{
    width:24px !important;
    height:24px !important;
    display:block;
    object-fit:contain;
}

.mobile-action-bar span{
    font-size:11px;
    font-weight:600;
    line-height:1;
}

@media(max-width:768px){
    .mobile-action-bar{
        display:flex;
    }
}

@media (max-width:768px){

    .hero-buttons .btn{
        padding:13px 26px;
        font-size:16px;
    }

}
@media (max-width:768px){

    .hero-container{
        padding-top:120px !important;
        gap:10px !important;
    }

    .hero-content{
        margin-bottom:0 !important;
    }

    .hero-image{
        margin-top:-20px !important;
    }

    .hero-image img{
        max-width:380px !important;
        width:90% !important;
    }

    .scroll-down{
        bottom:85px !important;
    }

}
/* ===== MOBILE HERO FINAL POLISH ===== */
@media (max-width:768px){

    /* Hero Layout */
    .hero-container{
        padding-top:115px !important;
        gap:8px !important;
    }

    /* Hero Heading */
    .hero-content h1{
        font-size:3.2rem !important;
        line-height:1.08 !important;
        margin-bottom:16px !important;
    }

    /* Hero Paragraph */
    .hero-content p{
        font-size:1rem !important;
        line-height:1.55 !important;
        margin-bottom:20px !important;
        max-width:95% !important;
    }

    /* Hero Buttons */
    .hero-buttons{
        gap:10px !important;
        margin-bottom:20px !important;
    }

    .hero-buttons .btn{
        padding:12px 24px !important;
        font-size:16px !important;
    }

    /* Features */
    .hero-features{
        gap:10px !important;
    }

    .feature span{
        font-size:15px !important;
    }

    /* Hero Model */
    .hero-image{
        margin-top:-15px !important;
    }

    .hero-image img{
        width:88% !important;
        max-width:360px !important;
    }

}
/* ===== HERO MOBILE FINAL BALANCE ===== */
@media (max-width:768px){

    .hero{
        min-height:900px !important;
    }

    .hero-container{
        padding-top:110px !important;
        gap:0 !important;
    }

    .hero-content h1{
        font-size:2.65rem !important;
        line-height:1.1 !important;
    }

    .hero-content p{
        font-size:0.95rem !important;
        margin-bottom:18px !important;
    }

    .hero-buttons{
        margin-bottom:15px !important;
    }

    .hero-image{
        margin-top:-80px !important;
    }

    .hero-image img{
        width:95% !important;
        max-width:430px !important;
    }

    .hero-features{
        margin-top:10px !important;
    }
}
/* Mobile Hero Final Cleanup */
@media (max-width:768px){

    .hero-features{
        display:none !important;
    }

    .hero-image{
        margin-top:-35px !important;
    }

    .hero-image img{
        width:100% !important;
        max-width:420px !important;
    }
}
/* ===== MOBILE OFFER SECTION BRIGHTER ===== */
.offer-overlay{
    background:linear-gradient(
        rgba(0,0,0,.15),
        rgba(0,0,0,.15)
    ) !important;
}

.offer-bg img{
    filter:brightness(1.15) contrast(1.05);
}
/* ===== Mobile Offer & CTA Brighter ===== */
@media (max-width:768px){

    .offer-overlay{
        background:linear-gradient(
            rgba(0,0,0,.25),
            rgba(0,0,0,.25)
        ) !important;
    }

    .cta::before{
        background:rgba(0,0,0,.25) !important;
    }

}
/* ===== Mobile CTA Button Polish ===== */
@media (max-width:768px){

    .cta .btn-outline{
        background:rgba(0,0,0,.28);
        color:#FFD54A !important;
        border:2px solid #D4AF37;
        backdrop-filter:blur(6px);
    }

}
/* ===== Remove Gap Before Footer ===== */

.contact{
    padding-bottom:0 !important;
    margin-bottom:0 !important;
}

.contact-wrapper{
    margin-bottom:0 !important;
    padding-bottom:0 !important;
}

.contact-map{
    margin-bottom:0 !important;
}

.contact-map iframe{
    display:block;
    margin-bottom:0 !important;
}

footer{
    margin-top:0 !important;
    padding-top:40px !important;
}

@media (max-width:768px){

    .contact{
        padding-bottom:0 !important;
    }

    footer{
        margin-top:0 !important;
        padding-top:35px !important;
    }

}
/* ===== FINAL CONTACT & FOOTER SPACING ===== */

.contact.section{
    padding-top:80px !important;
    padding-bottom:20px !important;
}

.contact-wrapper{
    margin-top:40px !important;
}

.contact-map{
    min-height:auto !important;
}

.contact-map iframe{
    height:320px !important;
    display:block;
}

footer{
    padding-top:30px !important;
    margin-top:0 !important;
}

/*======================================
  END OF FILE
======================================*/

/*

Project :
New AC Big Boss Family Salon

Theme :
Luxury Black & Gold

Responsive :
Desktop
Laptop
Tablet
Mobile

Author :
ChatGPT

Version :
1.0

*/