:root{
    --primary:#9F5BFF;
    --secondary:#D6B1FF;
    --gold:#D4AF37;
    --dark:#09090f;
    --dark2:#111118;
    --dark3:#181822;
    --text:#f5f5f7;
    --muted:#b7b7c5;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #6b6b6b;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #6b6b6b transparent;
}

body{
    background:var(--dark);
    color:var(--text);
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5,h6{
    /* font-family:'Cormorant Garamond',serif; */
    font-weight:700;
    letter-spacing:.5px;
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
}

.section-padding{
    padding: 75px 0;
}

.section-title{
    font-size:35px;
    line-height:1.1;
    margin-bottom:20px;
}

.section-subtitle{
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
}

.btn-purple{
    background:linear-gradient(135deg,#8f44ff,#b86dff);
    color:#fff;
    border:none;
    border-radius:50px;
    padding:15px 35px;
    font-weight:600;
    transition:.4s;
}

.btn-purple:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(159,91,255,.35);
    color:#fff;
}

.btn-outline-light{
    border-radius:50px;
    padding:15px 35px;
}

/* ================= NAVBAR ================= */

.luxury-navbar{
    background:rgba(8,8,12,.65);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.08);
    transition:.35s;
    padding:18px 0;
    z-index:999;
}

.logo-circle{
    width:48px;
    height:48px;
    border-radius:50%;
    background:linear-gradient(135deg,#8f44ff,#d4af37);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:#fff;
    letter-spacing:1px;
}

.brand-title{
    font-size:20px;
    font-weight:700;
    color:#fff;
    line-height:18px;
}

.brand-subtitle{
    color:#bdbdc9;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:10px;
}

.navbar-nav .nav-link{
    color:#d8d8e2!important;
    font-weight:500;
    margin:0 10px;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#fff!important;
}

.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:linear-gradient(90deg,#8f44ff,#d4af37);
    transition:.35s;
    transform:translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{
    width:70%;
}

@media(max-width:991px){
    .luxury-navbar{
        background:#09090f;
    }

    .navbar-collapse{
        margin-top:20px;
    }

    .navbar-nav{
        margin-bottom:20px;
    }

    .navbar-nav .nav-link{
        margin:10px 0;
    }
}

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

.hero-section{
    max-height:80vh;
    display:flex;
    align-items:center;
    background:
    radial-gradient(circle at top right,#7c3aed22,transparent 30%),
    radial-gradient(circle at bottom left,#d4af3720,transparent 30%),
    linear-gradient(180deg, #08080d, #0e0e16);
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(90deg,rgba(9,9,15,.92),rgba(9,9,15,.55),rgba(9,9,15,.25));
}

.hero-title{
    font-size:72px;
    line-height:1.05;
    color:#fff;
    position:relative;
    z-index:2;
}

.hero-description{
    color: #fff !important;
    font-size:20px;
    line-height:1.9;
    max-width:600px;
    position:relative;
    z-index:2;
}

.hero-badge{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    backdrop-filter:blur(20px);
}

.text-gradient{
    background:linear-gradient(135deg,#d4af37,#9f5bff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-image-wrapper{
    position:relative;
    display:inline-block;
}

.hero-escort{
    max-height:500px;
    position:relative;
    z-index:5;
    filter:drop-shadow(0 30px 80px rgba(0,0,0,.45));
}

.hero-glow{
    position:absolute;
    width:520px;
    height:520px;
    background:#8f44ff;
    filter:blur(160px);
    opacity:.30;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.floating-card{
    position:absolute;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.12);
    padding:20px;
    border-radius:20px;
    color:#fff;
    text-align:center;
    min-width:170px;
    z-index:10;
}

.floating-card h3{
    margin:0;
    color:#d4af37;
}

.floating-one{
    top:10%;
    left:-120px;
}

.floating-two{
    bottom:18%;
    right:-140px;
}

.floating-three{
    bottom:10px;
    left:-120px;
}

.hero-clients h5{
    color:#fff;
    font-weight:700;
    letter-spacing:2px;
}

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    width:34px;
    height:60px;
    border:2px solid rgba(255,255,255,.3);
    border-radius:30px;
}

.scroll-indicator span{
    position:absolute;
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
    left:50%;
    top:12px;
    transform:translateX(-50%);
    animation:scrollMove 2s infinite;
}

@keyframes scrollMove{
    0%{
        opacity:0;
        top:10px;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        top:36px;
    }
}

@media(max-width:992px){
    .hero-title{
        font-size:48px;
    }

    .hero-description{
        font-size:17px;
    }

    .hero-escort{
        margin-top:60px;
        max-height:520px;
    }

    .floating-card{
        display:none;
    }
}

/* ==========================
    SEARCH SECTION
========================== */

.search-section{
    padding:120px 0;
    background:#0d0d14;
}

.search-wrapper{
    background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:60px;
    backdrop-filter:blur(30px);
}

.search-tag{
    display:inline-block;
    background:rgba(159,91,255,.15);
    color:#b98dff;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
}

.search-title{
    font-size:52px;
    color:#fff;
}

.search-description{
    color:#a8a8b8;
    font-size:18px;
    line-height:1.8;
}

.search-box{
    background:#13131d;
    border-radius:24px;
    padding:35px;
    margin-top:20px;
}

.luxury-input{
    height:58px;
    background:#1d1d29 !important;
    border:1px solid rgba(255,255,255,.08);
    color:#fff !important;
    border-radius:14px;
}

.luxury-input:focus{
    border-color:#9f5bff;
    box-shadow:0 0 0 .2rem rgba(159,91,255,.15);
    background:#1d1d29;
    color:#fff;
}

.form-label{
    color:#d7d7df;
    font-weight:600;
    margin-bottom:10px;
}

.luxury-input option{
    background:#1d1d29;
    color:#fff;
}

.mini-stat{
    background:#141420;
    border-radius:20px;
    padding:30px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.06);
}

.mini-stat:hover{
    transform:translateY(-8px);
    border-color:#9f5bff;
}

.mini-stat h3{
    color:#d4af37;
    font-size:40px;
    margin-bottom:10px;
}

.mini-stat p{
    color:#bdbdc8;
    margin:0;
}

@media(max-width:992px){
    .search-wrapper{
        padding:30px;
    }

    .search-title{
        font-size:36px;
    }
}

/* ===========================
    FEATURED ESCORTS
=========================== */

.featured-escorts{
    background:#09090f;
}

.escort-card{
    background:#14141d;
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    border:1px solid rgba(255,255,255,.05);
    height:100%;
}

.escort-card:hover{
    transform:translateY(-12px);
    border-color:#9f5bff;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.escort-image{
    position:relative;
    overflow:hidden;
    height:200px;
}

.escort-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.escort-card:hover img{
    transform:scale(1.08);
}

.escort-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.35s;
}

.escort-card:hover .escort-overlay{
    opacity:1;
}

.verified-badge{
    position:absolute;
    top:18px;
    left:18px;
    background:#9f5bff;
    color:#fff;
    font-size:12px;
    padding:8px 14px;
    border-radius:30px;
    z-index:5;
}

.escort-content{
    padding:20px;
}

.escort-content h4{
    color:#fff;
    margin-bottom:8px;
}

.escort-info{
    display:flex;
    justify-content:space-between;
    color:#fff;
    font-size:14px;
}

.rating{
    color:#d4af37;
    font-weight:600;
}

.availability{
    color:#4ade80;
    font-size:14px;
    font-weight:600;
}

@media(max-width:992px){
    .escort-image{
        height:320px;
    }
}

/* ==========================
    Services
========================== */

.services-section{
    background:#0d0d14;
}

.category-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:420px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,.05);
}

.category-image{
    object-fit:cover;
    transition:.6s;
}

.category-card:hover .category-image{
    transform:scale(1.1);
}

.category-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    padding:25px;
    background:linear-gradient(to top,rgba(0,0,0,.92),rgba(0,0,0,.2));
    transition:.4s;
}

