/* Beautiful You Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@300;400;600&display=swap');

/* CSS Variables */
:root {
    /* Brand palette – Modern Pastel */
    --rose:         #C0848A;   /* dusty rose: softer, more muted */
    --rose-light:   #EDD8DC;   /* pale blush */
    --rose-muted:   rgba(192, 132, 138, 0.10);
    --lavender:     #D8DCF2;   /* periwinkle-lavender: cooler, fresher */
    --lavender-deep:#8A8EC4;   /* deeper periwinkle */
    --cream:        #FAF8F3;   /* warm cream */
    --soft-pink:    #EDD8DC;   /* kept for backward compat – same as rose-light */
    --mint-green:   #C8E8D4;   /* sage-mint: softer, more natural */
    --baby-blue:    #D0E6F5;   /* dusty sky blue */
    --light-peach:  #F5DFC8;   /* warm soft peach */
    --sage:         #8FAD9C;   /* sage green accent */
    --sage-pale:    #EAF4EE;   /* very pale sage for backgrounds */

    /* Text */
    --white:        #FFFFFF;
    --text-dark:    #363040;   /* deep mauve-slate */
    --text-heading: #2A2438;   /* richer, cooler heading tone */
    --text-light:   #7A6F85;   /* muted mauve-grey */

    /* Shadows */
    --shadow-sm:    0 2px 12px rgba(40, 30, 50, 0.06);
    --shadow-md:    0 6px 28px rgba(40, 30, 50, 0.09);
    --shadow-lg:    0 16px 48px rgba(40, 30, 50, 0.12);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-heading);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #FAF8F3, #EAF4EE, #EEEEF8);
    box-shadow: 0 2px 10px rgba(40, 30, 50, 0.08);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 120px;
    width: auto;
    margin-right: 60px;
}

/* Burger Menu Styles (Hidden on Desktop) */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.burger-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

/* Burger menu animation when active */
.burger-menu.active {
    background: rgba(255, 255, 255, 0.3);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--text-dark);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 12px;
    position: relative;
    margin-left: auto;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-align: center;
    min-width: 85px;
    height: 45px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    z-index: 10;
}

/* Floating animation for buttons - REMOVED */
/* Static buttons with no bounce effect */

/* Static buttons with no bounce effect */

/* Glowing edge effect */
.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Shimmer effect */
.nav-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    border-radius: 30px;
}

/* Hover effects — refined lift */
.nav-menu li a:hover {
    background: linear-gradient(135deg, var(--rose-light), var(--lavender));
    color: var(--text-heading);
    transform: translateY(-4px) scale(1.03);
    box-shadow:
        0 8px 20px rgba(40, 30, 50, 0.10),
        0 0 14px rgba(192, 132, 138, 0.20);
    border-color: var(--rose-light);
    z-index: 20;
}

.nav-menu li a:hover::before {
    opacity: 1;
}

.nav-menu li a:hover::after {
    left: 100%;
}

/* Active state with pulsing glow */
.nav-menu li a:active {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
}

/* Current page active state */
.nav-menu li a.active {
    background: linear-gradient(135deg, var(--lavender), var(--rose-light));
    color: var(--text-dark);
    box-shadow: 
        0 8px 25px rgba(40, 30, 50, 0.12),
        0 0 20px rgba(216, 220, 242, 0.50);
    border-color: var(--lavender);
}

/* Enhanced Navigation Button Effects */
.nav-menu li a:focus {
    outline: none;
    box-shadow: 
        0 0 0 4px rgba(138, 142, 196, 0.35), 
        0 8px 25px rgba(40, 30, 50, 0.15),
        0 0 30px rgba(138, 142, 196, 0.35);
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, var(--baby-blue), var(--lavender));
    animation: none;
}

/* Magnetic effect on hover */
.nav-menu li {
    position: relative;
}

.nav-menu li:hover {
    z-index: 30;
}

/* Special fly-over effects for different button types - REMOVED */
/* All buttons now use the same standard styling as home button */

/* Prevent collision between floating buttons */
.nav-menu li a:hover {
    z-index: 50;
}

/* Subtle glow for active nav item */
@keyframes activeGlow {
    0%, 100% { box-shadow: 0 4px 14px rgba(192, 132, 138, 0.18); }
    50%       { box-shadow: 0 6px 22px rgba(192, 132, 138, 0.30); }
}

.nav-menu li a.active {
    animation: activeGlow 3s ease-in-out infinite;
    background: linear-gradient(135deg, var(--lavender), var(--rose-light));
    border-color: var(--lavender);
    box-shadow: 0 4px 14px rgba(192, 132, 138, 0.18);
}

