/*******************************/
/********* General CSS *********/
/*******************************/

@import url('https://fonts.bunny.net/css?family=just-me-again-down-here:400');
body {
    color: #797979;
    background: #0B0B0B;
    font-family: 'Open Sans', sans-serif;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #E5E7EB;
}

a {
    color: #B3B3B3;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #D4AF37;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #D4AF37;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 1000;
}

.back-to-top:hover {
    background: #0A0A0A;
}

.back-to-top:hover i {
    color: #F5F5F5;
}

.back-to-top i {
    color: #0A0A0A;
    padding-top: 10px;
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 1, 32, .28) !important;
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: background .4s ease, padding .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(12, 1, 32, .55) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 600;
}

.navbar .navbar-brand span {
    font-weight: 800;
}

.navbar .navbar-brand.vx-navbar-logo {
    display: inline-flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 40px;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    background: transparent;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 2px;
    background: var(--vx-purple, #D4AF37);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    background: transparent;
    color: var(--vx-purple, #D4AF37);
    transition: color .3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}


/* ---------- Desktop ---------- */

@media (min-width: 992px) {

    .navbar {
        position: fixed;
        width: 100%;
        top: 0;

        /* Compact header from the beginning */
        padding: 12px 60px;

        background: transparent !important;
        z-index: 1000;
    }

    .navbar.nav-sticky {
        padding: 12px 60px;
    }

    .navbar .navbar-brand img {
        max-height: 48px;
    }

    .navbar a.nav-link {
        padding: 8px 15px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}


/* ---------- Tablet / Mobile ---------- */

@media (max-width: 991.98px) {

    .navbar {
        padding: 15px;
        background: transparent !important;
    }

    .navbar a.nav-link {
        padding: 5px;
    }

    .navbar .dropdown-menu {
        box-shadow: none;
    }
}

/*==================================================
            VELONTINO X HERO
==================================================*/

:root{
    --vx-dark:#0A0A0A;
    --vx-purple:#D4AF37;
    --vx-gold-light:#E6C878;
    --vx-gold-deep:#B8860B;
    --vx-gold-gradient:linear-gradient(135deg, #FFF4C4 0%, #D4AF37 45%, #B8860B 100%);
    --vx-white:#ffffff;
    --vx-text:#ececec;
    --vx-transition:.45s ease;
}

.vx-hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    background:#000;
}

.vx-slider,
.vx-slider .owl-stage-outer,
.vx-slider .owl-stage,
.vx-slider .owl-item{
    height:100vh;
}

.vx-slide{
    position:relative;
    width:100%;
    height:100vh;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    overflow:hidden;
}

.vx-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    background-size:cover;
    background-position:center;
    animation:vxZoom 9s linear infinite alternate;
}

@keyframes vxZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.vx-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:
    linear-gradient(
    90deg,
    rgba(12,1,32,.90) 0%,
    rgba(12,1,32,.70) 35%,
    rgba(12,1,32,.35) 70%,
    rgba(0,0,0,.15) 100%);
}

.vx-slide .container{
    position:relative;
    z-index:5;
    height:100%;
}

.vx-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    max-width: 620px;
    padding-left: 40px;
    position: relative;
    top: 32px;
}

.vx-subtitle {
    color: var(--vx-purple);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 15px;
    font-family: Poppins;
    font-weight: 600;
    margin-bottom: 22px;
}

.vx-content h1 {
    color: #fff !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 54px !important;
    line-height: 1.15 !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
}

.vx-content p {
    color: var(--vx-text);
    font-size: 18px;
    line-height: 1.9;
    max-width: 620px;
    margin-bottom: 32px;
    font-family: Poppins;
}

.vx-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.vx-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    color:#fff;

    border:2px solid var(--vx-purple);

    text-decoration:none;

    font-family:Poppins;

    font-weight:600;

    transition:.4s;

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

    backdrop-filter:blur(10px);
}

.vx-btn-primary:hover{

    background:var(--vx-gold-gradient, var(--vx-purple));

    border-color:var(--vx-gold-deep, var(--vx-purple));

    color:var(--vx-dark);

    text-decoration:none;

    transform:translateY(-3px);
}

