/*
==================================================
VELORA SPA DHA
PREMIUM LUXURY SPA
PART 4A
==================================================
*/

/*=========================
RESET
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#080808;
    color:#ffffff;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=========================
ROOT COLORS
=========================*/

:root{

    --primary:#d1001f;
    --primary-dark:#780015;

    --black:#050505;
    --black-light:#111111;

    --white:#ffffff;

    --gray:#bfbfbf;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 20px 60px rgba(0,0,0,.35);

    --radius:18px;

    --gradient:
    linear-gradient(
    135deg,
    #ff1e3c,
    #85001a
    );

}

/*=========================
COMMON
=========================*/

section{
    padding:100px 0;
}

.section-subtitle{

    color:#ff425e;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:auto auto 70px;

}

.section-title h2{

    font-size:48px;

    font-family:'Cormorant Garamond',serif;

    margin:15px 0;

}

.section-title p{

    color:#cfcfcf;

}

/*=========================
BUTTONS
=========================*/

.primary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    background:var(--gradient);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(209,0,31,.35);

}

.secondary-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:16px 34px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.25);

    transition:.35s;

}

.secondary-btn:hover{

    background:#fff;

    color:#000;

}

/*=========================
HEADER
=========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    transition:.35s;

    backdrop-filter:blur(12px);

    background:rgba(8,8,8,.72);

    border-bottom:1px solid var(--border);

}

.nav-container{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    font-size:36px;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;

}

.logo span{

    color:#ff3657;

}

.navbar ul{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    color:#fff;

    transition:.3s;

    font-size:15px;

}

.navbar a:hover{

    color:#ff3657;

}

.header-buttons{

    display:flex;

    gap:15px;

}

.call-btn,
.whatsapp-btn{

    padding:13px 24px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.call-btn{

    background:#fff;

    color:#000;

}

.call-btn:hover{

    transform:translateY(-3px);

}

.whatsapp-btn{

    background:var(--gradient);

}

.whatsapp-btn:hover{

    transform:translateY(-3px);

}

.menu-toggle{

    display:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;

    height:3px;

    margin:6px;

    background:#fff;

}

/*=========================
HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    background:
    linear-gradient(
    rgba(0,0,0,.75),
    rgba(0,0,0,.80)
    ),
    url("assets/images/hero-spa.jpg");

    background-size:cover;

    background-position:center;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(255,30,60,.18),
    transparent 40%);

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:70px;

    position:relative;

    z-index:2;

}

.hero-tag{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:40px;

    margin-bottom:20px;

    color:#ff4765;

}

.hero-content h1{

    font-size:72px;

    line-height:1.1;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:25px;

}

.hero-content p{

    color:#ddd;

    max-width:620px;

    margin-bottom:35px;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-bottom:50px;

}

.hero-image img{

    border-radius:25px;

    box-shadow:var(--shadow);

}

.hero-stats{

    display:flex;

    gap:20px;

}

.stat-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:16px;

    padding:20px 30px;

    text-align:center;

}

.stat-box h3{

    font-size:32px;

    color:#ff3657;

}

.stat-box p{

    font-size:14px;

    color:#d6d6d6;

}

/*=========================
SCROLL ICON
=========================*/

.scroll-down{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

}

.scroll-down span{

    display:block;

    width:28px;

    height:45px;

    border:2px solid #fff;

    border-radius:30px;

    position:relative;

}

.scroll-down span::before{

    content:"";

    position:absolute;

    width:6px;

    height:6px;

    background:#fff;

    border-radius:50%;

    left:50%;

    transform:translateX(-50%);

    top:8px;

    animation:scroll 2s infinite;

}

@keyframes scroll{

    0%{

        opacity:1;

        top:8px;

    }

    100%{

        opacity:0;

        top:26px;

    }

}

/*==================================================
    ABOUT SECTION
==================================================*/

.about{

    background:#0b0b0b;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:22px;

    box-shadow:var(--shadow);

    transition:.4s;

}

.about-image:hover img{

    transform:scale(1.03);

}

.about-content h2{

    font-size:52px;

    font-family:'Cormorant Garamond',serif;

    margin:18px 0 25px;

    line-height:1.15;

}

.about-content p{

    color:#c8c8c8;

    margin-bottom:18px;

}

.about-features{

    margin:35px 0;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    color:#ffffff;

    background:#121212;

    padding:16px 18px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.feature:hover{

    background:var(--gradient);

    transform:translateY(-5px);

}

.feature i{

    color:#ff4b68;

    font-size:18px;

}



/*==================================================
    SERVICES
==================================================*/

.services{

    background:#080808;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:#111111;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.05);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.45s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:28px;

}

.service-content h3{

    font-size:24px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:15px;

}

.service-content p{

    color:#c8c8c8;

    font-size:15px;

}



/*==================================================
    HOVER BORDER EFFECT
==================================================*/

.service-card{

    position:relative;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:var(--gradient);

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}



/*==================================================
    ICON BOX
==================================================*/

.service-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

}

.service-icon i{

    font-size:28px;

    color:#ff4d67;

}



/*==================================================
    BUTTON SPACE
==================================================*/

.about .primary-btn{

    margin-top:10px;

}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px){

.about-grid{

    grid-template-columns:1fr;

}

.about-content{

    order:2;

}

.about-image{

    order:1;

}

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.about-content h2{

    font-size:40px;

}

.about-features{

    grid-template-columns:1fr;

}

.services-grid{

    grid-template-columns:1fr;

}

.service-card img{

    height:240px;

}

}

