/* ===== VARIABLES ===== */
:root {
    /* Pink Gradient */
    --pink: #ff4fa3;
    --pink-light: #ff7eb3;
    --pink-gradient: linear-gradient(135deg, #ff4fa3, #ff7eb3);
    
    /* Purple Gradient */
    --purple: #6a1b9a;
    --purple-light: #8e44ad;
    --purple-gradient: linear-gradient(135deg, #6a1b9a, #8e44ad);
    
    /* Combined Gradient */
    --brand-gradient: linear-gradient(135deg, #ff4fa3, #6a1b9a);
    --brand-gradient-light: linear-gradient(135deg, #ff7eb3, #8e44ad);
    
    /* Rose Gold */
    --rose-gold: #b76e79;
    --rose-gold-light: #d88c9a;
    --rose-gold-dark: #9a5c66;
    --rose-gold-gradient: linear-gradient(135deg, #b76e79, #a45c66);
    
    /* Black */
    --black: #1a1a1a;
    --black-light: #333333;
    
    /* Beige & Grey */
    --beige: #f8f4e9;
    --beige-dark: #e8e6e1;
    --grey-light: #f5f5f5;
    
    /* Shadows */
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(106,27,154,0.1);
    --shadow-lg: 0 20px 40px rgba(106,27,154,0.15);
    --shadow-rose: 0 10px 30px rgba(183,110,121,0.2);
    --shadow-rose-lg: 0 20px 40px rgba(183,110,121,0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--black);
    background-color: var(--beige);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== UTILITY CLASSES ===== */
.rose-gold-text {
    color: var(--rose-gold);
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    display: block;
    color: var(--rose-gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.2;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--rose-gold-gradient);
    color: white;
    box-shadow: var(--shadow-rose);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--rose-gold);
    color: var(--rose-gold);
}

.btn-outline:hover {
    background: var(--rose-gold-gradient);
    color: white;
    transform: translateY(-3px);
}

.btn-light {
    background: white;
    color: var(--rose-gold);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-wa {
    background: #25D366;
    color: white;
}

.btn-call {
    background: var(--rose-gold-gradient);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-shine {
    left: 100%;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--beige);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    animation: preloaderPulse 1.5s infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.preloader-sparkle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,79,163,0.3) 0%, transparent 70%);
    animation: sparkleRotate 2s infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes sparkleRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== CONTACT SIDEBAR ===== */
.contact-sidebar {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-sidebar-item {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.contact-sidebar-item.whatsapp {
    background: #25D366;
}

.contact-sidebar-item.call {
    background: var(--rose-gold-gradient);
}

.contact-sidebar-item.booking {
    background: var(--brand-gradient);
}

.contact-sidebar-item.back-to-top {
    background: var(--black);
}

.contact-tooltip {
    position: absolute;
    right: 60px;
    background: var(--black);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.contact-sidebar-item:hover {
    transform: translateY(-5px) scale(1.1);
}

.contact-sidebar-item:hover .contact-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: var(--brand-gradient);
    padding: 10px 0;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.announcement-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.announcement-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-text {
    font-weight: 500;
}

.announcement-cta {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.announcement-cta:hover {
    background: white;
    color: var(--rose-gold);
}

/* ===== MAIN HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(248, 244, 233, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(183,110,121,0.1);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 5px 0;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: height 0.3s ease;
}

.scrolled .header-wrapper {
    height: 85px;
}

/* ===== BIG LOGO STYLES ===== */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image-container {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    transition: var(--transition);
}

.scrolled .logo-image-container {
    width: 75px;
    height: 75px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.logo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: logoShine 4s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    25% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.logo-glow-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: var(--brand-gradient);
    animation: glowRing 2s infinite;
    z-index: 1;
}

@keyframes glowRing {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.logo-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.logo-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: particleFloat 3s infinite;
}

.logo-particles span:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.logo-particles span:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.logo-particles span:nth-child(3) {
    bottom: 20%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        transform: translate(15px, -15px);
        opacity: 1;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.logo-text-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--rose-gold);
    letter-spacing: 3px;
    font-weight: 300;
    margin-top: 2px;
}

.premium-badge {
    display: none;
}

/* ===== NAVIGATION ===== */
.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    border-radius: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon i {
    position: absolute;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-icon i:first-child {
    color: var(--black);
    opacity: 1;
    transform: scale(1);
}

.nav-icon .nav-icon-hover {
    color: var(--rose-gold);
    opacity: 0;
    transform: scale(0.5);
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
}

.nav-link:hover .nav-icon i:first-child,
.nav-item.active .nav-icon i:first-child {
    opacity: 0;
    transform: scale(0.5);
}

.nav-link:hover .nav-icon .nav-icon-hover,
.nav-item.active .nav-icon .nav-icon-hover {
    opacity: 1;
    transform: scale(1);
}

.nav-item.active .nav-link {
    color: var(--rose-gold);
}

.nav-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--brand-gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.nav-item.active .nav-indicator,
.nav-link:hover .nav-indicator {
    width: 30px;
}

.dropdown-icon {
    font-size: 0.7rem;
    color: var(--rose-gold);
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--pink);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== MEGA MENU ===== */
.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 800px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid rgba(183,110,121,0.1);
}

.nav-item:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.megamenu-container {
    padding: 25px;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.megamenu-col {
    border-right: 1px solid rgba(183,110,121,0.1);
    padding-right: 20px;
}

.megamenu-col:last-child {
    border-right: none;
}

.megamenu-col.featured {
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
    border-radius: 15px;
    padding: 15px;
}

.megamenu-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--rose-gold);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(183,110,121,0.2);
}

.megamenu-title i {
    font-size: 1.2rem;
}

.megamenu-links {
    list-style: none;
}

.megamenu-links li {
    margin-bottom: 8px;
}

.megamenu-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    text-decoration: none;
    color: #666;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
}

.megamenu-links a:hover {
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
    color: var(--rose-gold);
    transform: translateX(5px);
}

.price-tag {
    color: var(--rose-gold);
    font-weight: 600;
    font-size: 0.8rem;
}

.badge {
    background: var(--pink);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
}

.view-all {
    margin-top: 10px;
    text-align: right;
}

.view-all a {
    color: var(--rose-gold) !important;
    font-weight: 600;
}

.megamenu-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(183,110,121,0.1);
    text-align: center;
}

.view-all-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 30px;
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-services:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose);
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    position: relative;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--black);
}

.action-btn i {
    font-size: 1.1rem;
    transition: var(--transition);
}

.action-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    color: var(--rose-gold);
    opacity: 0;
    transition: var(--transition);
}

.action-btn:hover {
    background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(106,27,154,0.1));
}

