@charset "utf-8";
/**
 * Prana Spa Enhanced Responsive CSS
 * Elegant spa-inspired design with candlelight color palette
 */

:root {
    /* Elegant Spa Color Palette */
    --primary-color: #8B7355;           /* Warm taupe */
    --secondary-color: #D4A574;         /* Golden candlelight */
    --accent-color: #B8956A;            /* Soft bronze */
    --dark-color: #2D2520;              /* Deep chocolate brown */
    --gold-color: #E6C794;              /* Soft gold */
    --cream-color: #F5F2ED;             /* Warm cream */
    --sage-color: #A4A68A;              /* Soft sage green */
    --text-light: #6B5B47;              /* Warm brown */
    --text-dark: #3A2F26;               /* Rich brown */
    --border-radius: 12px;
    --box-shadow: 0 8px 25px rgba(45, 37, 32, 0.12);
    --box-shadow-hover: 0 15px 35px rgba(45, 37, 32, 0.18);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Responsive Variables */
    --container-max-width: 1400px;
    --section-padding: clamp(40px, 8vw, 100px);
    --card-padding: clamp(20px, 4vw, 40px);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    background-color: var(--cream-color);
}

/* Container Improvements */
.container {
    max-width: var(--container-max-width);
    padding-left: clamp(15px, 3vw, 40px);
    padding-right: clamp(15px, 3vw, 40px);
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

h1 {
    font-family: 'Prata', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.3;
}

h3 {
    font-family: 'Albert Sans', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 1.4;
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

.lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
}

/* Header Responsive Improvements */
.main-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(45, 37, 32, 0.95) 100%);
    padding: clamp(8px, 1.5vw, 16px) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(45, 37, 32, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.main-header.scrolled {
    background: linear-gradient(135deg, rgba(45, 37, 32, 0.98) 0%, rgba(45, 37, 32, 0.95) 100%);
    padding: clamp(4px, 1vw, 12px) 0;
}

.logo img {
    max-height: clamp(45px, 8vw, 70px);
    width: auto;
    transition: var(--transition);
}

.navbar-nav {
    gap: clamp(10px, 2vw, 30px);
}

.navbar-nav .nav-link {
    font-family: 'Acme', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    color: #FFFFFF !important;
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 20px);
    transition: var(--transition);
    position: relative;
    border-radius: 8px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
    transition: var(--transition);
    border-radius: 1px;
}

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

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-color) !important;
    background: rgba(230, 199, 148, 0.1);
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: var(--border-radius);
    background: rgba(230, 199, 148, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(230, 199, 148, 0.3);
}

/* Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    color: var(--dark-color);
    border: none;
    padding: clamp(8px, 1.5vw, 12px) clamp(16px, 3vw, 24px);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1.5vw, 14px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--gold-color), var(--secondary-color));
}

.btn-service {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 28px);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    transition: var(--transition);
    font-weight: 500;
    font-size: clamp(12px, 1.5vw, 14px);
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.4);
    color: white;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-fresha {
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    color: var(--dark-color);
    border: none;
    padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 28px);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 5px;
    transition: var(--transition);
    font-weight: 500;
    font-size: clamp(12px, 1.5vw, 14px);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-fresha:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    color: var(--dark-color);
    background: linear-gradient(135deg, var(--gold-color), var(--secondary-color));
}

.btn-book {
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    color: var(--dark-color);
    border: 2px solid transparent;
    padding: clamp(12px, 2.5vw, 18px) clamp(24px, 4vw, 36px);
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(14px, 2vw, 16px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.btn-book:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* Hero Section Responsive */
.hero-section {
    background: linear-gradient(
        135deg, 
        rgba(45, 37, 32, 0.3) 0%, 
        rgba(139, 115, 85, 0.2) 50%,
        rgba(0,0,0,0) 70%
    ), 
    url('images/spa-menu-background.png') center/cover;
    min-height: clamp(60vh, 80vh, 100vh);
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 0 0 0 clamp(50px, 12vw, 200px);
    overflow: hidden;
    padding: clamp(20px, 5vw, 80px) clamp(20px, 8vw, 120px) 0 0;
}

.hero-content {
    background: linear-gradient(
        120deg, 
        rgba(245, 242, 237, 0.95) 0%, 
        rgba(245, 242, 237, 0.85) 60%,
        rgba(245, 242, 237, 0.75) 100%
    );
    padding: clamp(40px, 8vw, 80px) clamp(30px, 6vw, 60px);
    border-radius: 0 clamp(30px, 8vw, 120px) 0 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(45, 37, 32, 0.15);
    animation: slideInLeft 1s ease-out;
    max-width: 90%;
}