@media(max-width:576px){

.about{

    padding:70px 0;

}

.services{

    padding:70px 0;

}

.about-content h2{

    font-size:34px;

}

.service-content{

    padding:22px;

}

}

/*==================================================
    WHY CHOOSE US
==================================================*/

.why-section{

    background:#0a0a0a;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.why-card{

    background:#111;

    padding:35px 25px;

    border-radius:20px;

    text-align:center;

    border:1px solid rgba(255,255,255,.05);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    background:linear-gradient(180deg,#161616,#0d0d0d);

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.why-card .icon{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--gradient);

    color:#fff;

    font-size:28px;

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.why-card p{

    color:#c8c8c8;

}



/*==================================================
    GALLERY
==================================================*/

.gallery{

    background:#080808;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.65),
    transparent);

    opacity:0;

    transition:.35s;

}

.gallery-item:hover::after{

    opacity:1;

}



/*==================================================
    FAQ
==================================================*/

.faq{

    background:#0b0b0b;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#121212;

    border-radius:16px;

    margin-bottom:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.05);

}

.faq-question{

    width:100%;

    background:none;

    color:#fff;

    border:none;

    padding:22px;

    font-size:17px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.faq-question span{

    font-size:24px;

    color:#ff3657;

}

.faq-answer{

    display:none;

    padding:0 22px 22px;

    color:#cfcfcf;

    line-height:1.8;

}



/*==================================================
    CONTACT
==================================================*/

.contact{

    background:#080808;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

}

.contact-info{

    background:#121212;

    padding:40px;

    border-radius:20px;

}

.contact-info h3{

    font-size:34px;

    margin-bottom:25px;

    font-family:'Cormorant Garamond',serif;

}

.contact-info p{

    margin-bottom:18px;

    color:#d3d3d3;

}

.contact-info i{

    color:#ff3657;

    margin-right:10px;

}

.contact-form{

    background:#121212;

    padding:40px;

    border-radius:20px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px;

    margin-bottom:18px;

    background:#1a1a1a;

    color:#fff;

    border:1px solid rgba(255,255,255,.08);

    border-radius:12px;

    outline:none;

    transition:.3s;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#ff3657;

}

.contact-form textarea{

    min-height:170px;

    resize:none;

}

.contact-form button{

    width:100%;

    padding:16px;

    border:none;

    border-radius:50px;

    background:var(--gradient);

    color:#fff;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    transform:translateY(-3px);

}

.map{

    margin-top:60px;

    border-radius:20px;

    overflow:hidden;

}

.map iframe{

    width:100%;

    height:420px;

    border:0;

}



/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:992px){

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

.contact-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.why-grid{

    grid-template-columns:1fr;

}

.contact-info,

.contact-form{

    padding:30px;

}

}

@media(max-width:576px){

.gallery-item img{

    height:260px;

}

.faq-question{

    font-size:15px;

}

.contact-info h3{

    font-size:28px;

}

}

/*==================================================
    FOOTER
==================================================*/

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.08);

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

}

.footer h3{

    font-size:28px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:20px;

}

.footer p{

    color:#bfbfbf;

    line-height:1.8;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cfcfcf;

    transition:.3s;

}

.footer ul li a:hover{

    color:#ff3657;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#141414;

    color:#fff;

    transition:.35s;

}

.social-icons a:hover{

    background:var(--gradient);

    transform:translateY(-5px);

}

.copyright{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#999;

    font-size:14px;

}



/*==================================================
    FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    transition:.35s;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

}



/*==================================================
    BACK TO TOP
==================================================*/

.back-top{

    position:fixed;

    left:25px;

    bottom:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:999;

    transition:.35s;

}

.back-top:hover{

    transform:translateY(-5px);

}



/*==================================================
    CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0d0d0d;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(#ff3657,#8b0018);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff3657;

}



/*==================================================
    SIMPLE FADE ANIMATION
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-content,
.about-content,
.service-card,
.why-card,
.gallery-item,
.contact-info,
.contact-form{

    animation:fadeUp .8s ease;

}



/*==================================================
    MOBILE NAVIGATION
==================================================*/

@media(max-width:992px){

.menu-toggle{

    display:block;

}

.navbar{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:#0b0b0b;

    display:none;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.navbar.active{

    display:block;

}

.navbar ul{

    flex-direction:column;

    gap:18px;

}

.header-buttons{

    display:none;

}

.hero-wrapper{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content{

    order:2;

}

.hero-image{

    order:1;

    max-width:500px;

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-stats{

    justify-content:center;

    flex-wrap:wrap;

}

}



/*==================================================
    TABLET
==================================================*/

@media(max-width:768px){

section{

    padding:80px 0;

}

.hero-content h1{

    font-size:48px;

}

.section-title h2{

    font-size:38px;

}

.about-content h2{

    font-size:38px;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.social-icons{

    justify-content:center;

}

}



/*==================================================
    MOBILE
==================================================*/

@media(max-width:576px){

.container{

    width:92%;

}

.hero{

    min-height:auto;

    padding:140px 0 90px;

}

.hero-content h1{

    font-size:38px;

}

.hero-content p{

    font-size:15px;

}

.hero-buttons{

    flex-direction:column;

}

.primary-btn,

.secondary-btn{

    width:100%;

    justify-content:center;

}

.stat-box{

    width:100%;

}

.scroll-down{

    display:none;

}

.footer{

    padding:60px 0 25px;

}

.floating-whatsapp{

    width:55px;

    height:55px;

    right:18px;

    bottom:18px;

}

.back-top{

    width:50px;

    height:50px;

    left:18px;

    bottom:18px;

}

}