/* Button ripple effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.nav-button {
    position: relative;
    overflow: hidden;
}

.nav-button:active::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Main Content */
.main-content {
    margin-top: 90px;
    min-height: calc(100vh - 90px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(192, 132, 138, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 55% 70% at 85% 20%, rgba(143, 173, 156, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 50% 95%, rgba(216, 220, 242, 0.14) 0%, transparent 60%),
        linear-gradient(160deg, #FAF8F3 0%, #EAF4EE 50%, #EEEEF8 100%);
    text-align: center;
    padding: 90px 20px 80px;
    margin-bottom: 60px;
    overflow: hidden;
}

/* Decorative bloom top-right */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 132, 138, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

/* Decorative bloom bottom-left */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(143, 173, 156, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(192, 132, 138, 0.10);
    border: 1px solid rgba(192, 132, 138, 0.28);
    color: #8A5C64;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero h1 {
    color: var(--text-heading);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px auto 22px;
    max-width: 220px;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(192,132,138,0.5));
}

.hero-divider::after {
    background: linear-gradient(to left, transparent, rgba(192,132,138,0.5));
}

.hero-divider-icon {
    color: var(--rose);
    font-size: 14px;
    line-height: 1;
}

.hero p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background-color: var(--white);
    padding: 32px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-top-color 0.3s ease;
    border: 1px solid rgba(192, 132, 138, 0.10);
    border-top: 3px solid var(--rose);
}

.service-card:nth-child(odd),
.service-card:nth-child(even) {
    background: var(--white);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--rose-light);
}

.service-card h3 {
    color: var(--text-heading);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 15px;
}

/* Service card footer row (price + duration) */
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(192, 132, 138, 0.12);
    font-size: 14px;
    color: var(--text-light);
}

.service-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: -0.01em;
}

.service-duration {
    font-size: 13px;
    color: var(--text-light);
}

.service-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
    flex-wrap: wrap;
}

/* Service Details - Coming Soon */
.service-details-comingsoon {
    position: relative;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    opacity: 1;
}

.service-details-comingsoon::before {
    content: none;
    display: none;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

.service-details-comingsoon .btn {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Forms */
.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--lavender);
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--soft-pink);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: linear-gradient(135deg, var(--rose), #9A6470);
    color: var(--white);
    padding: 13px 28px;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(154, 100, 112, 0.28);
}

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

.btn-outline {
    background: transparent;
    color: var(--rose);
    border: 2px solid var(--rose);
    padding: 11px 26px;
}

.btn-outline:hover {
    background: var(--rose-muted);
    box-shadow: 0 6px 18px rgba(154, 100, 112, 0.15);
}

/* Service title link */
.service-title-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.service-title-link:hover {
    color: var(--rose);
}