.category-card:hover .category-overlay{
    background:linear-gradient(to top,rgba(20,10,35,.95),rgba(0,0,0,.3));
}

.category-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    font-size:28px;
    margin-bottom:20px;
}

.category-overlay h3{
    color:#fff;
    margin-bottom:10px;
}

.category-overlay p{
    color:#d4d4d8;
    margin-bottom:0;
}

.category-card .btn{
    opacity:0;
    transform:translateY(15px);
    transition:.35s;
}

.category-card:hover .btn{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:992px){
    .category-card{
        height:350px;
    }
}

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

.about-section{
    background:#09090f;
}

.about-images{
    position:relative;
}

.about-main-image{
    overflow:hidden;
    border-radius:30px;
}

.about-main-image img{
    width:100%;
    border-radius:30px;
}

.experience-box{
    position:absolute;
    left:-20px;
    bottom:40px;
    background:linear-gradient(135deg,#9f5bff,#7b2cff);
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    min-width:180px;
    box-shadow:0 20px 50px rgba(0,0,0,.3);
}

.experience-box h2{
    font-size:52px;
    margin-bottom:5px;
}

.award-box{
    position:absolute;
    top:40px;
    right:-30px;
    display:flex;
    align-items:center;
    gap:15px;
    background:#14141d;
    border:1px solid rgba(255,255,255,.08);
    padding:18px 22px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.award-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#d4af37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.award-box strong{
    color:#fff;
}

.award-box p{
    color:#bcbcc8;
    font-size:14px;
}

.feature-card{
    background:#14141d;
    border-radius:18px;
    padding:25px;
    height:100%;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#9f5bff;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(159,91,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
}

.feature-card h5{
    color:#fff;
    margin-bottom:12px;
}

.feature-card p{
    color:#bdbdc8;
    margin-bottom:0;
    line-height:1.7;
}

@media(max-width:991px){
    .experience-box{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:20px;
    }

    .award-box{
        position:relative;
        top:auto;
        right:auto;
        margin-top:20px;
    }
}

/* ==========================
    WHY CHOOSE US
========================== */

.why-section{
    background:#101018;
}

.counter-box{
    background:#171722;
    padding:35px;
    border-radius:22px;
    text-align:center;
    border:1px solid rgba(255,255,255,.06);
    transition:.35s;
}

.counter-box:hover{
    transform:translateY(-8px);
    border-color:#9f5bff;
}

.counter-box h2{
    color:#d4af37;
    font-size:48px;
    margin-bottom:8px;
}

.counter-box p{
    margin:0;
    color:#bdbdc8;
}

.why-card{
    background:#14141d;
    padding:35px;
    border-radius:22px;
    height:100%;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#9f5bff;
}

.why-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#9f5bff,#6d28d9);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.why-card h4{
    color:#fff;
    margin-bottom:15px;
}