.action-btn:hover i {
    color: var(--rose-gold);
    transform: scale(1.1);
}

.action-btn:hover .action-label {
    opacity: 1;
    bottom: -25px;
}

.language-selector {
    display: none;
}

.btn-appointment {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: var(--rose-gold-gradient);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-rose);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bellShake 3s infinite;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    5% { transform: rotate(15deg); }
    10% { transform: rotate(-15deg); }
    15% { transform: rotate(10deg); }
    20% { transform: rotate(-10deg); }
    25% { transform: rotate(5deg); }
    30% { transform: rotate(0); }
}

.btn-appointment:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose-lg);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.mobile-toggle span {
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--brand-gradient);
    left: 10px;
    transition: var(--transition);
}

.mobile-toggle span:nth-child(1) {
    top: 15px;
}

.mobile-toggle span:nth-child(2) {
    top: 22px;
    width: 20px;
}

.mobile-toggle span:nth-child(3) {
    bottom: 15px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 22px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 21px;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 244, 233, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    border: none;
    background: var(--black);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.search-close:hover {
    transform: rotate(90deg);
    background: var(--rose-gold);
}

.search-form {
    display: flex;
    gap: 15px;
}

.search-input {
    flex: 1;
    padding: 20px 25px;
    border: 2px solid transparent;
    border-radius: 60px;
    font-size: 1.2rem;
    background: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--rose-gold);
    box-shadow: var(--shadow-rose-lg);
}

.search-submit {
    padding: 0 40px;
    border: none;
    border-radius: 60px;
    background: var(--rose-gold-gradient);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.search-submit:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-rose);
}

.search-suggestions {
    margin-top: 30px;
    text-align: center;
}

.search-suggestions h4 {
    color: #666;
    margin-bottom: 15px;
}

.suggestions-tags {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestions-tags a {
    padding: 8px 20px;
    background: white;
    border-radius: 30px;
    text-decoration: none;
    color: #666;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.suggestions-tags a:hover {
    background: var(--brand-gradient);
    color: white;
    transform: translateY(-3px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: white;
    z-index: 2001;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(183,110,121,0.1);
}

.mobile-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.mobile-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--beige);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-close:hover {
    background: var(--rose-gold);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-body {
    padding: 20px;
    height: calc(100vh - 90px);
    overflow-y: auto;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav > li {
    margin-bottom: 10px;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    text-decoration: none;
    color: var(--black);
    border-radius: 15px;
    transition: var(--transition);
}

.mobile-nav > li > a i:first-child {
    width: 25px;
    color: var(--rose-gold);
}

.mobile-nav > li > a:hover {
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
    padding-left: 25px;
}

.has-submenu > a {
    justify-content: space-between;
}

.has-submenu > a i:last-child {
    transition: transform 0.3s ease;
}

.has-submenu.active > a i:last-child {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding-left: 55px;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    margin-bottom: 5px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-submenu a:hover {
    background: rgba(183,110,121,0.1);
    color: var(--rose-gold);
    padding-left: 20px;
}

.mobile-badge {
    background: var(--pink);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 10px;
}

.mobile-contact {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
    border-radius: 20px;
}

.mobile-contact h4 {
    color: var(--rose-gold);
    margin-bottom: 15px;
}

.mobile-contact a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #666;
    transition: var(--transition);
}

.mobile-contact a i {
    width: 25px;
    color: var(--rose-gold);
}

.mobile-contact a:hover {
    color: var(--rose-gold);
    padding-left: 5px;
}

.mobile-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.mobile-social a {
    width: 45px;
    height: 45px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.mobile-social a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rose);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 30px 0;
    background: white;
    border-bottom: 1px solid rgba(183,110,121,0.1);
}

.trust-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon-3d {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.trust-icon-3d::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

.trust-item:hover .trust-icon-3d {
    transform: perspective(1000px) rotateY(180deg) rotateX(10deg);
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--black);
}

.trust-item p {
    font-size: 0.9rem;
    color: #666;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--beige);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.image-main {
    grid-column: span 2;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--brand-gradient);
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
}

.image-small {
    border-radius: 15px;
    overflow: hidden;
}

.image-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--rose-gold);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rose-gold);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* ===== SERVICES SECTION WITH 3D CARDS ===== */
.services-section {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card-3d {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0) rotateY(0);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.service-card-3d:hover .service-bg {
    transform: scale(1.1);
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(106,27,154,0.5));
    z-index: 2;
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-card-3d:hover .service-content {
    transform: translateY(-10px);
}

.service-icon-3d {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    transform-style: preserve-3d;
    animation: float3d 3s infinite;
}

@keyframes float3d {
    0%, 100% {
        transform: translateY(0) rotateY(0);
    }
    50% {
        transform: translateY(-10px) rotateY(10deg);
    }
}

.icon-shine {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    border-radius: 50%;
    animation: iconShine 2s infinite;
}

@keyframes iconShine {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.service-card-3d h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.service-price {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.service-link-3d {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    margin-top: 5px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
}

.service-link-3d:hover {
    background: var(--rose-gold);
    transform: translateX(5px);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--pink);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    z-index: 4;
}

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--rose-gold);
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    z-index: 4;
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    padding: 60px 0;
    background: var(--brand-gradient);
    position: relative;
    overflow: hidden;
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    color: white;
    position: relative;
    z-index: 2;
}