.vx-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    color:#fff;

    border:2px solid rgba(255,255,255,.25);

    text-decoration:none;

    font-family:Poppins;

    transition:.4s;

    backdrop-filter:blur(10px);
}

.vx-btn-outline:hover{

    background:#fff;

    color:#111;

    text-decoration:none;
}

.vx-btn-pulse{
    position:relative;
    animation:vxBtnPulse 2.4s ease-out infinite;
}

.vx-btn-pulse:hover{
    animation-play-state:paused;
}

@keyframes vxBtnPulse{
    0%{ box-shadow:0 0 0 0 rgba(212,175,55,.5); }
    70%{ box-shadow:0 0 0 16px rgba(212,175,55,0); }
    100%{ box-shadow:0 0 0 0 rgba(212,175,55,0); }
}

.vx-slider .owl-nav{

    position:absolute;

    top:50%;

    left:0;

    width:100%;

    transform:translateY(-50%);

    pointer-events:none;
}

.vx-slider .owl-prev,
.vx-slider .owl-next{

    width:70px;

    height:70px;

    border-radius:50% !important;

    position:absolute;

    display:flex!important;

    align-items:center!important;

    justify-content:center!important;

    padding:0!important;

    line-height:1!important;

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

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15)!important;

    color:#fff!important;

    font-size:24px!important;

    transition:.4s;

    pointer-events:auto;
}

.vx-slider .owl-prev{

    left:35px;
}

.vx-slider .owl-next{

    right:35px;
}

.vx-slider .owl-prev:hover,
.vx-slider .owl-next:hover{

    background:var(--vx-purple)!important;

    color:#111!important;

    transform:scale(1.1);
}

.vx-slider .owl-dots{

    position:absolute;

    bottom:45px;

    width:100%;

    text-align:center;
}

.vx-slider .owl-dot{

    width:14px;

    height:14px;

    border-radius:50%;

    margin:0 8px;

    border:2px solid #fff!important;

    transition:.4s;
}

.vx-slider .owl-dot.active{

    background:var(--vx-purple);

    border-color:var(--vx-purple)!important;

    transform:scale(1.4);
}/*==================================================
            TEXT ANIMATION
==================================================*/

.vx-subtitle,
.vx-content h1,
.vx-content p,
.vx-buttons{
    opacity:0;
    transform:translateY(50px);
}

.owl-item.active .vx-subtitle{
    animation:vxFade .8s .2s forwards;
}

.owl-item.active h1{
    animation:vxFade .9s .45s forwards;
}

.owl-item.active p{
    animation:vxFade .9s .7s forwards;
}

.owl-item.active .vx-buttons{
    animation:vxFade .9s .95s forwards;
}

