/* Modern Design Inspired by The NOW Massage */
/* Clean, minimalist aesthetic with brand colors */
/* Luxury Premium Design with Animations */

:root {
    --brand-gold: #b37c31;
    --brand-gold-light: #f9ecac;
    --brand-gold-gradient: linear-gradient(135deg, #b37c31 0%, #d4a574 50%, #f9ecac 100%);
    --brand-black: #000000;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --luxury-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --luxury-shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.25);
    --luxury-glow: 0 0 30px rgba(179, 124, 49, 0.3);
}

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

body {
    font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Luxury Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Modern Navbar - Sticky & Mobile-Friendly */
.modern-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 1rem 0;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    width: 100% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.6s ease-out;
}

.modern-navbar.scrolled {
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    padding: 0.75rem 0;
}

.modern-navbar .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.modern-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.modern-navbar .navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

.modern-navbar .navbar-brand img {
    max-height: 60px;
    width: auto;
    height: auto;
}

@media (max-width: 991px) {
    .modern-navbar .navbar-brand img {
        max-height: 50px;
    }
}

.modern-navbar .navbar-collapse {
    flex-grow: 0;
}

.modern-navbar .navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.modern-navbar .nav-link {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .modern-navbar .navbar-nav {
        text-align: center;
        padding: 1rem 0;
        gap: 0;
    }
    
    .modern-navbar .nav-item {
        width: 100%;
        margin: 0.25rem 0;
    }
    
    .modern-navbar .nav-link {
        padding: 0.75rem 1rem !important;
        width: 100%;
    }
    
    .modern-navbar .dropdown-menu {
        width: 100%;
        text-align: center;
        border: none;
        box-shadow: none;
        background: #ffffff;
    }
}

.modern-navbar .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #e5e5e5 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border-radius: 4px !important;
    padding: 0.5rem 0 !important;
}

.modern-navbar .dropdown-item {
    color: var(--text-dark) !important;
    padding: 0.75rem 1.5rem !important;
    transition: background-color 0.2s ease;
}

.modern-navbar .dropdown-item:hover {
    background-color: #f8f8f8 !important;
    color: var(--brand-gold) !important;
}
    
    .modern-navbar .btn-book {
        width: 100%;
        margin: 0.5rem 0;
        text-align: center;
    }
}

.modern-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--brand-gold-gradient);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.modern-navbar .nav-link:hover {
    color: var(--brand-gold) !important;
    transform: translateY(-2px);
}

.modern-navbar .nav-link:hover::after {
    width: 60%;
}

.modern-navbar .btn-book {
    background: var(--brand-gold-gradient);
    color: var(--brand-black);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(179, 124, 49, 0.3);
    position: relative;
    overflow: hidden;
}

.modern-navbar .btn-book::before {
    content: '';
    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;
}

.modern-navbar .btn-book:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(179, 124, 49, 0.4), var(--luxury-glow);
}

.modern-navbar .btn-book:hover::before {
    left: 100%;
}

/* Hero Section */
.modern-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background: #000;
    animation: fadeIn 1s ease-out;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background: transparent;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: fadeIn 1.5s ease-out;
    filter: brightness(0.9);
    transition: filter 0.5s ease;
}

.hero-video:hover {
    filter: brightness(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.modern-hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 200;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
}

.modern-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--brand-gold-gradient);
    animation: slideInLeft 1s ease-out 1s both;
}

.modern-hero .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.7s both;
    letter-spacing: 0.5px;
}

.modern-hero .btn-hero {
    background: var(--brand-gold-gradient);
    color: var(--brand-black);
    border: none;
    padding: 1.25rem 4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(179, 124, 49, 0.4), var(--luxury-glow);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both, pulse 2s ease-in-out infinite 2s;
}

.modern-hero .btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.modern-hero .btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(179, 124, 49, 0.5), 0 0 40px rgba(179, 124, 49, 0.4);
}

.modern-hero .btn-hero:hover::before {
    left: 100%;
}

/* Section Headings */
.section-heading {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--brand-gold-gradient);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.section-heading p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
.service-card:nth-child(9) { animation-delay: 0.9s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--luxury-shadow-hover);
    border-color: var(--brand-gold);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
    background: var(--bg-white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card .service-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-gold);
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card .benefits {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.service-card .btn-learn-more {
    background: var(--brand-gold-gradient);
    color: var(--brand-black);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(179, 124, 49, 0.3);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card .btn-learn-more::before {
    content: '';
    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;
}

.service-card .btn-learn-more:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(179, 124, 49, 0.4), var(--luxury-glow);
    color: var(--brand-black);
}

.service-card .btn-learn-more:hover::before {
    left: 100%;
}

/* Enhancements Section */
.enhancements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.enhancement-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.enhancement-card:nth-child(1) { animation-delay: 0.1s; }
.enhancement-card:nth-child(2) { animation-delay: 0.2s; }
.enhancement-card:nth-child(3) { animation-delay: 0.3s; }
.enhancement-card:nth-child(4) { animation-delay: 0.4s; }
.enhancement-card:nth-child(5) { animation-delay: 0.5s; }
.enhancement-card:nth-child(6) { animation-delay: 0.6s; }

.enhancement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brand-gold-gradient);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.enhancement-card:hover {
    background: #f0f0f0;
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--luxury-shadow);
    border: 1px solid var(--brand-gold);
}