.offer-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.offer-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.offer-price {
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 15px;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    padding: 10px;
    border-radius: 10px;
    min-width: 60px;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.offer-image {
    position: relative;
}

.offer-image img {
    max-width: 100%;
    animation: float 3s infinite;
}

.offer-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    animation: rotate 10s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== GALLERY SECTION WITH 3D ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--beige);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item-3d {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0) rotateY(0);
    transition: transform 0.3s ease;
}

.gallery-item-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-3d:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
}

.gallery-item-3d:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,79,163,0.8), rgba(106,27,154,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateZ(20px);
}

.gallery-item-3d:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item-3d:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
    padding: 100px 0;
    background: var(--beige);
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item-3d {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit-item-3d:hover {
    transform: perspective(1000px) translateX(10px) translateZ(20px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-3d {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transform-style: preserve-3d;
    animation: rotate3d 5s infinite;
}

@keyframes rotate3d {
    0%, 100% {
        transform: rotateY(0) rotateX(0);
    }
    25% {
        transform: rotateY(10deg) rotateX(10deg);
    }
    75% {
        transform: rotateY(-10deg) rotateX(-10deg);
    }
}

.benefit-item-3d h4 {
    color: var(--black);
    margin-bottom: 5px;
}

.benefit-item-3d p {
    color: #666;
    line-height: 1.6;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.video-badge-3d {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    animation: badgeFloat 3s infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-10px) translateZ(20px);
    }
}

.video-badge-3d:hover {
    transform: scale(1.1) translateZ(30px);
    background: var(--rose-gold);
    color: white;
}

.video-badge-3d i {
    color: var(--rose-gold);
    font-size: 1.2rem;
}

.video-badge-3d:hover i {
    color: white;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 0;
    background: var(--beige);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.info-card-3d {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: var(--shadow-sm);
}

.info-card-3d:hover {
    transform: perspective(1000px) translateZ(30px) rotateX(2deg);
    box-shadow: var(--shadow-lg);
}

.info-icon-3d {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transform-style: preserve-3d;
    animation: iconSpin 3s infinite;
}

@keyframes iconSpin {
    0%, 100% {
        transform: rotateY(0);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.info-card-3d h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-card-3d p,
.info-card-3d a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-buttons {
    display: flex;
    gap: 15px;
}

.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-3px) translateZ(20px);
}

.map-container-3d {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 20px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.map-container-3d:hover {
    transform: perspective(1000px) rotateX(0) translateZ(20px);
}

.map-container-3d iframe {
    width: 100%;
    height: 100%;
}

.quick-booking-form-3d {
    background: white;
    padding: 30px;
    border-radius: 20px;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(1deg);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.quick-booking-form-3d:hover {
    transform: perspective(1000px) rotateX(0) translateZ(20px);
}

.quick-booking-form-3d h4 {
    color: var(--rose-gold);
    margin-bottom: 20px;
}

.quick-booking-form-3d input,
.quick-booking-form-3d select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.quick-booking-form-3d input:focus,
.quick-booking-form-3d select:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.btn-submit-3d {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn-submit-3d:hover {
    transform: translateY(-3px) translateZ(10px);
    box-shadow: var(--shadow-rose-lg);
}

/* ===== FULL SCREEN SLIDER ===== */
.slider-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.slide-subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--rose-gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px var(--rose-gold);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 10;
}

.progress-bar {
    width: 0;
    height: 100%;
    background: var(--rose-gold);
    animation: progress 5s linear infinite;
}

@keyframes progress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: #999;
    position: relative;
    padding: 60px 0 20px;
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--pink), var(--rose-gold));
    border-radius: 50%;
    opacity: 0.1;
    animation: footerParticleFloat 15s infinite linear;
}

.footer-particles span:nth-child(1) { top: 10%; left: 10%; animation-duration: 20s; }
.footer-particles span:nth-child(2) { top: 30%; right: 20%; animation-duration: 25s; }
.footer-particles span:nth-child(3) { bottom: 20%; left: 30%; animation-duration: 22s; }
.footer-particles span:nth-child(4) { bottom: 40%; right: 40%; animation-duration: 18s; }
.footer-particles span:nth-child(5) { top: 50%; left: 50%; animation-duration: 30s; }

@keyframes footerParticleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.1;
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(100px, 50px) rotate(270deg);
        opacity: 0.2;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.1;
    }
}

.footer-shine-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pink), var(--rose-gold), var(--purple), transparent);
    animation: footerShine 3s infinite;
}

@keyframes footerShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.logo-image-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--brand-gradient);
    padding: 3px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(183,110,121,0.4), transparent);
    border-radius: 50%;
    animation: footerLogoGlow 2s infinite;
    z-index: 1;
}

@keyframes footerLogoGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.footer-logo-text h3 {
    font-size: 1.4rem;
    color: white;
    line-height: 1.2;
}