@keyframes vxFade{

    from{

        opacity:0;

        transform:translateY(45px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

.vx-scroll{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    z-index:50;
}

.vx-scroll span{

    width:28px;

    height:48px;

    border:2px solid rgba(255,255,255,.5);

    border-radius:40px;

    display:block;

    position:relative;
}

.vx-scroll span::before{

    content:"";

    position:absolute;

    width:6px;

    height:10px;

    background:#D4AF37;

    border-radius:20px;

    left:50%;

    top:8px;

    transform:translateX(-50%);

    animation:scrollWheel 2s infinite;
}

@keyframes scrollWheel{

0%{

opacity:0;

top:8px;

}

50%{

opacity:1;

}

100%{

opacity:0;

top:24px;

}

}

/*==================================================
            BUTTON SHADOW
==================================================*/

.vx-btn-primary{

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

}

.vx-btn-primary:hover{

box-shadow:0 20px 60px rgba(212,175,55,.45);

}

.vx-btn-outline:hover{

box-shadow:0 20px 50px rgba(255,255,255,.15);

}

/*==================================================
            IMAGE DARKNESS
==================================================*/

.vx-slide::before{

content:"";

position:absolute;

inset:0;

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

z-index:1;

}

.vx-slide::after{

z-index:0;

}

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

@media(max-width:1400px){

.vx-content h1{

font-size:72px;

}

}

@media(max-width:1200px){

.vx-content{

max-width:650px;

}

.vx-content h1{

font-size:62px;

}

.vx-content p{

font-size:18px;

}

}

@media(max-width:991px){

.vx-content{

justify-content:center;

padding-top:80px;

}

.vx-content h1{

font-size:52px;

}

.vx-content p{

font-size:17px;

max-width:100%;

}

.vx-slider .owl-prev{

left:15px;

}

.vx-slider .owl-next{

right:15px;

}

}

@media(max-width:768px){

.vx-content{

text-align:center;

align-items:center;

justify-content:center;

/* Was inheriting 80px top padding from the 991px breakpoint —
   removing it lets the (now smaller) text block sit properly
   centered in the hero below. */
padding-top:0;

top:0;

/* Kept in sync with the .vx-hero height directly below —
   .vx-slide clips overflow, so if this doesn't match, centered
   content can end up visually off-center within the visible area. */
height:84svh;

}

.vx-subtitle{

/* Smaller subtitle so it matches the reduced heading below —
   was 13px. */
font-size:12px;

letter-spacing:2px;

margin-bottom:14px;

}

.vx-content h1{

/* This is the main size change requested: was 40px, now scaled
   down so the heading doesn't dominate the screen. */
font-size:30px;

line-height:1.2;

margin-bottom:18px;

}

.vx-content p{

/* Was 15px. */
font-size:13.5px;

line-height:1.7;

margin-bottom:24px;

}

.vx-buttons{

justify-content:center;

}

.vx-btn-primary,
.vx-btn-outline{

/* Buttons scaled down slightly to match the smaller text above —
   was 15px 28px / 14px. */
padding:13px 24px;

font-size:13px;

}

.vx-slider .owl-prev,
.vx-slider .owl-next{

display:none!important;

}

/* A shorter-but-not-tiny hero: noticeably less than a full
   100svh screen, but still well above a cramped ~60svh. */
.vx-hero,
.vx-slider,
.vx-slider .owl-stage-outer,
.vx-slider .owl-stage,
.vx-slider .owl-item,
.vx-slide{

height:65svh;

}

}

@media(max-width:576px){

.vx-content{

padding-left:10px;

padding-right:10px;

height:78svh;

}

.vx-content h1{

/* Was 32px. */
font-size:25px;

}

.vx-content p{

font-size:12.5px;

}

.vx-scroll{

display:none;

}

.vx-hero,
.vx-slider,
.vx-slider .owl-stage-outer,
.vx-slider .owl-stage,
.vx-slider .owl-item,
.vx-slide{

height:78svh;

}

}

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

::selection{

background:#D4AF37;

color:#0A0A0A;

}

::-moz-selection{

background:#D4AF37;

color:#0A0A0A;

}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 45px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 50px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/* =========================================
   VALENTINO X GALLERY
========================================= */



.vx-gallery-page {
    --vx-bg: #0B0B0B;
    --vx-purple: #D4AF37;
    --vx-gold-light: #E6C878;
    --vx-gold-deep: #B8860B;
    --vx-white: #ffffff;
    --vx-muted: #C9B896;

    position: relative;
    width: 100%;
    /* This drives how much scrolling it takes to spin the circle
       all the way around AND is now measured from this section's
       own height only (gallery.js), not the whole page — so
       anything placed after the gallery (like the footer) no
       longer gets dragged into the rotation math or stuck under
       the pinned cards. */
    min-height: 420vh;

    overflow: hidden;

    background: var(--vx-bg);
    color: var(--vx-white);
}


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

/* Gallery cards container */
.vx-gallery-wrapper {
    position: fixed !important;

    z-index: 20 !important;

    left: 50% !important;
    top: 58%; /* fallback; JS sets this dynamically */

    width: 1px !important;
    height: 1px !important;

    pointer-events: none;
}


/* Individual cards */
.vx-gallery-card {
    position: absolute !important;

    left: 0 !important;
    top: 0 !important;

    width: 230px !important;
    height: 345px !important;

    border-radius: 16px !important;

    overflow: visible !important;

    will-change: transform, opacity, filter;
}


/* Card images */
.vx-gallery-card img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    border-radius: 16px !important;
}


/* Card title */
.vx-card-title {
    position: absolute !important;

    left: 50% !important;
    top: calc(100% + 15px) !important;

    bottom: auto !important;

    transform: translateX(-50%) translateY(10px);

    width: max-content !important;

    color: #fff !important;

    font-family: "Just Me Again Down Here", cursive !important;

    font-size: 27px !important;

    white-space: nowrap;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity .35s ease,
        transform .35s ease;
}


/* =========================================
   DESKTOP POSITION
========================================= */

@media (min-width: 769px) {

    .vx-gallery-wrapper {
        left: 50% !important;
        top: 900px; /* fallback; overridden by JS based on measured navbar position */
    }

}


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

@media (max-width: 768px) {

    .vx-gallery-wrapper {
        left: 50% !important;
        top: 830px; /* fallback; overridden by JS based on measured navbar position */
    }

    /* Bumped up again — if this still doesn't look bigger after
       replacing the file, it's very likely a cached copy of the
       old style.css being served; see note below the file. */
    .vx-gallery-card {
        width: 275px !important;
        height: 412px !important;
    }

    /* Real gap before the next (Instagram) section — the pinned
       gallery cards were freezing right at the section boundary
       with nothing but the Instagram section's own top padding
       separating them, which read as "no gap" on a narrow screen. */
    .vx-gallery-page {
        padding-bottom: 90px;
    }

}


@media (max-width: 480px) {

    .vx-gallery-wrapper {
        top: 700px; /* fallback; overridden by JS based on measured navbar position */
    }

    /* Bumped up for the same reason as the 768px breakpoint above. */
    .vx-gallery-card {
        width: 240px !important;
        height: 360px !important;
    }

    .vx-gallery-page {
        padding-bottom: 70px;
    }

}

/*==================================================
    VALENTINO X — HOMEPAGE PREMIUM SECTIONS
==================================================*/

.vx-eyebrow{
    display:inline-block;
    color:var(--vx-purple);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
    font-family:Poppins,sans-serif;
    font-weight:600;
    margin-bottom:18px;
}

.vx-h2{
    font-family:'Playfair Display', serif;
    font-weight:700;
    color:#fff;
    font-size:38px;
    line-height:1.25;
    margin-bottom:22px;
}

.vx-about-text{
    color:var(--vx-text,#ececec);
    font-family:Poppins,sans-serif;
    font-size:15.5px;
    line-height:1.9;
    margin-bottom:18px;
    opacity:.85;
}

.vx-mt-40{ margin-top:40px; display:inline-block; }

/* Reveal-on-scroll */
.vx-reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .9s ease, transform .9s ease;
}
.vx-reveal.vx-reveal-left{ transform:translateX(-50px); }
.vx-reveal.vx-reveal-right{ transform:translateX(50px); }
.vx-reveal.in-view{
    opacity:1;
    transform:translate(0,0);
}

/*==================================================
    ABOUT PREVIEW
==================================================*/
.vx-about-preview{
    background: #0b0b0b;
    padding:110px 0;
    position:relative;
    overflow:hidden;
}

.vx-about-preview::before{
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(212,175,55,.12) 0%, rgba(212,175,55,0) 70%);
    pointer-events:none;
}

.vx-stats-row{
    display:flex;
    gap:45px;
    margin:35px 0 40px;
    flex-wrap:wrap;
}

.vx-stat h3.vx-counter{
    font-family:'Playfair Display', serif;
    color:var(--vx-purple);
    font-size:40px;
    font-weight:700;
    margin:0 0 4px;
}

.vx-stat span{
    display:block;
    color:var(--vx-text,#ececec);
    font-family:Poppins,sans-serif;
    font-size:12.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:.7;
}

.vx-about-collage{
    position:relative;
    height:480px;
}

.vx-collage-img{
    position:absolute;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 25px 50px rgba(0,0,0,.5);
    border:3px solid rgba(255,255,255,.06);
}

.vx-collage-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.vx-collage-img:hover img{ transform:scale(1.08); }

.vx-collage-1{
    top:0; left:5%;
    width:62%; height:60%;
    z-index:1;
}

.vx-collage-2{
    top:8%; right:0;
    width:42%; height:42%;
    z-index:2;
}

.vx-collage-3{
    bottom:0; left:18%;
    width:52%; height:50%;
    z-index:3;
}

.vx-collage-badge{
    position:absolute;
    bottom:6%;
    right:4%;
    z-index:4;
    width:110px;
    height:110px;
    border-radius:50%;
    background:var(--vx-purple);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    box-shadow:0 15px 35px rgba(212,175,55,.4);
    animation:vxFloat 4s ease-in-out infinite;
}

.vx-collage-badge span{
    color:var(--vx-dark);
    font-family:Poppins,sans-serif;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.vx-collage-badge strong{
    color:var(--vx-dark);
    font-family:'Playfair Display', serif;
    font-size:24px;
}

@keyframes vxFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-14px); }
}