.hero-content h6 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(2px, 1vw, 6px);
    line-height: 1.6;
    color: var(--primary-color);
    margin-bottom: clamp(10px, 2vw, 20px);
    font-size: clamp(0.7rem, 1.5vw, 1rem);
}

.hero-content h1 {
    margin-bottom: clamp(20px, 4vw, 40px);
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .lead {
    margin-bottom: clamp(30px, 6vw, 50px);
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-buttons {
    margin-top: clamp(30px, 6vw, 50px);
    animation: fadeInUp 1s ease-out 0.7s both;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 20px);
}

/* Section Improvements */
section {
    padding: var(--section-padding) 0;
}

.section-title {
    font-family: 'Albert Sans', sans-serif;
    color: var(--text-dark);
    margin-bottom: clamp(30px, 6vw, 60px);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(40px, 8vw, 80px);
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
    border-radius: 2px;
}

/* Service Cards Responsive */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: var(--card-padding);
    margin-bottom: clamp(20px, 4vw, 40px);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(139, 115, 85, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}

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

.service-card h3,
.service-card h4 {
    font-family: 'Albert Sans', sans-serif;
    color: var(--text-dark);
    margin-bottom: clamp(10px, 2vw, 20px);
    font-weight: 600;
}

.service-card .price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-top: clamp(10px, 2vw, 20px);
}

.service-image {
    width: 100%;
    height: clamp(200px, 30vw, 300px);
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: clamp(15px, 3vw, 25px);
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.02);
}

.promotion-card {
    background: linear-gradient(135deg, var(--cream-color) 0%, rgba(230, 199, 148, 0.1) 100%);
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.promotion-card::after {
    content: 'SPECIAL';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    color: var(--dark-color);
    padding: clamp(4px, 1vw, 8px) clamp(8px, 2vw, 16px);
    border-radius: 20px;
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.premium-package {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(230, 199, 148, 0.05) 100%);
    border: 2px solid rgba(139, 115, 85, 0.2);
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, var(--cream-color) 0%, rgba(245, 242, 237, 0.8) 100%);
    padding: var(--section-padding) 0;
}

.award-item {
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 40px);
    padding: clamp(15px, 3vw, 30px);
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.award-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.1);
}

.award-item i {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--secondary-color);
    margin-bottom: clamp(10px, 2vw, 20px);
    transition: var(--transition);
}

.award-item:hover i {
    transform: scale(1.1);
    color: var(--primary-color);
}

.award-item h4 {
    font-family: 'Albert Sans', sans-serif;
    color: var(--text-dark);
    margin-bottom: clamp(8px, 1.5vw, 15px);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    color: white;
    padding: var(--section-padding) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.08)"/></svg>') repeat;
    animation: float 30s linear infinite;
}

.cta-section h2 {
    font-family: 'Prata', serif;
    margin-bottom: clamp(15px, 3vw, 30px);
}

.cta-section h3 {
    font-family: 'Albert Sans', sans-serif;
    margin-bottom: clamp(20px, 4vw, 40px);
    opacity: 0.95;
}

/* Footer Responsive */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(45, 37, 32, 0.98) 100%);
    color: white;
    padding: clamp(40px, 8vw, 80px) 0 clamp(20px, 4vw, 40px);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--gold-color));
}