.footer-logo-text h3 span {
    color: var(--rose-gold);
    display: block;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.logo-tagline {
    color: #999;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-about {
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #999;
}

.feature-mini i {
    color: var(--rose-gold);
    font-size: 0.7rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--rose-gold);
    transform: translateY(-5px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-title {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.title-shine {
    color: var(--rose-gold);
    margin-right: 8px;
    animation: titleShine 2s infinite;
}

@keyframes titleShine {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.footer-links li {
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a {
    color: #999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--rose-gold);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--rose-gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    transition: var(--transition);
}

.footer-contact li:hover .contact-icon-wrapper {
    background: var(--rose-gold);
    color: white;
    transform: rotate(360deg);
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

.contact-details a,
.contact-details p {
    color: #999;
    text-decoration: none;
    line-height: 1.5;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--rose-gold);
}

.sunday {
    color: var(--rose-gold) !important;
    font-size: 0.9rem;
}

.footer-cta {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-wa-btn,
.footer-booking-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.footer-wa-btn {
    background: #25D366;
    color: white;
}

.footer-booking-btn {
    background: var(--rose-gold-gradient);
    color: white;
}

.footer-wa-btn:hover,
.footer-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.footer-wa-btn:hover {
    background: #20bd5a;
}

.footer-booking-btn:hover {
    background: linear-gradient(135deg, #a45c66, #b76e79);
}

.footer-divider {
    margin: 30px 0 20px;
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.divider-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    animation: dividerShine 3s infinite;
}

@keyframes dividerShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.copyright p {
    color: #666;
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-label {
    color: #666;
    font-size: 0.9rem;
    margin-right: 5px;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #666;
    transition: var(--transition);
    cursor: pointer;
}

.payment-methods i:hover {
    color: var(--rose-gold);
    transform: translateY(-3px);
}

/* ===== DESIGNER CREDIT SECTION ===== */
.designer-credit {
    text-align: center;
    padding: 15px 0;
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(183,110,121,0.05), transparent);
    border-radius: 50px;
    margin-bottom: 15px;
}

.credit-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: #999;
    position: relative;
    z-index: 2;
}

.credit-text {
    font-size: 0.95rem;
}

.heart-icon {
    color: #ff4fa3;
    animation: heartBeat 1.5s infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

.designer-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 15px;
    background: linear-gradient(90deg, rgba(255,79,163,0.1), rgba(183,110,121,0.1));
    border-radius: 30px;
    overflow: hidden;
    transition: var(--transition);
}

.designer-logo-text {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #ff4fa3, #b76e79);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
}

.designer-domain {
    font-weight: 600;
    font-size: 1.1rem;
    color: #b76e79;
    position: relative;
    z-index: 2;
}

.link-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.designer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(183,110,121,0.3);
}

.designer-link:hover .link-shine {
    left: 100%;
}

.credit-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    min-width: 200px;
}

.designer-credit:hover .credit-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-20px);
}

.tooltip-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    background: #f5f5f5;
    padding: 5px;
}

.tooltip-text {
    text-align: left;
}

.tooltip-text strong {
    display: block;
    color: var(--rose-gold);
    font-size: 1rem;
}

.tooltip-text span {
    color: #666;
    font-size: 0.8rem;
}

.footer-bottom-links {
    text-align: center;
    padding: 10px 0;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
    margin: 0 5px;
}

.footer-bottom-links a:hover {
    color: var(--rose-gold);
}

.separator {
    color: #333;
    margin: 0 5px;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--rose-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-rose);
    animation: float 3s infinite;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rose-lg);
}

.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5), transparent);
    animation: btnGlow 2s infinite;
}

@keyframes btnGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .megamenu {
        width: 700px;
    }
    
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-text-main {
        font-size: 1.8rem;
    }
    
    .logo-text-sub {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .about-wrapper,
    .why-wrapper,
    .contact-wrapper,
    .offer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-prev,
    .slider-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .btn-appointment .btn-text {
        display: none;
    }
    
    .btn-appointment {
        width: 45px;
        height: 45px;
        padding: 0;
        justify-content: center;
    }
    
    .announcement-cta {
        display: none;
    }
    
    .announcement-text {
        width: 100%;
        justify-content: center;
    }
    
    .logo-text-main {
        font-size: 1.6rem;
    }
    
    .logo-text-sub {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .gallery-grid,
    .info-cards,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons,
    .slide-buttons {
        flex-direction: column;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-image-container {
        width: 70px;
        height: 70px;
    }
    
    .logo-text-main {
        font-size: 1.4rem;
    }
    
    .logo-text-sub {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .header-wrapper {
        height: 85px;
    }
    
    .scrolled .header-wrapper {
        height: 75px;
    }
    
    .scrolled .logo-image-container {
        width: 60px;
        height: 60px;
    }
    
    .header-actions {
        gap: 5px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
    }
    
    .contact-sidebar {
        bottom: 80px;
        right: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-cta {
        flex-direction: column;
    }
    
    .credit-content {
        flex-wrap: wrap;
    }
    
    .back-to-top-btn {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .credit-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .offer-subtitle {
        font-size: 1.5rem;
    }
    
    .logo-image-container {
        width: 60px;
        height: 60px;
    }
    
    .logo-text-main {
        font-size: 1.2rem;
    }
    
    .logo-text-sub {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .header-wrapper {
        height: 75px;
    }
    
    .btn-appointment {
        display: none;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
    
    .contact-sidebar-item {
        width: 45px;
        height: 45px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-features {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--beige), #fff);
    overflow: hidden;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,79,163,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 20s infinite linear;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(106,27,154,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 15s infinite linear reverse;
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--rose-gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--pink);
}

.breadcrumb i {
    font-size: 0.8rem;
    color: #999;
}

.breadcrumb span {
    color: #999;
}

.page-header-shape {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top right, transparent 49%, var(--beige) 50%);
    z-index: 5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SERVICES INTRO ===== */
.services-intro {
    padding: 60px 0;
    background: white;
    position: relative;
}

.intro-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* ===== CATEGORY NAVIGATION ===== */
.category-nav {
    padding: 20px 0 40px;
    background: white;
    position: sticky;
    top: 100px;
    z-index: 90;
    border-bottom: 1px solid rgba(183,110,121,0.1);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.category-tab {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--rose-gold);
    border-radius: 50px;
    color: var(--rose-gold);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--rose-gold-gradient);
    transition: width 0.3s ease;
    z-index: -1;
}

.category-tab:hover::before,
.category-tab.active::before {
    width: 100%;
}

.category-tab:hover,
.category-tab.active {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose);
}

/* ===== SERVICE CATEGORY SECTION ===== */
.service-category-section {
    padding: 60px 0;
    background: var(--beige);
    position: relative;
}

.service-category-section:nth-child(even) {
    background: white;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.category-icon-large {
    width: 100px;
    height: 100px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    animation: iconPulse 3s infinite;
}

.category-icon-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    animation: rotate 10s infinite linear;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-lg);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-rose-lg);
    }
}

.category-title-wrapper {
    flex: 1;
}

.category-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--rose-gold-gradient);
    border-radius: 2px;
}

.category-description {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* ===== SERVICES LIST ===== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(183,110,121,0.1);
}

.service-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rose-gold);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--rose-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item.featured {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 2px solid var(--rose-gold);
    box-shadow: var(--shadow-rose);
}