/*==================================================
    SERVICES PREVIEW — EXPANDING PANELS
==================================================*/
.vx-services-preview{
    background:#0B0B0B;
    padding:110px 0 100px;
}

.vx-service-panels{
    display:flex;
    height:480px;
    margin:0 auto 10px;
    max-width:1300px;
    padding:0 15px;
    gap:6px;
}

.vx-service-panel{
    position:relative;
    flex:1;
    min-width:0;
    background-size:cover;
    background-position:center;
    border-radius:10px;
    overflow:hidden;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    transition:flex .6s cubic-bezier(.4,0,.2,1);
    text-decoration:none !important;
}

.vx-service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(0deg, rgba(12,1,32,.9) 0%, rgba(12,1,32,.15) 55%, rgba(12,1,32,.55) 100%);
    filter:grayscale(60%);
    transition:.6s;
}

.vx-service-name{
    position:relative;
    z-index:2;
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:16px;
    letter-spacing:1px;
    text-transform:uppercase;
    padding:26px 8px;
    text-align:center;
    white-space:nowrap;
    transition:.4s;
}

.vx-service-panel:hover{
    flex:2.4;
}

.vx-service-panel:hover .vx-service-overlay{
    filter:grayscale(0%);
    background:linear-gradient(0deg, rgba(12,1,32,.85) 0%, rgba(12,1,32,0) 60%);
}