.footer h5 {
    color: var(--gold-color);
    margin-bottom: clamp(15px, 3vw, 30px);
    font-family: 'Albert Sans', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.footer .contact-info {
    list-style: none;
    padding: 0;
}

.footer .contact-info li {
    margin-bottom: clamp(8px, 1.5vw, 15px);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.footer .contact-info li:hover {
    color: var(--gold-color);
}

.footer .contact-info i {
    color: var(--gold-color);
    margin-right: clamp(10px, 2vw, 15px);
    width: clamp(16px, 3vw, 24px);
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer .contact-info a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer .contact-info a:hover {
    color: var(--gold-color);
}

.social-links a {
    transition: var(--transition);
    display: inline-block;
    margin-right: clamp(10px, 2vw, 20px);
}

.social-links a:hover {
    color: var(--gold-color) !important;
    transform: translateY(-3px);
}

/* WhatsApp Float Button Responsive */
.whatsapp-float {
    position: fixed;
    width: clamp(50px, 8vw, 65px);
    height: clamp(50px, 8vw, 65px);
    bottom: clamp(15px, 3vw, 25px);
    right: clamp(15px, 3vw, 25px);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: clamp(20px, 4vw, 28px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 3s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Business Hours Notice */
.py-3 {
    padding: clamp(15px, 3vw, 25px) 0;
}

/* Responsive Grid Improvements */
@media (min-width: 1400px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;

    }
    
    .col-md-4 {
        flex: 0 0 auto;
        width: 33.333333%;
    }
    
    .col-md-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

/* Tablet Optimizations */
@media (max-width: 1199px) and (min-width: 769px) {
    .hero-section {
        padding-right: 5vw;
        border-radius: 0 0 0 8vw;
    }
    
    .hero-content {
        padding: clamp(50px, 7vw, 70px) clamp(40px, 6vw, 60px);
        border-radius: 0 6vw 0 0;
    }
    
    .service-image {
        height: 25vw;
    }
    
    .navbar-nav .nav-link {
        font-size: 16px;
        padding: 10px 15px;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(30px, 8vw, 60px);
        --card-padding: clamp(20px, 5vw, 30px);
    }
    
    .hero-content {
        padding: clamp(30px, 8vw, 50px) clamp(20px, 5vw, 40px);
        border-radius: 0 clamp(20px, 6vw, 40px) 0 0;
        max-width: 95%;
    }
    
    .hero-section {
        min-height: 70vh;
        border-radius: 0 0 0 clamp(30px, 8vw, 60px);
        padding: clamp(20px, 5vw, 40px) clamp(20px, 5vw, 40px) 0 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
        margin: 5px 0;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, var(--dark-color), rgba(45, 37, 32, 0.98));
        margin-top: 15px;
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: 0 8px 25px rgba(45, 37, 32, 0.3);
    }
    
    .navbar-nav .nav-link {
        font-size: 16px;
        margin: 8px 0;
        text-align: center;
        padding: 12px 20px;
        border-radius: var(--border-radius);
    }
    
    .service-image {
        height: 250px;
    }
    
    .btn-service,
    .btn-fresha {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        margin: 5px 0;
    }
    
    .award-item {
        margin-bottom: 30px;
    }
    
    .footer .contact-info li {
        margin-bottom: 12px;
    }
    
    .social-links {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .cta-section .col-lg-4 {
        text-align: center !important;
        margin-top: 20px;
    }
    
    .cta-section .btn {
        display: block;
        margin: 10px auto;
        width: 100%;
        max-width: 280px;
    }
}

/* Small Mobile Optimizations */
@media (max-width: 576px) {
    .navbar-nav .nav-link {
        font-size: 15px;
        margin: 6px 0;
        padding: 10px 16px;
    }
    
    .hero-content h6 {
        letter-spacing: 2px;
        font-size: 0.75rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .btn-service,
    .btn-fresha {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .promotion-card::after {
        top: 10px;
        right: 10px;
        padding: 4px 10px;
        font-size: 0.6rem;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding: 20px 15px 0 0;
    }
    
    .hero-content {
        padding: 25px 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .btn-book {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 0 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 20px 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-image,
    .logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --cream-color: #1a1612;
        --text-light: #b8a896;
        --text-dark: #e6ddd1;
    }
    
    .service-card {
        background: rgba(245, 242, 237, 0.05);
        border-color: rgba(139, 115, 85, 0.2);
    }
    
    .hero-content {
        background: linear-gradient(
            120deg, 
            rgba(26, 22, 18, 0.95) 0%, 
            rgba(26, 22, 18, 0.85) 60%,
            rgba(26, 22, 18, 0.75) 100%
        );
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-float {
        animation: none;
    }
    
    .hero-content {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .service-card {
        border: 2px solid var(--text-dark);
    }
    
    .hero-content {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .btn-service,
    .btn-fresha,
    .btn-whatsapp {
        border: 2px solid currentColor;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 3px solid var(--gold-color);
    outline-offset: 2px;
}

.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(230, 199, 148, 0.5);
}

/* Loading States */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animations */
.service-card.loading {
    animation-delay: var(--animation-delay, 0s);
}

.award-item.loading {
    animation-delay: var(--animation-delay, 0s);
}

/* Enhanced Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(230, 199, 148, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.service-card:hover::after {
    left: 100%;
}

/* Price Display Enhancements */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-options .price {
    background: linear-gradient(135deg, var(--cream-color), rgba(230, 199, 148, 0.1));
    padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    margin: 0;
}

/* Enhanced Grid System */
.row {
    --bs-gutter-x: clamp(15px, 3vw, 30px);
    --bs-gutter-y: clamp(15px, 3vw, 30px);
}

/* Notification System Styles */
.booking-notification {
    position: fixed;
    top: clamp(15px, 3vw, 25px);
    right: clamp(15px, 3vw, 25px);
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    color: var(--dark-color);
    padding: clamp(12px, 2.5vw, 20px) clamp(16px, 3vw, 28px);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: var(--transition);
    font-weight: 500;
    font-size: clamp(13px, 1.5vw, 15px);
}

.booking-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: clamp(8px, 2vw, 15px);
}

.notification-content i {
    font-size: clamp(16px, 2.5vw, 20px);
}

/* Favorite Button Styles */
.favorite-btn {
    position: absolute;
    top: clamp(10px, 2vw, 18px);
    right: clamp(10px, 2vw, 18px);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: clamp(35px, 6vw, 45px);
    height: clamp(35px, 6vw, 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(45, 37, 32, 0.15);
    z-index: 10;
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(45, 37, 32, 0.2);
}

.favorite-btn i {
    color: var(--secondary-color);
    font-size: clamp(14px, 2.5vw, 18px);
}

/* Form Validation Styles */
.field-error {
    color: #dc3545;
    font-size: clamp(12px, 1.5vw, 14px);
    margin-top: 5px;
    display: none;
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

.is-valid {
    border-color: var(--sage-color) !important;
    box-shadow: 0 0 0 3px rgba(164, 166, 138, 0.2) !important;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--dark-color);
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 4px;
    transition: top 0.3s ease;
    font-size: 14px;
}

.skip-link:focus {
    top: 6px;
    color: white;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Enhanced Button States */
.btn-service:active,
.btn-fresha:active,
.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Improved Spacing System */
.mb-4 {
    margin-bottom: clamp(20px, 4vw, 30px) !important;
}

.mt-3 {
    margin-top: clamp(15px, 3vw, 25px) !important;
}

.py-5 {
    padding-top: clamp(40px, 8vw, 80px) !important;
    padding-bottom: clamp(40px, 8vw, 80px) !important;
}

/* Print Styles */
@media print {
    .main-header,
    .whatsapp-float,
    .hero-buttons,
    .btn-service,
    .btn-fresha,
    .btn-whatsapp,
    .favorite-btn,
    .booking-notification {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        min-height: auto !important;
        padding: 20px !important;
    }
    
    .service-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        break-inside: avoid;
        margin-bottom: 20px !important;
    }
    
    .section-title {
        color: black !important;
    }
    
    .hero-content {
        background: white !important;
        color: black !important;
        padding: 20px !important;
    }
    
    body {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    h1 { font-size: 24pt !important; }
    h2 { font-size: 20pt !important; }
    h3 { font-size: 16pt !important; }
    h4 { font-size: 14pt !important; }
}

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

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

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), 
                    0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }
}

@keyframes float {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100px);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--secondary-color), var(--gold-color));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold-color), var(--secondary-color));
}

/* Selection Styling */
::selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--text-dark);
}

::-moz-selection {
    background: rgba(212, 165, 116, 0.3);
    color: var(--text-dark);
}

/* Keyboard Navigation Enhancement */
.keyboard-navigation *:focus {
    outline: 3px solid var(--gold-color) !important;
    outline-offset: 2px !important;
}

/* Performance Optimization */
.service-image,
.hero-section {
    will-change: transform;
}

.service-card:hover {
    will-change: transform, box-shadow;
}

/* Mobile Safari Specific Fixes */
@supports (-webkit-touch-callout: none) {
    .hero-section {
        min-height: -webkit-fill-available;
    }
    
    .whatsapp-float {
        bottom: env(safe-area-inset-bottom, 20px);
        right: env(safe-area-inset-right, 20px);
    }
}

/* Container Query Support (Future-proofing) */
@supports (container-type: inline-size) {
    .service-card {
        container-type: inline-size;
    }
    
    @container (max-width: 300px) {
        .service-card .btn-service,
        .service-card .btn-fresha {
            width: 100%;
            margin: 5px 0;
        }
    }
}