.service-item.ayurvedic-item {
    background: linear-gradient(135deg, #e8f5e9, #fff);
    border-left: 5px solid #4caf50;
}

.service-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(106,27,154,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rose-gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.service-item:hover .service-item-icon {
    transform: rotate(360deg) scale(1.1);
    background: var(--brand-gradient);
    color: white;
}

.service-item-details {
    flex: 1;
}

.service-item-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--black);
}

.service-item-details p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.featured-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--rose-gold);
    color: white;
    border-radius: 15px;
    font-size: 0.7rem;
    margin-left: 10px;
    font-weight: 600;
    animation: badgePulse 2s infinite;
}

.service-item-price {
    min-width: 150px;
    text-align: right;
    padding: 0 15px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose-gold);
    display: block;
    line-height: 1.2;
}

.price-request {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.service-book-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(106,27,154,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-gold);
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-book-btn:hover {
    background: var(--rose-gold-gradient);
    color: white;
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-rose);
}

/* ===== AYURVEDIC NOTICE ===== */
.ayurvedic-notice {
    margin-bottom: 40px;
}

.doctor-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 20px;
    border-left: 5px solid #4caf50;
    box-shadow: var(--shadow-md);
}

.doctor-badge i {
    font-size: 3rem;
    color: #4caf50;
    animation: doctorPulse 2s infinite;
}

@keyframes doctorPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.doctor-badge h3 {
    font-size: 1.5rem;
    color: #2e7d32;
    margin-bottom: 5px;
}

.doctor-badge p {
    color: #388e3c;
    font-size: 1rem;
}

/* ===== BOOKING CTA ===== */
.booking-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-gradient));
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    animation: rotate 20s infinite linear;
}

.cta-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 250px;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--rose-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .page-title {
        font-size: 3.5rem;
    }
    
    .category-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .page-header {
        padding: 130px 0 60px;
    }
    
    .page-title {
        font-size: 3rem;
    }
    
    .category-nav {
        top: 80px;
        padding: 15px 0 25px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-item {
        padding: 20px;
        flex-wrap: wrap;
    }
    
    .service-item-price {
        min-width: 120px;
    }
    
    .price {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .category-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-item::before {
        width: 100%;
        height: 5px;
    }
    
    .service-item-price {
        text-align: center;
        min-width: auto;
    }
    
    .service-book-btn {
        width: 45px;
        height: 45px;
    }
    
    .doctor-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .category-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .category-tab {
        width: 100%;
        text-align: center;
    }
    
    .category-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .service-item-details h3 {
        font-size: 1.1rem;
    }
    
    .service-item-details p {
        font-size: 0.85rem;
    }
    
    .featured-badge {
        display: inline-block;
        margin: 5px 0 0;
    }
    
    .doctor-badge h3 {
        font-size: 1.2rem;
    }
    
    .doctor-badge p {
        font-size: 0.9rem;
    }
}

/* ===== ADDITIONAL ENHANCEMENTS ===== */

/* Service count badge */
.service-count {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rose-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Price note */
.price-note {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

/* Category separator */
.category-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
    margin: 40px 0;
}

/* Back to top button for services page */
.services-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--rose-gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    box-shadow: var(--shadow-rose);
}

.services-back-top.show {
    opacity: 1;
    visibility: visible;
}

.services-back-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-rose-lg);
}

/* Print styles for price list */
@media print {
    .header,
    .footer,
    .contact-sidebar,
    .announcement-bar,
    .category-nav,
    .booking-cta {
        display: none !important;
    }
    
    .service-item {
        break-inside: avoid;
        page-break-inside: avoid;
        border: 1px solid #ddd;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .service-category-section:nth-child(even) {
        background: #1a1a1a;
    }
    
    .service-item {
        background: #2a2a2a;
    }
    
    .service-item-details h3 {
        color: #fff;
    }
    
    .service-item-details p {
        color: #ccc;
    }
}

/* ===== CONTACT HERO SECTION ===== */
.contact-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige), #fff);
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,79,163,0.05) 0%, transparent 50%);
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
}

.hero-floating-elements {
    position: relative;
    height: 100px;
    margin-bottom: 30px;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(106,27,154,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--rose-gold);
    animation: float 6s infinite;
}

.float-icon:nth-child(1) {
    top: 0;
    left: 20%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 20px;
    right: 20%;
    animation-delay: 1s;
}

.float-icon:nth-child(3) {
    bottom: 0;
    left: 30%;
    animation-delay: 2s;
}