.vx-service-panel:hover .vx-service-name{
    color:var(--vx-purple);
    font-size:19px;
}

@media (max-width:768px){
    .vx-service-panels{
        flex-direction:column;
        height:auto;
    }
    .vx-service-panel{
        height:220px;
        flex:none !important;
    }
    .vx-service-panel:hover{ height:250px; }
}

@media (max-width:480px){
    .vx-service-panel{ height:190px; }
    .vx-service-panel:hover{ height:210px; }
}

/*==================================================
    FOUNDER
==================================================*/
.vx-founder{
    background: #0b0b0b;
    padding:90px 0;
}

.vx-founder-card{
    display:flex;
    align-items:center;
    gap:55px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(212,175,55,.18);
    border-radius:18px;
    padding:45px;
    backdrop-filter:blur(10px);
}

.vx-founder-img{
    flex:0 0 220px;
    width:220px;
    height:220px;
    border-radius:50%;
    overflow:hidden;
    border:4px solid var(--vx-purple);
    box-shadow:0 20px 45px rgba(212,175,55,.25);
}

.vx-founder-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation:vxZoom 9s linear infinite alternate;
}

.vx-founder-quote-icon{
    color:var(--vx-purple);
    font-size:26px;
    opacity:.6;
    margin-bottom:14px;
}

.vx-founder-quote{
    font-family:'Playfair Display', serif;
    font-style:italic;
    color:#fff;
    font-size:22px;
    line-height:1.6;
    margin-bottom:20px;
}

.vx-founder-name{
    color:#fff;
    font-family:Poppins,sans-serif;
    font-size:16px;
    margin-bottom:4px;
}

.vx-founder-role{
    color:var(--vx-purple);
    font-family:Poppins,sans-serif;
    font-size:13px;
    letter-spacing:.5px;
}

@media (max-width:767px){
    .vx-founder-card{ flex-direction:column; text-align:center; padding:35px 25px; }
}