.why-card p{
    color:#bcbcc8;
    line-height:1.8;
    margin-bottom:0;
}

.trusted-brands{
    margin-top:80px;
}

.brand-item{
    background:#171722;
    padding:25px;
    border-radius:16px;
    color:#999;
    font-weight:700;
    letter-spacing:2px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.05);
}

.brand-item:hover{
    color:#fff;
    border-color:#9f5bff;
}

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

.testimonial-section{
    background:#101018;
}

.review-stat{
    background:#171722;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

.review-stat:hover{
    transform:translateY(-8px);
    border-color:#9f5bff;
}

.review-stat h2{
    color:#d4af37;
    font-size:42px;
    margin-bottom:10px;
}

.review-stat p{
    color:#bdbdc8;
    margin:0;
}

.testimonial-card{
    background:#15151f;
    padding:35px;
    border-radius:25px;
    height:100%;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
    position:relative;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#9f5bff;
}

.quote-icon{
    font-size:60px;
    color: #ffdb5b;
    line-height:1;
    margin-bottom:20px;
}

.testimonial-text{
    color:#cfcfd8;
    line-height:1.9;
    min-height:150px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:30px;
}

.testimonial-user img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    color:#fff;
    margin-bottom:3px;
}

.testimonial-user small{
    color:#9b9ba5;
}

.stars{
    margin-top:25px;
    color:#d4af37;
    font-size:18px;
    letter-spacing:3px;
}

.client-strip{
    margin-top:80px;
}

.brand-logo{
    background:#171722;
    border:1px solid rgba(255,255,255,.05);
    border-radius:16px;
    padding:25px;
    color:#8e8e98;
    font-weight:700;
    letter-spacing:2px;
    transition:.35s;
}

.brand-logo:hover{
    color:#fff;
    border-color:#9f5bff;
    transform:translateY(-5px);
}

@media(max-width:991px){
    .testimonial-text{
        min-height:auto;
    }
}

/* ==========================
    BLOG
========================== */

.blog-section{
    background:#09090f;
}