.float-icon:nth-child(4) {
    bottom: 20px;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-subtitle {
    display: block;
    color: var(--rose-gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.rose-gold-text {
    color: var(--rose-gold);
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.stat-mini-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--rose-gold);
    line-height: 1;
}

.stat-mini-label {
    color: #999;
    font-size: 0.9rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-text {
    display: block;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--rose-gold), transparent);
    margin: 0 auto;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===== SECTION HEADER CENTER ===== */
.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--rose-gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--black);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.decoration-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.decoration-icon {
    color: var(--rose-gold);
    animation: sparkleRotate 3s infinite;
}

@keyframes sparkleRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

/* ===== 3D FLOATING CARDS ===== */
.floating-cards-section {
    padding: 60px 0 80px;
    background: white;
}

.floating-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.floating-card-3d {
    height: 350px;
    perspective: 1500px;
    cursor: pointer;
    position: relative;
}

.card-3d-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.floating-card-3d:hover .card-3d-inner {
    transform: rotateY(180deg);
}

.card-3d-front, .card-3d-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.card-3d-front {
    background: white;
    border: 1px solid rgba(183,110,121,0.1);
}

.card-3d-back {
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    color: white;
    transform: rotateY(180deg);
}

.card-icon-3d {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,79,163,0.1), rgba(106,27,154,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--rose-gold);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.icon-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(183,110,121,0.3), transparent);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.card-3d-front h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--black);
}

.card-location, .card-phone, .card-email, .card-hours {
    color: #666;
    font-size: 1rem;
}

.card-phone {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--rose-gold) !important;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: cardShine 6s infinite;
}

@keyframes cardShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    25% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.card-3d-back h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.back-phone {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hours-list-back {
    list-style: none;
    margin-bottom: 20px;
}

.hours-list-back li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.hours-list-back .sunday span {
    color: rgba(255,255,255,0.8);
}

.back-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.back-btn {
    padding: 10px 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.back-btn:hover {
    background: white;
    color: var(--rose-gold);
    transform: translateY(-3px);
}

.back-btn.call-btn:hover {
    color: var(--rose-gold);
}

.back-btn.wa-btn:hover {
    color: #25D366;
}

.card-glow {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(183,110,121,0.3), transparent);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-card-3d:hover .card-glow {
    opacity: 1;
}

/* ===== INTERACTIVE MAP SECTION ===== */
.interactive-map-section {
    padding: 80px 0;
    background: var(--beige);
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    padding: 0 5%;
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.map-content {
    padding-right: 30px;
}

.map-subtitle {
    display: block;
    color: var(--rose-gold);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.map-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--black);
    line-height: 1.2;
}

.map-address-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--rose-gold);
}

.address-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    animation: mapPinPulse 2s infinite;
}

@keyframes mapPinPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.address-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--black);
}

.address-details p {
    color: #666;
    margin-bottom: 10px;
}

.address-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.address-features span {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.address-features i {
    color: var(--rose-gold);
}

.quick-actions {
    display: flex;
    gap: 15px;
}

.quick-action-btn {
    flex: 1;
    padding: 12px;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid rgba(183,110,121,0.1);
}

.quick-action-btn:hover {
    background: var(--rose-gold-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose);
}

.quick-action-btn.wa:hover {
    background: #25D366;
}

.quick-action-btn.call:hover {
    background: linear-gradient(135deg, #b76e79, #a45c66);
}

.map-container-premium {
    position: relative;
}

.map-frame-3d {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 450px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.map-frame-3d:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.map-frame-3d iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-pin-animated {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 10;
    pointer-events: none;
}

.map-pin-animated i {
    font-size: 3rem;
    color: var(--rose-gold);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.3));
    animation: pinBounce 2s infinite;
}

@keyframes pinBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(183,110,121,0.5), transparent);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

@keyframes pinPulse {
    0% {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
    50% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
    100% {
        width: 50px;
        height: 50px;
        opacity: 0.5;
    }
}

/* ===== LUXURY CONTACT FORM ===== */
.luxury-contact-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.form-luxury-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(183,110,121,0.1);
    overflow: hidden;
}

.form-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,79,163,0.05), rgba(106,27,154,0.05));
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: shapeFloat 10s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 15s infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 50px;
    animation: shapeFloat 12s infinite;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.form-luxury {
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-luxury {
    position: relative;
    margin-bottom: 20px;
}

.form-group-luxury.full-width {
    grid-column: span 2;
}

.input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: var(--rose-gold);
    z-index: 10;
    transition: var(--transition);
}

.form-group-luxury textarea ~ .input-icon {
    top: 25px;
    transform: none;
}

.form-group-luxury input,
.form-group-luxury select,
.form-group-luxury textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    position: relative;
    z-index: 5;
}

.form-group-luxury textarea {
    padding-top: 20px;
}

.form-group-luxury select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form-group-luxury label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 45px;
    color: #999;
    transition: var(--transition);
    pointer-events: none;
    z-index: 6;
    background: white;
    padding: 0 5px;
}

.form-group-luxury textarea ~ label {
    top: 25px;
    transform: none;
}

.form-group-luxury input:focus,
.form-group-luxury select:focus,
.form-group-luxury textarea:focus {
    outline: none;
    border-color: var(--rose-gold);
}

.form-group-luxury input:focus ~ label,
.form-group-luxury input:not(:placeholder-shown) ~ label,
.form-group-luxury select:focus ~ label,
.form-group-luxury select:not([value=""]):valid ~ label,
.form-group-luxury textarea:focus ~ label,
.form-group-luxury textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    left: 30px;
    font-size: 0.8rem;
    color: var(--rose-gold);
}

.form-group-luxury input:focus ~ .input-icon,
.form-group-luxury select:focus ~ .input-icon,
.form-group-luxury textarea:focus ~ .input-icon {
    color: var(--rose-gold);
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose-gold-gradient);
    transition: width 0.3s ease;
    z-index: 10;
}

.form-group-luxury input:focus ~ .input-focus-effect,
.form-group-luxury select:focus ~ .input-focus-effect,
.form-group-luxury textarea:focus ~ .input-focus-effect {
    width: 100%;
}

