:root {
    --black-bg: #0a0a0a;
    --rose-gold: #b76e79;
    --rose-gold-light: #d4a9a0;
    --white: #ffffff;
    --gray-text: #cccccc;
}

body {
    background-color: var(--black-bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.7, 0, 0.3, 1), visibility 1s;
}

.loader-content {
    text-align: center;
    position: relative;
}

.logo-container {
    position: relative;
    width: 180px;
    margin: 0 auto 30px;
}

.loader-logo-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: logoBreathe 3s infinite ease-in-out;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    animation: glowPulse 3s infinite ease-in-out;
}

.loader-status {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-brand {
    font-family: 'Playfair Display', serif;
    color: #fff;
    letter-spacing: 10px;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.loader-line-container {
    width: 150px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.loader-line-fill {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    animation: lineLoading 2s infinite ease-in-out;
}

.loader-msg {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

@keyframes logoBreathe {

    0%,
    100% {
        transform: scale(0.98);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes lineLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.luxury-header {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.2);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rose-gold);
    letter-spacing: 2px;
}

.brand-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    color: var(--gray-text);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.desktop-nav .nav-link {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 30px;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--rose-gold);
    transition: width 0.3s ease;
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--rose-gold);
}

.booknow-btn {
    background-color: transparent;
    border: 1.5px solid var(--rose-gold);
    color: var(--rose-gold);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.4s ease;
}

.booknow-btn:hover {
    background-color: var(--rose-gold);
    color: var(--black-bg);
    box-shadow: 0 0 20px rgba(183, 110, 121, 0.5);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--rose-gold);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.close-btn span {
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: var(--white);
    top: 50%;
    left: 50%;
}

.close-btn span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-btn:hover span {
    background-color: var(--rose-gold);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-nav-list li {
    margin: 30px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.mobile-menu.is-open .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.3s;
}

.mobile-menu.is-open .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.4s;
}

.mobile-menu.is-open .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.5s;
}

.mobile-menu.is-open .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.6s;
}

.mobile-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-nav-list a:hover {
    color: var(--rose-gold);
}

.mobile-book-btn {
    font-size: 1.2rem !important;
    padding: 15px 40px;
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .hamburger {
        display: block;
    }
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2000;
    width: 40px;
    height: 40px;
    padding: 0;
}

.line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--rose-gold);
    margin: 6px auto;
    transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-btn.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--white);
}

.menu-btn.active .line:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--white);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-overlay.is-open {
    transform: translateX(0);
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-list li {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-overlay.is-open .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-overlay.is-open li:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-overlay.is-open li:nth-child(2) {
    transition-delay: 0.3s;
}

.mobile-overlay.is-open li:nth-child(3) {
    transition-delay: 0.4s;
}

.mobile-overlay.is-open li:nth-child(4) {
    transition-delay: 0.5s;
}

.mobile-overlay.is-open li:nth-child(5) {
    transition-delay: 0.6s;
}

.mobile-nav-list a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
}

@media (max-width: 991px) {
    .menu-btn {
        display: block;
    }
}

.hero-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #050505;
    display: flex;
    align-items: center;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1522337360788-8b13df772ce1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    z-index: 2;
    animation: floatOrb 15s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--rose-gold);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #4a2c2c;
    bottom: -10%;
    right: -5%;
}