/* Service details section */
.service-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(192, 132, 138, 0.12);
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--sage-pale), var(--baby-blue));
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: linear-gradient(160deg, #252038 0%, #322844 100%);
    color: rgba(255,255,255,0.7);
    padding: 60px 20px 0;
    margin-top: 70px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.footer-brand .footer-tagline {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
}

.footer-brand .footer-address,
.footer-brand .footer-phone {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-brand .footer-phone a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-brand .footer-phone a:hover {
    color: var(--rose-light);
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.40);
    margin-bottom: 16px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    line-height: 1;
}

.footer-col-links a:hover {
    color: var(--rose-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-social a {
    color: rgba(255,255,255,0.40);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-social a:hover {
    color: var(--rose-light);
}

/* Legacy .footer-links fallback */
.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--rose-light);
}

.footer-separator {
    color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Success/Error Messages */
.message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.message.success {
    background-color: var(--mint-green);
    color: var(--text-dark);
    border: 2px solid #A8D8B8;
}

.message.error {
    background-color: #F5DEDE;
    color: var(--text-dark);
    border: 2px solid #DEB8C0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
    }
    
    /* Show burger menu on mobile */
    .burger-menu {
        display: flex !important;
        z-index: 1001;
    }
    
    /* Completely hide nav menu by default on mobile - Override desktop styles */
    .nav-menu {
        display: none !important; /* Hide completely until activated */
        position: fixed !important;
        top: 0;
        right: -100% !important;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #FAF8F3, #EAF4EE, #EEEEF8);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 20px;
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
        margin-left: 0 !important;
    }
    
    /* Show nav menu when active - Override the display: none */
    .nav-menu.active {
        display: flex !important;
        right: 0 !important;
    }
    
    /* Mobile menu items styling */
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    
    .nav-menu li a {
        display: block;
        width: 80%;
        margin: 0 auto;
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
        border: 2px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        /* Remove float animation on mobile for performance */
        animation: none;
        position: relative;
        overflow: hidden;
    }
    
    /* Add ripple effect for touch feedback */
    .nav-menu li a::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s;
    }
    
    .nav-menu li a:active::after {
        width: 300px;
        height: 300px;
    }
    
    .nav-menu li a:hover, .nav-menu li a:active {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Add overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .main-content {
        margin-top: 90px; /* Reduced since nav is now horizontal on mobile */
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 15px;
    }
    
    .logo {
        height: 80px;
    }
    
    .nav-menu {
        width: 280px;
        padding-top: 80px;
    }
    
    .nav-menu li a {
        width: 90%;
        font-size: 15px;
        padding: 12px 18px;
    }
    
    .nav-menu li a {
        width: 100%;
        padding: 14px 22px;
        font-size: 14px;
        text-align: center;
        border-radius: 30px;
        /* Gentler animation on very small screens */
        animation: float 8s ease-in-out infinite;
    }
    
    .nav-menu li a:hover {
        /* Simplified hover for small touch screens */
        transform: translateY(-4px) scale(1.02);
        box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.15),
            0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .main-content {
        margin-top: 90px;
    }

    h1 {
        font-size: 24px;
    }

    .hero {
        padding: 60px 15px 50px;
    }
}

/* ============================================================================ */
/* ANIMATIONS AND INTERACTIVE ENHANCEMENTS */
/* ============================================================================ */

/* Page Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Page Transition Effects */
.page-transition {
    animation: fadeInUp 0.6s ease-out;
}

.hero {
    animation: fadeInUp 0.8s ease-out;
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.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; }

/* Form Animations */
.form-container {
    animation: fadeInUp 0.7s ease-out;
}

.form-group {
    animation: fadeInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.btn::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:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

/* Loading States */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--soft-pink);
    border-radius: 50%;
    border-top-color: var(--lavender);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================================ */
/* CALENDAR PICKER STYLES */
/* ============================================================================ */

.calendar-picker {
    background: white;
    border: 2px solid var(--soft-pink);
    border-radius: 10px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.4s ease-out;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--soft-pink);
}

.calendar-header button {
    background: var(--sage-pale);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-header button:hover {
    background: var(--rose-light);
    transform: scale(1.1);
}

#current-month-year {
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 15px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    padding: 10px 5px;
    font-size: 14px;
}

.calendar-day {
    text-align: center;
    padding: 10px 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day.empty {
    cursor: default;
}

.calendar-day.past-day {
    color: #ccc;
    cursor: not-allowed;
}

.calendar-day.available-day:hover {
    background: var(--mint-green);
    transform: scale(1.1);
}

.calendar-day.selected-day {
    background: var(--lavender);
    color: var(--text-dark);
    font-weight: 600;
    transform: scale(1.05);
}

.calendar-day.today {
    background: var(--rose-light);
    font-weight: 600;
}

.calendar-day.busy-day {
    background: var(--light-peach);
    color: var(--text-dark);
}

.calendar-day.closed-day {
    background: #F2F0F5;
    color: #8A8498;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--rose-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-light);
}

.legend-item span:first-child {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-item .available-day {
    background: var(--mint-green);
}

.legend-item .busy-day {
    background: var(--light-peach);
}

.legend-item .closed-day {
    background: #F2F0F5;
}

.calendar-toggle-btn {
    background: var(--baby-blue);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.calendar-toggle-btn:hover {
    background: var(--sage-pale);
    transform: translateY(-1px);
}

/* ============================================================================ */
/* BLOG AND TESTIMONIAL STYLES */
/* ============================================================================ */

.featured-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.featured-post-card {
    background: linear-gradient(135deg, var(--rose-light), var(--lavender));
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-date, .post-author {
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
}

.featured-badge {
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content h3 a:hover {
    color: var(--lavender);
}

.post-excerpt {
    line-height: 1.6;
    margin: 15px 0;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.post-views {
    font-size: 14px;
    color: var(--text-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.blog-post-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.blog-post-card:nth-child(odd) {
    animation-delay: 0.1s;
}

.blog-post-card:nth-child(even) {
    animation-delay: 0.2s;
}

.blog-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.post-tags {
    margin: 15px 0;
}

.tag {
    background: var(--mint-green);
    color: var(--text-dark);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-right: 8px;
    display: inline-block;
    margin-bottom: 5px;
}

.read-more-link {
    color: var(--lavender);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--soft-pink);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.testimonials-grid.featured {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--sage-pale), var(--baby-blue));
    padding: 30px;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.customer-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
}

.location {
    font-size: 14px;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 2px;
}

.star {
    color: #ddd;
    font-size: 18px;
    transition: color 0.3s ease;
}

.star.filled {
    color: #E8A84A;
}

.service-tag {
    background: var(--lavender);
    color: var(--text-dark);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-top: 10px;
}

.testimonial-date {
    font-size: 12px;
    color: var(--text-light);
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(135deg, var(--lavender), var(--sage-pale));
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    animation: fadeInUp 0.7s ease-out;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 15px;
    align-items: stretch;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-btn {
    white-space: nowrap;
    padding: 12px 25px;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: unset;
    }
    
    .calendar-picker {
        padding: 15px;
    }
    
    .calendar-grid {
        gap: 3px;
    }
    
    .calendar-day {
        min-height: 30px;
        font-size: 14px;
    }
    
    .featured-posts {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid.featured {
        grid-template-columns: 1fr;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
}

/* ============================================================================ */
/* ACCESSIBILITY: REDUCED MOTION                                                 */
/* ============================================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
}