/*==================================================
    TEAM PARALLAX
==================================================*/
.vx-team-parallax{
    position:relative;
    min-height:520px;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.vx-team-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(120deg, rgba(12,1,32,.92) 0%, rgba(12,1,32,.72) 45%, rgba(12,1,32,.55) 100%);
}

/* Mobile: background-attachment:fixed is unreliable on phones, so we
   swap in a dedicated mobile image (set via background-image on
   .vx-team-parallax-mobile-bg / data attribute, see JS) and animate
   it with the same slow zoom used on the hero, so it still feels alive. */
.vx-team-parallax-mobile-bg{
    display:none;
}

@media (max-width:768px){
    .vx-team-parallax{
        background-image:none !important;
        background-attachment:scroll;
        min-height:460px;
    }

    .vx-team-parallax-mobile-bg{
        display:block;
        position:absolute;
        inset:0;
        z-index:0;
        background-size:cover;
        background-position:center;
        animation:vxZoom 9s linear infinite alternate;
    }
}

/*==================================================
    REVIEWS
==================================================*/
.vx-reviews{
    background:#0B0B0B;
    padding:110px 0;
}

.vx-review-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:34px 30px;
    height:100%;
    margin-bottom:25px;
    transition:.4s;
}

.vx-review-card:hover{
    border-color:var(--vx-purple);
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.vx-review-stars{ color:#f4c150; margin-bottom:16px; font-size:14px; letter-spacing:2px; }

.vx-review-card p{
    color:var(--vx-text,#ececec);
    font-family:Poppins,sans-serif;
    font-size:14.5px;
    line-height:1.8;
    opacity:.85;
    margin-bottom:24px;
    font-style:italic;
}

.vx-review-author{ display:flex; align-items:center; gap:14px; }

.vx-review-avatar{
    width:44px; height:44px;
    border-radius:50%;
    background:var(--vx-purple);
    color:var(--vx-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Playfair Display', serif;
    font-weight:700;
    font-size:17px;
}

.vx-review-author h4{
    color:#fff;
    font-size:14.5px;
    margin:0;
    font-family:Poppins,sans-serif;
}

.vx-review-author span{
    color:var(--vx-text,#ececec);
    opacity:.6;
    font-size:12px;
}

.vx-btn-google{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 38px;
    border-radius:50px;
    background:#fff;
    color:#0A0A0A !important;
    font-family:Poppins,sans-serif;
    font-weight:600;
    text-decoration:none !important;
    transition:.4s;
    box-shadow:0 0 0 0 rgba(212,175,55,.55);
    animation:vxGooglePulse 2.6s ease-out infinite;
}

.vx-btn-google i{ color:#DB4437; font-size:17px; }

.vx-btn-google:hover{
    background:var(--vx-purple);
    color:#0A0A0A !important;
    transform:translateY(-3px) scale(1.04);
    animation-play-state:paused;
}

@keyframes vxGooglePulse{
    0%{ box-shadow:0 0 0 0 rgba(212,175,55,.55); }
    70%{ box-shadow:0 0 0 18px rgba(212,175,55,0); }
    100%{ box-shadow:0 0 0 0 rgba(212,175,55,0); }
}

/*==================================================
    GALLERY PREVIEW
==================================================*/
.vx-gallery-preview-section{
    background: #0b0b0b;
    padding:110px 0 100px;
}

.vx-gallery-preview-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:6px;
    max-width:1300px;
    margin:0 auto;
    padding:0 15px;
    height:420px;
}

.vx-gp-item{
    position:relative;
    display:block;
    background-size:cover;
    background-position:center;
    overflow:hidden;
    border-radius:6px;
}

.vx-gp-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:inherit;
    background-size:cover;
    background-position:center;
    animation:vxZoom 9s linear infinite alternate;
    z-index:0;
}

.vx-gp-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(180deg, rgba(12,1,32,.15) 0%, rgba(12,1,32,.75) 100%);
    opacity:0;
    transition:.45s;
}

.vx-gp-label{
    position:absolute;
    left:20px;
    bottom:-40px;
    z-index:2;
    color:#fff;
    font-family:Poppins,sans-serif;
    font-weight:600;
    font-size:14.5px;
    letter-spacing:.5px;
    opacity:0;
    transition:.45s;
}

.vx-gp-label i{ margin-left:6px; color:var(--vx-purple); }

.vx-gp-item:hover .vx-gp-overlay{ opacity:1; }
.vx-gp-item:hover .vx-gp-label{ opacity:1; bottom:20px; }
.vx-gp-item img{ display:none; }

@media (max-width:768px){
    .vx-gallery-preview-grid{
        grid-template-columns:repeat(2,1fr);
        height:auto;
    }
    .vx-gp-item{ height:210px; }
}

/*==================================================
    FOOTER (PREMIUM)
==================================================*/
.vx-footer{
    background:#0A0A0A;
    padding:90px 0 0;
    border-top:1px solid rgba(212,175,55,.15);
}

.vx-footer-tag{
    color:var(--vx-text,#ececec);
    opacity:.65;
    font-family:Poppins,sans-serif;
    font-size:14px;
    line-height:1.8;
    margin-bottom:22px;
}

.vx-footer-social{ display:flex; gap:12px; }

.vx-footer-social a{
    width:38px; height:38px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    transition:.35s;
}

.vx-footer-social a:hover{
    background:var(--vx-purple);
    border-color:var(--vx-purple);
    color:#0A0A0A !important;
    transform:translateY(-4px);
}

.vx-footer-heading{
    color:#fff;
    font-family:'Playfair Display', serif;
    font-size:19px;
    margin-bottom:24px;
    position:relative;
    padding-bottom:12px;
}

.vx-footer-heading::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:40px; height:2px;
    background:var(--vx-purple);
}

.vx-footer-links{ display:flex; flex-direction:column; gap:12px; }

.vx-footer-links a{
    color:var(--vx-text,#ececec);
    opacity:.7;
    font-family:Poppins,sans-serif;
    font-size:14px;
    text-decoration:none !important;
    transition:.3s;
    width:fit-content;
}

.vx-footer-links a:hover{ opacity:1; color:var(--vx-purple) !important; padding-left:6px; }

.vx-footer-contact p{
    color:var(--vx-text,#ececec);
    opacity:.75;
    font-family:Poppins,sans-serif;
    font-size:14px;
    margin-bottom:14px;
    line-height:1.7;
}

.vx-footer-contact i{ color:var(--vx-purple); width:20px; margin-right:6px; }

.vx-footer-contact a{ color:var(--vx-text,#ececec); text-decoration:none !important; }
.vx-footer-contact a:hover{ color:var(--vx-purple) !important; }

.vx-footer-map{
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.1);
}

.vx-footer-map iframe{ display:block; filter:grayscale(35%) contrast(1.1); }

.vx-map-link{
    display:block;
    text-align:center;
    background:rgba(212,175,55,.12);
    color:#fff !important;
    font-family:Poppins,sans-serif;
    font-size:13px;
    padding:10px;
    text-decoration:none !important;
    transition:.3s;
}

.vx-map-link:hover{ background:var(--vx-purple); color:#0A0A0A !important; }

.vx-footer-bottom{
    margin-top:60px;
    border-top:1px solid rgba(255,255,255,.08);
    padding:22px 0;
    text-align:center;
}

.vx-footer-bottom p{
    color:var(--vx-text,#ececec);
    opacity:.5;
    font-family:Poppins,sans-serif;
    font-size:13px;
    margin:0;
}

.vx-footer-credit{
    margin-top:6px !important;
}

.vx-footer-credit a{
    color:var(--vx-purple) !important;
    opacity:1;
    font-weight:600;
}

.vx-footer-credit a:hover{
    text-decoration:underline;
}

/*==================================================
    FLOATING WHATSAPP APPOINTMENT BUTTON
==================================================*/
.vx-float-btn{
    position:fixed;
    right:26px;
    bottom:50px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:linear-gradient(145deg, var(--vx-purple), var(--vx-dark));
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1200;
    box-shadow:0 10px 30px rgba(212,175,55,.45);
    transition:.35s;
}

.vx-float-btn i{
    color:#fff;
    font-size:30px;
    position:relative;
    z-index:2;
}

.vx-float-btn:hover{
    transform:scale(1.08);
    box-shadow:0 14px 36px rgba(212,175,55,.6);
}

.vx-float-ring{
    position:absolute;
    inset:0;
    border-radius:50%;
    border:2px solid var(--vx-purple);
    animation:vxPulse 2.2s ease-out infinite;
}

@keyframes vxPulse{
    0%{ transform:scale(1); opacity:.7; }
    100%{ transform:scale(1.7); opacity:0; }
}

@media (max-width:576px){
    .vx-float-btn{ width:54px; height:54px; right:18px; bottom: 50px;}
    .vx-float-btn i{ font-size:26px; }
}
/*==================================================
    CUSTOM ANIMATED CURSOR
    (auto-disabled on touch devices via JS,
    which removes the vx-has-cursor class)
==================================================*/
.vx-cursor-dot,
.vx-cursor-ring{
    position:fixed;
    top:0;
    left:0;
    pointer-events:none;
    border-radius:50%;
    z-index:9999;
    opacity:0;
    transition:opacity .3s ease;
}

.vx-cursor-dot{
    width:8px;
    height:8px;
    background:var(--vx-purple);
    transform:translate(-50%,-50%);
}

.vx-cursor-ring{
    width:38px;
    height:38px;
    border:1.5px solid rgba(212,175,55,.6);
    transform:translate(-50%,-50%);
    transition:opacity .3s ease, width .25s ease, height .25s ease, background .25s ease, border-color .25s ease;
}

html.vx-has-cursor{ cursor:none; }
html.vx-has-cursor a,
html.vx-has-cursor button,
html.vx-has-cursor .vx-service-panel,
html.vx-has-cursor .vx-gp-item{ cursor:none; }

html.vx-has-cursor .vx-cursor-dot,
html.vx-has-cursor .vx-cursor-ring{
    opacity:1;
}

/* Grow + fill the ring on interactive elements */
html.vx-has-cursor .vx-cursor-ring.vx-cursor-hover{
    width:64px;
    height:64px;
    background:rgba(212,175,55,.12);
    border-color:var(--vx-purple);
}

html.vx-has-cursor .vx-cursor-dot.vx-cursor-hover{
    opacity:0;
}

/* Never show the custom cursor on touch / coarse-pointer devices */
@media (hover:none), (pointer:coarse){
    .vx-cursor-dot,
    .vx-cursor-ring{ display:none !important; }
    html.vx-has-cursor{ cursor:auto; }
}

/*==================================================
    HOME PAGE UPDATES (client requested)
==================================================*/

/* ---- Centered CTA buttons (Reviews / Gallery) ---- */
.vx-center-btn{
    display: flex;
    justify-content: center;
    text-align: center;
}

/* ---- Footer logo ---- */
.vx-footer-logo{
    max-height: 46px;
    width: auto;
    margin-bottom: 18px;
}

/* ---- Team section: image only, animated label at top ---- */
.vx-team-parallax{
    min-height: 420px;
    align-items: flex-start;
}

.vx-team-overlay{
    background: linear-gradient(180deg, rgba(12,1,32,.75) 0%, rgba(12,1,32,.15) 30%, rgba(12,1,32,0) 55%, rgba(12,1,32,.55) 100%);
}

.vx-team-label{
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 44px 20px 0;
    text-align: center;
}

.vx-team-label span{
    display: inline-block;
    position: relative;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding-bottom: 16px;
}

.vx-team-label span::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 70px;
    height: 3px;
    background: var(--vx-purple);
    transform: translateX(-50%);
    animation: vxTeamLineGrow 1.8s ease-in-out infinite alternate;
}


@keyframes vxTeamLineGrow{
    0%{ width: 40px; opacity:.6; }
    100%{ width: 90px; opacity:1; }
}

@media (max-width:768px){
    .vx-team-parallax{ min-height: 340px; }
    .vx-team-label{ padding-top: 30px; }
    .vx-team-label span{ font-size: 26px; letter-spacing: 2px; }
}

/* ---- Footer map: slightly taller for the new embed ---- */
.vx-footer-map iframe{
    border-radius: 6px;
}