.form-group-checkbox {
    margin: 30px 0;
}

.checkbox-label-luxury {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #666;
}

.checkbox-label-luxury input {
    position: absolute;
    opacity: 0;
}

.checkmark-luxury {
    position: relative;
    width: 22px;
    height: 22px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
}

.checkbox-label-luxury input:checked ~ .checkmark-luxury {
    background: var(--rose-gold);
    border-color: var(--rose-gold);
}

.checkmark-luxury:after {
    content: '';
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label-luxury input:checked ~ .checkmark-luxury:after {
    display: block;
}

.checkbox-text {
    font-size: 0.95rem;
}

.terms-link {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-luxury {
    position: relative;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-rose);
}

.btn-text {
    position: relative;
    z-index: 10;
}

.btn-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-icon i {
    position: absolute;
    transition: var(--transition);
}

.btn-icon .btn-icon-hover {
    opacity: 0;
    transform: translateX(-10px);
}

.btn-luxury:hover .btn-icon i:first-child {
    opacity: 0;
    transform: translateX(10px);
}

.btn-luxury:hover .btn-icon .btn-icon-hover {
    opacity: 1;
    transform: translateX(0);
}

.btn-shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover .btn-shine-effect {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-rose-lg);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
}

.form-footer p {
    color: #999;
    font-size: 0.9rem;
}

.form-footer i {
    color: var(--rose-gold);
    margin-right: 5px;
}

/* ===== SOCIAL SHOWCASE ===== */
.social-showcase {
    padding: 80px 0;
    background: var(--beige);
}