.blog-card{
    background:#15151f;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

.blog-card:hover{
    transform:translateY(-10px);
    border-color:#9f5bff;
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-category{
    position:absolute;
    top:20px;
    left:20px;
    background:#9f5bff;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
}

.blog-content{
    padding:30px;
}

.blog-meta{
    display:flex;
    justify-content:space-between;
    color:#999;
    font-size:14px;
    margin-bottom:18px;
}

.blog-content h4{
    color:#fff;
    margin-bottom:18px;
    line-height:1.5;
}

.blog-content p{
    color:#bdbdc8;
    line-height:1.8;
}

.read-more{
    display:inline-block;
    margin-top:20px;
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.newsletter-box{
    margin-top:80px;
    background:linear-gradient(135deg,#6d28d9,#9f5bff);
    border-radius:30px;
    padding:60px;
}

.newsletter-box h2{
    color:#fff;
}

.newsletter-box p{
    color:rgba(255,255,255,.85);
}

.newsletter-form{
    display:flex;
    gap:15px;
}

.newsletter-form .form-control{
    flex:1;
}

@media(max-width:991px){
    .newsletter-box{
        padding:35px;
    }

    .newsletter-form{
        margin-top:25px;
        flex-direction:column;
    }
}

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

.contact-section{
    background:#101018;
}

.contact-card{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#171722;
    padding:28px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}

.contact-card:hover{
    border-color:#9f5bff;
    transform:translateY(-5px);
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#9f5bff,#6d28d9);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    flex-shrink:0;
}

.contact-card h5{
    color:#fff;
    margin-bottom:8px;
}

.contact-card p{
    color:#bdbdc8;
}

.contact-form-card{
    background:#171722;
    padding:40px;
    border-radius:25px;
    border:1px solid rgba(255,255,255,.05);
}

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

.footer{
    background:#09090f;
    padding:80px 0 30px;
}

.footer-logo{
    color:#fff;
    margin-bottom:20px;
}

.footer p{
    color:#bdbdc8;
    line-height:1.8;
}

.footer h5{
    color:#fff;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#a5a5b3;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:8px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#171722;
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.social-icons a:hover{
    background:#9f5bff;
    transform:translateY(-5px);
}

.footer-divider{
    margin:60px 0 30px;
    border-color:rgba(255,255,255,.08);
}

.footer-bottom{
    text-align:center;
    color:#8f8f98;
}

@media(max-width:991px){
    .contact-form-card{
        padding:25px;
    }

    .footer{
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}

/*=========================
    PRICING
=========================*/

.pricing-section{
    background:#09090f;
}

.pricing-card{
    background:#161620;
    border-radius:25px;
    padding:45px;
    border:1px solid rgba(255,255,255,.05);
    height:100%;
    transition:.35s;
    position:relative;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:#9f5bff;
}

.featured-plan{
    border:2px solid #9f5bff;
    transform:scale(1.03);
}

.featured-plan:hover{
    transform:scale(1.03) translateY(-10px);
}

.popular-tag{
    position:absolute;
    top:-15px;
    right:25px;
    background:#9f5bff;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.plan{
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
}

.pricing-card h2{
    color:#fff;
    font-size:48px;
    margin:20px 0 10px;
}

.pricing-card p{
    color:#bdbdc8;
}

.pricing-card ul{
    list-style:none;
    padding:0;
    margin:35px 0;
}

.pricing-card li{
    padding:12px 0;
    color:#d7d7df;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.pricing-card li:last-child{
    border:none;
}

@media(max-width:991px){
    .featured-plan{
        transform:none;
    }
}

// Custom Styles
.btn {
	font-size: 13px !important;
}

.btn-green {
	background-color: #1caa5f !important;
	color: #fff !important;
	border: none;
}

.btn-green:hover {
	background-color: #169e56 !important;
}

.text-green {
	color: #1caa5f !important;
}

.bg-green {
	background: #1caa5f !important;
}

.btn-red {
	background-color: #ba0000 !important;
	color: #fff !important;
	border: none;
}

.btn-red:hover {
	background-color: #920000 !important;
}

.text-red {
	color: #ba0000 !important;
}

.bg-red {
	background: #ba0000 !important;
}

.icon-red {
	background-color: #ba0000 !important;
	color: #fff !important;
	border: none;
}

.icon-red:hover {
	background-color: #920000 !important;
}

.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-contact-btn.sm {
    width: 40px;
    height: 40px;
    font-size: 20px;
}

.floating-contact-btn.xs {
    width: 25px;
    height: 25px;
    font-size: 12px;
}

.floating-contact-btn:hover {
    transform: scale(1.12) translateX(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Email */
.floating-contact-btn.email {
    background: #ffffff;
    color: #333333;
}

/* WhatsApp */
.floating-contact-btn.whatsapp {
    background: #25D366;
    color: #ffffff;
}

/* Telegram */
.floating-contact-btn.telegram {
    background: #2582d3;
    color: #ffffff;
}

/* Call */
.floating-contact-btn.call {
    background: #2563eb;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 576px) {
    .floating-contact-buttons {
        right: 12px;
        bottom: 20px;
        gap: 9px;
    }

    .floating-contact-btn {
        width: 45px;
        height: 45px;
        font-size: 19px;
    }
}

.contact-form-card {
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -180px;
    right: -120px;
    background: #9f5bff;
    opacity: .07;
    filter: blur(100px);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-card .luxury-input {
    padding: 15px 18px;
}

.contact-form-card textarea.luxury-input {
    min-height: 150px;
    resize: vertical;
}

.contact-form-card .btn-purple {
    min-width: 200px;
}

@media (max-width: 767px) {
    .contact-card {
        padding: 22px;
    }

    .contact-form-card {
        padding: 25px;
    }
}

.service-areas-section {
    background: #09090f;
}

.service-areas-wrapper {
    position: relative;
}

.service-area-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 85px;
    padding: 18px 20px;
    background: #14141d;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 18px;
    transition: .35s;
    overflow: hidden;
}

.service-area-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(159, 91, 255, .10),rgba(212, 175, 55, .04));
    opacity: 0;
    transition: .35s;
}

.service-area-card:hover {
    transform: translateY(-6px);
    border-color: #9f5bff;
    box-shadow:0 15px 40px rgba(0, 0, 0, .25),0 0 25px rgba(159, 91, 255, .08);
}

.service-area-card:hover::before {
    opacity: 1;
}

.service-area-icon {
    position: relative;
    z-index: 1;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(159, 91, 255, .13);
    border: 1px solid rgba(159, 91, 255, .15);
    color: #b98dff;
    font-size: 21px;
    transition: .35s;
}

.service-area-card:hover .service-area-icon {
    background: linear-gradient(135deg,#9f5bff,#6d28d9);
    color: #fff;
    transform: scale(1.08);
}

.service-area-card h5 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    margin: 0 0 4px;
}

.service-area-card span {
    position: relative;
    z-index: 1;
    color: #9999a8;
    font-size: 12px;
}

.area-arrow {
    position: relative;
    z-index: 1;
    margin-left: auto;
    color: #666675;
    font-size: 18px;
    transition: .35s;
}

.service-area-card:hover .area-arrow {
    color: #d4af37;
    transform: translate(3px, -3px);
}

.all-kochi-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    background:linear-gradient(135deg,rgba(159, 91, 255, .13),rgba(212, 175, 55, .05)),#14141d;
    border: 1px solid rgba(159, 91, 255, .18);
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

.all-kochi-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    right: -100px;
    top: -150px;
    background: #9f5bff;
    opacity: .08;
    filter: blur(80px);
    border-radius: 50%;
}

.all-kochi-icon {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#9f5bff,#6d28d9);
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(159, 91, 255, .25);
}

.all-kochi-card h4 {
    color: #fff;
    margin-bottom: 7px;
}

.all-kochi-card p {
    color: #bdbdc8;
    margin: 0;
    line-height: 1.7;
}

.all-kochi-card .btn-purple {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.area-link {
    position: relative;
    z-index: 2;
    margin-left: auto;
}

.area-arrow {
    color: #666675;
    font-size: 20px;
    transition: .35s;
}

.service-area-card:hover .area-arrow {
    color: #d4af37;
    transform: translate(4px, -4px);
}

/* Responsive */

@media (max-width: 767px) {
    .service-area-card {
        min-height: 75px;
    }

    .all-kochi-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 25px;
    }

    .all-kochi-card .btn-purple {
        width: 100%;
        text-align: center;
    }
}