.enhancement-card:hover::before {
    opacity: 0.05;
}

.enhancement-card h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.enhancement-card:hover h4 {
    color: var(--brand-gold);
}

.enhancement-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Gift Card Section */
.gift-card-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.gift-card-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(179, 124, 49, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.gift-card-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 200;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.gift-card-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Modern Footer */
.modern-footer {
    background: var(--brand-black);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brand-gold-gradient);
    opacity: 0.3;
}

.modern-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.modern-footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-footer ul {
    list-style: none;
}

.modern-footer ul li {
    margin-bottom: 0.5rem;
}

.modern-footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    display: inline-block;
}

.modern-footer ul li a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: width 0.3s ease;
}

.modern-footer ul li a:hover {
    color: var(--brand-gold-light);
    transform: translateX(5px);
}

.modern-footer ul li a:hover::before {
    width: 6px;
}

.modern-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.modern-footer .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.modern-footer .social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.modern-footer .social-links a:hover {
    color: var(--brand-gold-light);
    transform: translateY(-5px) scale(1.1);
    background: rgba(179, 124, 49, 0.1);
    box-shadow: 0 4px 15px rgba(179, 124, 49, 0.3);
}

/* Container */
.modern-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 991px) {
    .modern-hero {
        min-height: 70vh;
        padding: 3rem 1rem;
    }
    
    .modern-hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .modern-hero .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .modern-hero .btn-hero {
        padding: 0.875rem 2rem;
        font-size: 14px;
    }
    
    .services-grid,
    .enhancements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0 3rem;
    }
    
    .service-card img {
        height: 200px;
    }
    
    .modern-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-heading {
        padding-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .gift-card-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 576px) {
    .modern-container {
        padding: 0 1rem;
    }
    
    .modern-hero {
        min-height: 60vh;
        padding: 2rem 1rem;
    }
    
    .modern-hero h1 {
        font-size: 1.75rem;
    }
    
    .btn-modern,
    .btn-modern-outline,
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
    
    .service-card-content {
        padding: 1.5rem;
    }
    
    .enhancement-card {
        padding: 1.5rem;
    }
}

/* Touch-friendly for mobile */
@media (hover: none) and (pointer: coarse) {
    .nav-link,
    .btn-modern,
    .btn-modern-outline,
    .btn-hero,
    .btn-book {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card,
    .enhancement-card {
        cursor: pointer;
    }
}

/* Clean Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -0.01em;
}

/* Button Styles */
.btn-modern {
    background: var(--brand-gold-gradient);
    color: var(--brand-black);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(179, 124, 49, 0.3);
}

.btn-modern::before {
    content: '';
    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;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(179, 124, 49, 0.4), var(--luxury-glow);
    color: var(--brand-black);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern-outline {
    background: transparent;
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-modern-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--brand-gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-modern-outline:hover {
    background: var(--brand-gold);
    color: var(--brand-black);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(179, 124, 49, 0.4), var(--luxury-glow);
    border-color: var(--brand-gold);
}

.btn-modern-outline:hover::before {
    width: 100%;
}

/* Spacing Utilities */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-hero-call {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn-hero-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-hero-call:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-hero-call:hover::before {
    left: 100%;
}

/* Navbar Call Button */
.btn-call-nav {
    background: transparent;
    color: var(--text-dark) !important;
    border: 2px solid var(--brand-gold);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-call-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--brand-gold-gradient);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-call-nav:hover {
    color: var(--brand-black) !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(179, 124, 49, 0.3);
    border-color: var(--brand-gold);
}

.btn-call-nav:hover::before {
    width: 100%;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    display: none;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.floating-call {
    background: var(--brand-gold-gradient);
    color: var(--brand-black);
}

.floating-book {
    background: var(--brand-black);
    color: white;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-label {
    position: absolute;
    right: 70px;
    background: var(--brand-black);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-btn:hover .floating-label {
    opacity: 1;
}

/* Show floating buttons on mobile */
@media (max-width: 991px) {
    .floating-actions {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-call {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .btn-call-nav {
        padding: 0.5rem 0.75rem;
        font-size: 12px;
    }
    
    .btn-call-nav svg {
        width: 14px;
        height: 14px;
        margin-right: 3px;
    }
    
    .btn-call-nav span {
        display: none;
    }
}