.social-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.social-showcase-card {
    position: relative;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.social-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.social-card-bg.insta-bg {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-card-bg.fb-bg {
    background: linear-gradient(45deg, #3b5998, #2d4373);
}

.social-card-bg.tiktok-bg {
    background: linear-gradient(45deg, #000000, #333333);
}

.social-card-bg.youtube-bg {
    background: linear-gradient(45deg, #ff0000, #cc0000);
}

.social-showcase-card:hover .social-card-bg {
    transform: scale(1.1);
}

.social-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: white;
    z-index: 10;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.social-showcase-card:hover .social-card-content {
    transform: translateY(-10px);
}

.social-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.social-showcase-card:hover .social-card-icon {
    transform: rotate(360deg);
    background: white;
    color: var(--rose-gold);
}

.social-card-icon.fb:hover {
    color: #3b5998;
}

.social-card-icon.tiktok:hover {
    color: #000000;
}

.social-card-icon.youtube:hover {
    color: #ff0000;
}

.social-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.social-handle {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.social-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.follow-btn {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.social-showcase-card:hover .follow-btn {
    background: white;
    color: var(--rose-gold);
}

.social-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 5;
}

/* ===== FAQ ACCORDION SECTION ===== */
.faq-accordion-section {
    padding: 80px 0;
    background: white;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.faq-intro {
    color: #666;
    margin-top: 20px;
}

.faq-intro a {
    color: var(--rose-gold);
    text-decoration: none;
    font-weight: 600;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(183,110,121,0.1);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--rose-gold);
    box-shadow: var(--shadow-rose);
}

.accordion-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin: 0;
}

.accordion-header i {
    color: var(--rose-gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 25px 20px;
}

.accordion-body p {
    color: #666;
    line-height: 1.8;
}

/* ===== HOURS TIMELINE SECTION ===== */
.hours-timeline-section {
    padding: 60px 0;
    background: var(--beige);
}

.hours-timeline {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.timeline-header i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--rose-gold), var(--pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.timeline-header h3 {
    font-size: 1.8rem;
    color: var(--black);
}

.timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr 150px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(183,110,121,0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item.sunday .day,
.timeline-item.sunday .time {
    color: var(--rose-gold);
}

.day {
    font-weight: 600;
    color: var(--black);
}

.time {
    color: #666;
}

.status {
    text-align: right;
    font-weight: 500;
}

.status.open {
    color: #4caf50;
}

.status.closed {
    color: var(--rose-gold);
}

/* ===== CTA BANNER ===== */
.contact-cta-banner {
    padding: 60px 0 80px;
    background: white;
}

.cta-banner-content {
    background: linear-gradient(135deg, var(--brand-gradient));
    border-radius: 40px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    animation: rotate 20s infinite linear;
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 10;
}

.cta-banner-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 10;
}

.cta-banner-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-cta-primary {
    background: white;
    color: var(--rose-gold);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-cta-primary:hover,
.btn-cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    background: var(--rose-gold);
    color: white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--rose-gold);
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 15px 25px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    border-left: 4px solid;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #4caf50;
}

.notification-success i {
    color: #4caf50;
}

.notification-error {
    border-left-color: #f44336;
}

.notification-error i {
    color: #f44336;
}

.notification i {
    font-size: 1.5rem;
}

.notification span {
    color: var(--black);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .floating-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-content {
        padding-right: 0;
    }
    
    .form-row-2col {
        grid-template-columns: 1fr;
    }
    
    .form-group-luxury.full-width {
        grid-column: span 1;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .timeline-item {
        grid-template-columns: 100px 1fr 120px;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .floating-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .social-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .map-title {
        font-size: 2rem;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .form-luxury-wrapper {
        padding: 30px 20px;
    }
    
    .cta-banner-content {
        padding: 40px 20px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 5px;
        text-align: center;
    }
    
    .status {
        text-align: center;
    }
    
    .timeline-header {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .back-actions {
        flex-direction: column;
    }
    
    .address-features {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-luxury-wrapper {
        padding: 20px 15px;
    }
    
    .checkbox-text {
        font-size: 0.85rem;
    }
}

/* ===== BOOTSTRAP OVERRIDES & MOBILE RESPONSIVE FIXES ===== */

/* Container padding for mobile */
@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== HERO SECTION MOBILE FIXES ===== */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
        padding: 120px 0 60px;
    }
    
    .hero-floating-elements {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .hero-stats-mini {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    
    .stat-mini {
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .stat-mini-number {
        font-size: 1.5rem;
    }
    
    .stat-mini-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-mini {
        width: 100%;
    }
}

/* ===== 3D CARDS MOBILE FIXES ===== */
@media (max-width: 768px) {
    .floating-card-3d {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .card-3d-front h3 {
        font-size: 1.3rem;
    }
    
    .card-phone {
        font-size: 1.1rem;
    }
    
    .back-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .back-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== MAP SECTION MOBILE FIXES ===== */
@media (max-width: 992px) {
    .map-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .map-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .map-title {
        font-size: 1.8rem;
    }
    
    .map-address-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .address-icon {
        margin: 0 auto 15px;
    }
    
    .address-features {
        justify-content: center;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-action-btn {
        width: 100%;
    }
    
    .map-frame-3d {
        height: 300px;
        transform: none;
    }
}

@media (max-width: 480px) {
    .map-frame-3d {
        height: 250px;
    }
    
    .address-features {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== FORM MOBILE FIXES ===== */
@media (max-width: 768px) {
    .form-luxury-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-group-luxury {
        margin-bottom: 15px;
    }
    
    .form-group-luxury input,
    .form-group-luxury select,
    .form-group-luxury textarea {
        padding: 12px 12px 12px 40px;
        font-size: 16px; /* Prevents zoom on mobile */
    }
    
    .input-icon {
        left: 12px;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-luxury-wrapper {
        padding: 20px 15px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .checkbox-label-luxury {
        align-items: flex-start;
    }
    
    .checkmark-luxury {
        flex-shrink: 0;
        margin-top: 3px;
    }
}

/* ===== SOCIAL CARDS MOBILE FIXES ===== */
@media (max-width: 768px) {
    .social-showcase-card {
        height: 300px;
    }
    
    .social-card-content {
        padding: 20px;
    }
    
    .social-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-card-content h3 {
        font-size: 1.3rem;
    }
    
    .social-stats {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .social-stats {
        flex-direction: column;
        gap: 5px;
    }
}

/* ===== FAQ MOBILE FIXES ===== */
@media (max-width: 992px) {
    .faq-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-header h3 {
        font-size: 1rem;
        line-height: 1.4;
        padding-right: 10px;
    }
    
    .accordion-body {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-body {
        padding: 0 20px 15px;
    }
    
    .accordion-body p {
        font-size: 0.9rem;
    }
}

/* ===== HOURS TIMELINE MOBILE FIXES ===== */
@media (max-width: 768px) {
    .hours-timeline {
        padding: 30px 20px;
    }
    
    .timeline-header {
        margin-bottom: 20px;
    }
    
    .timeline-header i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-header h3 {
        font-size: 1.5rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 5px;
        padding: 12px 0;
    }
    
    .day {
        font-size: 1rem;
    }
    
    .time {
        font-size: 0.95rem;
    }
    
    .status {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hours-timeline {
        padding: 20px 15px;
    }
    
    .timeline-header h3 {
        font-size: 1.3rem;
    }
}

/* ===== CTA BANNER MOBILE FIXES ===== */
@media (max-width: 768px) {
    .cta-banner-content {
        padding: 40px 20px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-banner-content p {
        font-size: 1rem;
    }
    
    .cta-banner-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-banner-content {
        padding: 30px 15px;
    }
    
    .cta-banner-content h2 {
        font-size: 1.5rem;
    }
}

/* ===== NOTIFICATION MOBILE FIXES ===== */
@media (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        transform: translateY(100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
.touch-device .floating-card-3d {
    cursor: pointer;
}

.touch-device .card-3d-inner {
    transition: transform 0.5s ease;
}

.touch-device .floating-card-3d:active .card-3d-inner {
    transform: rotateY(180deg);
}

.touch-device .back-btn {
    padding: 12px 15px; /* Larger touch target */
}

.touch-device .quick-action-btn,
.touch-device .social-showcase-card,
.touch-device .accordion-header {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* ===== BOOTSTRAS GRID FIXES ===== */
.row.g-4 {
    --bs-gutter-y: 1.5rem;
}

@media (max-width: 576px) {
    .row.g-4 {
        --bs-gutter-y: 1rem;
    }
}

/* ===== FORM CONTROL BOOTSTRAP OVERRIDE ===== */
.form-control:focus {
    box-shadow: none;
    border-color: var(--rose-gold);
}

.form-control.is-invalid,
.form-control.is-valid {
    background-image: none;
    padding-right: 15px;
}

/* ===== SELECT BOOTSTRAP FIX ===== */
select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b76e79' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

/* ===== SAFE AREA INSETS FOR NOTCHED DEVICES ===== */
@supports (padding: max(0px)) {
    .contact-hero {
        padding-top: max(120px, env(safe-area-inset-top));
    }
    
    .notification {
        bottom: max(20px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
        left: max(20px, env(safe-area-inset-left));
    }
}

/* ===== LANDSCAPE ORIENTATION FIXES ===== */
@media (max-width: 992px) and (orientation: landscape) {
    .contact-hero {
        min-height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero-stats-mini {
        flex-direction: row;
    }
    
    .floating-card-3d {
        height: 280px;
    }
    
    .map-frame-3d {
        height: 350px;
    }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .contact-hero,
    .floating-cards-section,
    .interactive-map-section,
    .social-showcase,
    .faq-accordion-section,
    .contact-cta-banner,
    .hero-scroll-indicator,
    .contact-sidebar,
    .announcement-bar {
        display: none !important;
    }
    
    .luxury-contact-section {
        page-break-inside: avoid;
    }
}