@keyframes floatOrb {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(60px, 40px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1;
}

.shimmer-text {
    background: linear-gradient(90deg, #9b636a, #fff, #9b636a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.hero-line {
    width: 80px;
    height: 1px;
    background: var(--rose-gold);
    margin: 30px auto;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.btn-premium {
    position: relative;
    padding: 18px 45px;
    background: var(--rose-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.4s;
}

.btn-premium span {
    position: relative;
    z-index: 2;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.5s;
    z-index: 1;
}

.btn-premium:hover::before {
    left: 0;
}

.btn-premium:hover {
    color: #000;
    box-shadow: 0 10px 30px rgba(183, 110, 121, 0.4);
}

.btn-link-lux {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-link-lux:hover {
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.scroll-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--rose-gold);
    margin-bottom: 10px;
}

.scroll-bar {
    width: 1px;
    height: 60px;
    background: rgba(183, 110, 121, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--rose-gold);
    animation: scrollMove 2s infinite ease-in-out;
}

@keyframes scrollMove {
    0% {
        top: -30%;
    }

    100% {
        top: 100%;
    }
}

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}

.hero-tag {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-line {
    animation-delay: 0.6s;
}

.hero-desc {
    animation-delay: 0.8s;
}

.hero-btns {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        gap: 20px;
    }
}

.experience-sec {
    background-color: #050505;
}

.exp-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.exp-card:hover img {
    transform: scale(1.1);
}

.exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.exp-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    letter-spacing: 5px;
    margin-bottom: 5px;
}

.exp-content p {
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.exp-content a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--rose-gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.exp-content a:hover {
    color: var(--rose-gold);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.booking-progress {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.progress-step {
    color: #555;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-step.active {
    color: var(--rose-gold);
    font-weight: bold;
}

.booking-card {
    background: #111;
    padding: 40px;
    border: 1px solid #222;
}

.luxury-input {
    background: transparent;
    border: 1px solid #333;
    color: white;
    padding: 15px;
    border-radius: 0;
}

.luxury-input:focus {
    background: #151515;
    border-color: var(--rose-gold);
    color: white;
    box-shadow: none;
}

.service-item,
.staff-item {
    padding: 20px;
    border: 1px solid #222;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.service-item:hover,
.staff-item:hover,
.selected {
    border-color: var(--rose-gold);
    background: #1a1a1a;
}


.about-hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
}

.hero-text-box {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text-box h1 {
    color: #fff;
    text-shadow: 0 0 20px rgba(183, 110, 121, 0.5);
}

.ahero-tag {
    color: #300909;
    letter-spacing: 8px;
    font-size: 1.5rem;
}

.ls-3 {
    letter-spacing: 4px;
}

.text-rose {
    color: var(--rose-gold);
}

.text-gray {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
}

.bg-dark-lux {
    background-color: #0c0c0c;
}

.about-image-frame {
    border: 1px solid var(--rose-gold);
    padding: 15px;
    position: relative;
}

.about-image-frame::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 2px solid var(--rose-gold);
    border-right: 2px solid var(--rose-gold);
}

.experience-p {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


.contact-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.form-label-lux {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-gold);
    margin-bottom: 10px;
    display: block;
}

.lux-input-field {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.lux-input-field:focus {
    border-color: var(--rose-gold);
}

.captcha-code {
    background: #222;
    color: var(--rose-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    padding: 10px 20px;
    letter-spacing: 5px;
    border: 1px dashed var(--rose-gold);
    user-select: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.text-gray {
    color: #aaa;
}

.hours-table {
    background: #111 !important;
    border: 1px solid #222;
}

.hours-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 2px;
}

.map-section {
    line-height: 0;
}

/* ================================================
   WHY CHOOSE SONIA'S STYLES
   ================================================ */

.py-100 {
    padding: 100px 0;
}

.why-choose-sec {
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

/* Feature Card Styling */
.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.1);
    padding: 50px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
}

.feature-card:hover {
    background: rgba(183, 110, 121, 0.05);
    border-color: var(--rose-gold);
    transform: translateY(-10px);
}

/* Card Glow Effect on Hover */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(183, 110, 121, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

/* Icon Styling */
.feature-icon {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 25px;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Text Styling */
.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .feature-card {
        padding: 40px 20px;
    }
}

/* ================================================
   SERVICES PREVIEW SECTION
   ================================================ */

.services-preview-sec {
    background-color: #050505;
    position: relative;
}

/* The Split Cards */
.service-gender-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.15);
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.service-gender-card:hover {
    border-color: var(--rose-gold);
    box-shadow: 0 0 40px rgba(183, 110, 121, 0.1);
}

/* Subtle corner glow */
.service-gender-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(183, 110, 121, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-gender-card:hover::before {
    opacity: 1;
}

.gender-title {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    font-size: 2rem;
    margin-bottom: 35px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* The List Items */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-line-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: default;
}

.service-line-item:last-child {
    border-bottom: none;
}

.service-line-item:hover {
    padding-left: 15px;
    background: linear-gradient(90deg, rgba(183, 110, 121, 0.05), transparent);
}

.service-line-item i {
    font-size: 1.5rem;
    color: var(--rose-gold);
    width: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-line-item:hover i {
    transform: scale(1.15);
}

.service-name {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.service-tag {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-text);
    margin-top: 4px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-gender-card {
        padding: 35px 25px;
    }

    .gender-title {
        font-size: 1.6rem;
    }
}

/* ================================
   TEAM SECTION
================================ */
.team-sec,
.gallery-sec,
.faq-sec,
.final-cta-sec {
    background: #050505;
    position: relative;
    overflow: hidden;
}

.team-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 110, 121, 0.15);
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--rose-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.team-photo {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--rose-gold);
    padding: 4px;
    background: #111;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.team-title {
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.team-exp {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
}

.team-tags span {
    border: 1px solid rgba(183, 110, 121, 0.25);
    color: #fff;
    font-size: 0.72rem;
    padding: 6px 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02);
}

.team-bio {
    color: var(--gray-text);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ===============================================
   PREMIUM GALLERY SECTION - MASONRY GRID
   =============================================== */

.gallery-sec {
    background: #050505;
    position: relative;
    overflow: hidden;
}

.bg-black {
    background-color: #0b0b0b;
}

.founder-photo-wrapper {
    position: relative;
    border-radius: 30px;
    padding: 10px;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.text-gold {
    color: #c5a059 !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.text-gold-faded {
    color: #c5a059;
    opacity: 0.9;
    font-style: italic;
}

.text-light-muted {
    color: #d1d1d1;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* The Gold Badge on the Image */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: #c5a059;
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 120px;
}

.experience-badge .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Fixed Specialty Tags */
.specialty-tag {
    border: 1px solid rgba(197, 160, 89, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.specialty-tag:hover {
    background: #c5a059;
    border-color: #c5a059;
}

/* Luxury Button */
.btn-luxury-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #c5a059;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.4s;
}

.btn-luxury-outline:hover {
    background: #c5a059;
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* Animation sync */
.hero-line {
    height: 2px;
    width: 60px;
    background: #c5a059;
}

/* Masonry Grid Container */
.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: 280px;
    gap: 16px;
}

/* Gallery Card Base */
.gallery-card {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(183, 110, 121, 0.12);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
    border-color: var(--rose-gold);
    box-shadow: 0 20px 60px rgba(183, 110, 121, 0.2);
    transform: translateY(-8px);
}

/* Different Card Sizes */
.gallery-square {
    grid-row: span 1;
    grid-column: span 1;
}

.gallery-tall {
    grid-row: span 2;
    grid-column: span 1;
}

.gallery-wide {
    grid-row: span 1;
    grid-column: span 2;
}

/* Image & Video Fill */
.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
    filter: brightness(0.8) contrast(1.1) saturate(1.05);
}

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.12);
    filter: brightness(0.92) contrast(1.15) saturate(1.1);
}

/* Premium Overlay */
.gallery-overlay-new {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0.85;
    transition: opacity 0.5s ease;
}

.gallery-card:hover .gallery-overlay-new {
    opacity: 1;
}

/* Overlay Text */
.overlay-content {
    position: relative;
    z-index: 2;
}

.overlay-tag {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 6px;
    font-weight: 600;
}

.overlay-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* Accent Line (appears on hover) */
.gallery-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.gallery-card:hover::before {
    transform: scaleX(1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-tall,
    .gallery-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .overlay-tag {
        font-size: 1.1rem;
    }

    .overlay-desc {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
}

/* ================================
   FAQ SECTION
================================ */
.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(183, 110, 121, 0.12);
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 22px 24px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(183, 110, 121, 0.08);
    color: var(--rose-gold);
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    color: var(--gray-text);
    line-height: 1.8;
    padding: 0 24px 22px;
    background: rgba(255, 255, 255, 0.01);
}

/* ================================
   FINAL CTA SECTION
================================ */
.cta-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(183, 110, 121, 0.18);
    padding: 70px 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 15px 0 18px;
}

.cta-text {
    color: var(--gray-text);
    max-width: 720px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(183, 110, 121, 0.35);
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.cta-phone:hover {
    color: var(--rose-gold);
    border-color: var(--rose-gold);
}

/* ================================
   GENERAL SPACING
================================ */
.py-100 {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .py-100 {
        padding: 70px 0;
    }

    .team-photo {
        width: 110px;
        height: 110px;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-grid .col-md-4:nth-child(2) .gallery-item,
    .gallery-grid .col-md-4:nth-child(5) .gallery-item {
        height: 240px;
    }

    .cta-box {
        padding: 45px 22px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 14px;
    }
}

/* ===============================================
   LUXURY CONTACT PAGE STYLES
   =============================================== */

/* Hero Section */
.contact-hero-lux {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.8));
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-title-lux {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
}

/* Contact Cards Section */
.contact-cards-sec {
    background: #050505;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.15);
    padding: 40px 30px;
    height: 100%;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    background: rgba(183, 110, 121, 0.05);
    border-color: var(--rose-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--rose-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15);
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card-text {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-link {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    border-color: var(--rose-gold);
}

/* Form + Map Split Section */
.contact-form-map-sec {
    background: #050505;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.12);
    padding: 50px;
}

.luxury-contact-form {
    margin-top: 30px;
}

.lux-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.lux-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.lux-field:focus {
    outline: none;
    border-color: var(--rose-gold);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.1);
}

.lux-field::placeholder {
    color: #666;
}

.map-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    border: 1px solid rgba(183, 110, 121, 0.12);
    overflow: hidden;
}

.map-wrapper iframe {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .form-wrapper {
        padding: 30px 25px;
    }

    .map-wrapper {
        min-height: 400px;
    }

    .hero-title-lux {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-card-title {
        font-size: 1.3rem;
    }
}

/* ================================================
   LUXURY FOOTER - MOBILE-OPTIMIZED
   ================================================ */

.luxury-footer {
    background: #080808;
    border-top: 1px solid rgba(183, 110, 121, 0.15);
    padding: 50px 0 0;
}

/* Main Footer Content */
.footer-main {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===== BRAND SECTION (Always Visible) ===== */
.footer-brand-section {
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    margin-bottom: 12px;
    letter-spacing: 3px;
}

.footer-tagline {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(183, 110, 121, 0.3);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* ================================================
   LUXURY FAQ OVERRIDE
   ================================================ */

.custom-lux-accordion {
    background: transparent;
}

.custom-lux-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(183, 110, 121, 0.1) !important;
    margin-bottom: 20px;
    border-radius: 0 !important;
    overflow: hidden;
    transition: all 0.4s ease;
}

.custom-lux-accordion .accordion-item:hover {
    border-color: rgba(183, 110, 121, 0.4) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.custom-lux-accordion .accordion-button {
    background: transparent !important;
    color: var(--white) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    padding: 30px;
    box-shadow: none !important;
    border: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.custom-lux-accordion .accordion-button:not(.collapsed) {
    color: var(--rose-gold) !important;
}

/* Question Number Styling */
.q-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--rose-gold);
    margin-right: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0.6;
}

/* Custom Icon for Accordion */
.custom-lux-accordion .accordion-button::after {
    background-image: none !important;
    content: '+';
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--rose-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.custom-lux-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    color: var(--white);
}

.custom-lux-accordion .accordion-body {
    background: rgba(0, 0, 0, 0.2);
    color: var(--gray-text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    padding: 0 30px 40px 75px;
    /* Aligned with text, not number */
    font-size: 1rem;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .custom-lux-accordion .accordion-button {
        padding: 20px;
        font-size: 1.05rem;
    }

    .custom-lux-accordion .accordion-body {
        padding: 0 20px 30px 20px;
        font-size: 0.95rem;
    }

    .q-number {
        margin-right: 10px;
    }
}

.footer-social-links a:hover,
.footer-social-links a:active {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    transform: scale(1.1);
}

.whatsapp-btn {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

.whatsapp-btn:hover {
    background: #20ba5a !important;
}

/* ===== FOOTER COLUMNS (Mobile Accordion) ===== */
.footer-columns {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Toggle Button (Mobile Only) */
.footer-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 18px 0;
    cursor: pointer;
    text-align: left;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.toggle-icon {
    color: var(--rose-gold);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.footer-column.open .toggle-icon {
    transform: rotate(180deg);
}

/* Collapsible Content */
.footer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.footer-column.open .footer-content {
    max-height: 500px;
    /* Large enough for content */
    padding-bottom: 20px;
}

/* Menu Styles */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover,
.footer-menu a:active {
    color: var(--rose-gold);
    padding-left: 8px;
}

/* Working Hours */
.footer-hours-block {
    color: var(--gray-text);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.hours-row .day {
    color: #fff;
    font-weight: 600;
}

.open-status {
    color: var(--rose-gold);
    font-size: 0.85rem;
    margin-top: 12px;
    margin-bottom: 0;
    font-weight: 500;
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--rose-gold);
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.footer-contact a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.footer-contact a:hover,
.footer-contact a:active {
    color: var(--rose-gold);
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 0;
    gap: 15px;
}

.footer-credits p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.rights-text {
    font-size: 0.75rem !important;
    color: #555 !important;
}

.footer-logo-small img {
    height: 35px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.footer-logo-small img:hover {
    opacity: 0.7;
}

/* ===== DESKTOP STYLES (992px and up) ===== */
@media (min-width: 992px) {
    .luxury-footer {
        padding: 70px 0 0;
    }

    .footer-main {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 50px;
        padding-bottom: 40px;
    }

    .footer-brand-section {
        margin-bottom: 0;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .footer-column {
        border-bottom: none;
    }

    /* Disable accordion on desktop */
    .footer-toggle {
        pointer-events: none;
        cursor: default;
        padding: 0 0 18px 0;
    }

    .toggle-icon {
        display: none;
    }

    .footer-content {
        max-height: none !important;
        overflow: visible;
        padding-bottom: 0 !important;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-credits {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .rights-text::before {
        content: '•';
        margin-right: 20px;
        color: #444;
    }
}

/* ===== TABLET PORTRAIT (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-social-links a {
        width: 44px;
        height: 44px;
    }

    .footer-toggle {
        padding: 16px 0;
    }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
    .luxury-footer {
        padding: 40px 0 0;
    }

    .footer-logo {
        font-size: 1.7rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-menu a,
    .footer-contact li {
        font-size: 0.9rem;
    }
}

/* Desktop equal alignment */
@media (min-width: 992px) {
    .footer-columns {
        align-items: start;
    }

    .footer-content {
        display: block !important;
    }
}


/* Luxury Styles for the 3-Image Grid */
.service-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.img-wrapper {
    width: 100%;
    height: 100%;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-image-card:hover img {
    transform: scale(1.1);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: #fff;
    text-align: center;
}

.img-caption h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.img-caption span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c5a47e;
    /* Gold/Rose color */
}

/* ================================================
   ABOUT PAGE - LUXURY REDESIGN
   ================================================ */

/* ===== HERO SECTION ===== */
.about-hero-lux {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050505;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.1);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(0, 0, 0, 0.85));
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title-lux {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6.5rem);
    line-height: 1;
    margin-bottom: 25px;
}

.hero-subtitle {
    color: var(--gray-text);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WELCOME SECTION ===== */
.welcome-minimal {
    background: #050505;
}

.welcome-text {
    color: var(--gray-text);
    font-size: 1.15rem;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== STORY & VALUES ===== */
.story-values-sec {
    background: #050505;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.12);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
}

.value-card:hover {
    border-color: var(--rose-gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(183, 110, 121, 0.15);
}

.value-image {
    height: 280px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    filter: brightness(0.85) contrast(1.1);
}

.value-card:hover .value-image img {
    transform: scale(1.1);
}

.value-content {
    padding: 35px;
}

.value-title {
    font-family: 'Playfair Display', serif;
    color: var(--rose-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.value-text {
    color: var(--gray-text);
    line-height: 1.9;
    font-size: 0.95rem;
    margin: 0;
}

/* ===== STATS SECTION ===== */
.stats-sec {
    background: rgba(183, 110, 121, 0.03);
    border-top: 1px solid rgba(183, 110, 121, 0.1);
    border-bottom: 1px solid rgba(183, 110, 121, 0.1);
}

.stat-item {
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== TEAM PREVIEW ===== */
.team-preview-sec {
    background: #050505;
}

.team-card-mini {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(183, 110, 121, 0.12);
    padding: 25px;
    text-align: center;
    transition: all 0.5s ease;
}

.team-card-mini:hover {
    border-color: var(--rose-gold);
    transform: translateY(-5px);
}

.team-photo-mini {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--rose-gold);
}

.team-photo-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info-mini h4 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-info-mini p {
    color: var(--rose-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ===== FINAL CTA ===== */
.about-cta-sec {
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1522337360788-8b13df772ce1?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.cta-text {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 991px) {
    .about-hero-lux {
        height: 75vh;
    }

    .hero-title-lux {
        font-size: 3rem;
    }

    .value-image {
        height: 220px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-lux {
        height: 95vh;
    }

    .hero-title-lux {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .value-content {
        padding: 25px;
    }

    .value-title {
        font-size: 1.5rem;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .team-photo-mini {
        width: 100px;
        height: 100px;
    }

    .about-cta-sec {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===============================================
   GALLERY PAGE HERO
   =============================================== */
.gallery-hero-lux {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)),
        url('https://images.unsplash.com/photo-1522337360788-8b13df772ce1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    animation: slowZoom 18s infinite alternate ease-in-out;
    z-index: 1;
}

.gallery-hero-lux .container {
    position: relative;
    z-index: 2;
}

/* ===============================================
   GALLERY ITEMS - NO HOVER DEPENDENCY
   =============================================== */
.gallery-card {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(183, 110, 121, 0.12);
    cursor: pointer;
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    border-color: var(--rose-gold);
    box-shadow: 0 18px 45px rgba(183, 110, 121, 0.16);
}

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.82) contrast(1.05) saturate(1.02);
}

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.04);
    filter: brightness(0.92) contrast(1.08) saturate(1.05);
}

.gallery-overlay-new {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px 18px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.05) 100%);
    opacity: 1;
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay-new {
    transform: translateY(-4px);
}

.overlay-tag {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 4px;
}

.overlay-desc {
    margin: 0;
    font-size: 0.72rem;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

/* ===============================================
   LUXURY LIGHTBOX
   =============================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(3, 3, 3, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content-wrapper {
    width: min(100%, 980px);
    max-height: 90vh;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.lightbox.active .lightbox-content-wrapper {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lightbox-content-wrapper.changing {
    opacity: 0.2;
    transform: scale(0.97);
}

#lightboxMediaContainer {
    width: 100%;
}

.lightbox-media,
#lightboxMediaContainer img,
#lightboxMediaContainer video {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border: 1px solid rgba(183, 110, 121, 0.25);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    background: #000;
}

.lightbox-info {
    padding-top: 20px;
}

#lightboxTitle {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    margin-bottom: 6px;
}

#lightboxSubtitle {
    margin: 0;
    color: var(--rose-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--rose-gold);
    color: #000;
    transform: scale(1.06);
}

.lightbox-close {
    top: 25px;
    right: 25px;
    z-index: 2;
}

.lightbox-prev {
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.06);
}

/* ===============================================
   MOBILE
   =============================================== */
@media (max-width: 768px) {
    .gallery-hero-lux {
        min-height: 60vh;
    }

    .gallery-overlay-new {
        padding: 16px 14px 14px;
    }

    .overlay-tag {
        font-size: 1rem;
    }

    .overlay-desc {
        font-size: 0.62rem;
        letter-spacing: 2px;
    }

    .lightbox {
        padding: 18px;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-media,
    #lightboxMediaContainer img,
    #lightboxMediaContainer video {
        max-height: 62vh;
    }

    #lightboxSubtitle {
        font-size: 0.68rem;
        letter-spacing: 2px;
    }
}