/* ==========================================================================
   Namie Nails & Lashes - Stylesheet
   Design Style: Cute, Sweet, Soft Pastel Pink & White, Rounded, Welcoming
   ========================================================================== */

/* --- Custom Variables & Theme Design System --- */
:root {
    /* Color Palette */
    --color-white: #ffffff;
    --color-bg-light: #fffdfd;
    --color-pink-softest: #fff5f6;
    --color-pink-light: #ffe8eb;
    --color-pink-pastel: #ffd1dc;
    --color-pink-dusty: #ffb7c5;
    --color-pink-accent: #f79aa6;
    --color-text-dark: #4a3538;     /* Chestnut brown for soft contrast instead of black */
    --color-text-muted: #826b6e;
    
    /* Fonts */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    /* Layout Constants */
    --border-radius-sm: 12px;
    --border-radius-md: 20px;
    --border-radius-lg: 32px;
    --border-radius-full: 100px;
    
    --shadow-soft: 0 10px 30px rgba(255, 209, 220, 0.35);
    --shadow-hover: 0 15px 35px rgba(255, 183, 197, 0.5);
    --shadow-nav: 0 4px 20px rgba(255, 209, 220, 0.15);
    --shadow-glow: 0 0 20px rgba(247, 154, 166, 0.3), 0 0 60px rgba(255, 183, 197, 0.15);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fade: all 0.3s ease;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-pink-pastel), var(--color-pink-dusty));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--color-pink-dusty), var(--color-pink-accent));
}

/* Selection Style */
::selection {
    background-color: var(--color-pink-pastel);
    color: var(--color-text-dark);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fade);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Reusable Components (Buttons & Cards) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-pink-dusty) 0%, var(--color-pink-accent) 100%);
    color: var(--color-white);
    box-shadow: 0 8px 20px rgba(255, 183, 197, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s ease;
}

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

.btn-primary:hover {
    background-color: var(--color-pink-accent);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-pink-dusty);
    border: 2px solid var(--color-pink-dusty);
}

.btn-outline:hover {
    background-color: var(--color-pink-light);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--color-pink-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.highlight {
    color: var(--color-pink-dusty);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 209, 220, 0.5);
    z-index: -1;
    border-radius: var(--border-radius-full);
}

/* --- Reveal Scroll Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Section Styling --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pink-dusty), var(--color-pink-accent));
    border-radius: var(--border-radius-full);
    margin: 12px auto 0;
    animation: shimmerBar 2s ease-in-out infinite;
}

@keyframes shimmerBar {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 90px; opacity: 0.7; }
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* --- Header / Navigation Menu --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-pink-dusty) 0%, var(--color-pink-accent) 100%);
    border-bottom: 4px solid var(--color-pink-light); /* 3D bottom border */
    box-shadow: 0 8px 25px rgba(255, 183, 197, 0.45); /* glow shadow */
    transition: var(--transition-fade);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    background-color: var(--color-white);
    padding: 4px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 2px 2px 0px rgba(74, 53, 56, 0.15);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-pink-accent);
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(255, 183, 197, 0.25);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: var(--transition-fade);
}

.nav-btn {
    background-color: var(--color-white) !important;
    color: var(--color-pink-accent) !important;
    box-shadow: 0 4px 12px rgba(255, 183, 197, 0.3) !important;
}

.nav-btn:hover {
    background-color: var(--color-pink-softest) !important;
    color: var(--color-pink-accent) !important;
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 6px 15px rgba(255, 183, 197, 0.4) !important;
}

/* --- Hero Section --- */
.hero {
    background: linear-gradient(180deg, var(--color-pink-softest) 0%, var(--color-white) 100%);
    padding-top: 150px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}

.hero-subtitle {
    display: inline-block;
    background-color: var(--color-pink-light);
    color: var(--color-pink-accent);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, var(--color-pink-light) 0%, var(--color-pink-pastel) 100%);
    border-radius: 64% 36% 54% 46% / 49% 60% 40% 51%;
    z-index: 1;
    animation: blobMorph 10s ease-in-out infinite alternate;
}

.hero-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 8px solid var(--color-white);
    max-width: 85%;
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Floating Sparkle Animations */
.floating-sparkle {
    position: absolute;
    color: var(--color-pink-pastel);
    font-size: 1.8rem;
    opacity: 0.7;
    z-index: 3;
    pointer-events: none;
}

.sparkle-1 {
    top: 20%;
    left: 5%;
    animation: floatingEffect 4s ease-in-out infinite;
}

.sparkle-2 {
    bottom: 15%;
    right: 8%;
    animation: floatingEffect 5s ease-in-out infinite 1s;
}

.sparkle-3 {
    top: 45%;
    right: 48%;
    animation: floatingEffect 3.5s ease-in-out infinite 0.5s;
}

/* --- Services Section --- */
.services {
    background-color: var(--color-white);
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    border: 2px solid var(--color-pink-light);
    background-color: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--color-pink-dusty);
    color: var(--color-white);
    border-color: var(--color-pink-dusty);
    box-shadow: 0 6px 15px rgba(255, 183, 197, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-pink-softest);
    border: 2px solid var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 209, 220, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-pink-pastel);
    background-color: var(--color-white);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-pink-pastel), var(--color-pink-accent), var(--color-pink-pastel));
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-category-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-pink-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.service-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px dashed var(--color-pink-pastel);
    padding-top: 18px;
}

.service-price-wrapper .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-pink-accent);
}

.service-book-btn {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-pink-dusty);
    border: 1.5px solid var(--color-pink-dusty);
    padding: 6px 18px;
    border-radius: var(--border-radius-full);
    transition: var(--transition-fade);
    background: transparent;
    cursor: pointer;
    outline: none;
}

.service-book-btn:hover {
    background-color: var(--color-pink-dusty);
    color: var(--color-white);
}

/* --- Gallery Section --- */
.gallery {
    background-color: var(--color-pink-softest);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    border: none;
    background-color: var(--color-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--color-pink-dusty);
    color: var(--color-white);
    box-shadow: 0 6px 15px rgba(255, 183, 197, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--color-pink-light); /* neon border track */
    box-shadow: 0 8px 20px rgba(255, 209, 220, 0.15);
    transition: var(--transition-smooth);
    display: flex;
    padding: 3px; /* 3px neon border width */
}

/* Pseudo-element for rotating neon light gradient */
.gallery-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--color-pink-accent) 25%,
        var(--color-pink-pastel) 50%,
        transparent 75%
    );
    animation: rotateNeon 3s linear infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 15px 35px rgba(247, 154, 166, 0.45); /* pink neon glow shadow */
}

.gallery-image-box {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: calc(var(--border-radius-md) - 3px);
    background-color: var(--color-pink-softest);
    border: none; /* override previous border */
    box-shadow: 0 4px 10px rgba(255, 209, 220, 0.05);
    transition: var(--transition-smooth);
}

.gallery-image-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-pink-light); /* double border effect */
    border-radius: calc(var(--border-radius-md) - 3px);
    pointer-events: none;
    z-index: 5;
}

@keyframes rotateNeon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.gallery-img,
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.gallery-image-box:hover .gallery-img,
.gallery-image-box:hover .gallery-video {
    transform: scale(1.08);
}

/* Video specific styles */
.video-box {
    cursor: pointer;
}

.video-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px) saturate(180%);
    border: 1.5px solid rgba(255, 183, 197, 0.4);
    color: var(--color-text-dark);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    z-index: 8;
    box-shadow: 0 4px 15px rgba(255, 183, 197, 0.25);
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    animation: floatingEffect 3.5s ease-in-out infinite;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 53, 56, 0.85); /* transparent soft dark brown overlay */
    color: var(--color-white);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: var(--transition-fade);
}

.gallery-image-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.gallery-info .stylist {
    font-style: italic;
}

/* --- Contact & Booking Section --- */
.contact {
    background-color: var(--color-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--color-pink-softest);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px solid var(--color-pink-light);
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    font-size: 1.6rem;
    background-color: var(--color-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(255, 209, 220, 0.2);
}

.info-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.info-text p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--border-radius-full);
    color: var(--color-white);
    display: inline-block;
    transition: var(--transition-smooth);
}

.social-icon.fb {
    background-color: #4267B2;
}

.social-icon.ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

/* Booking Form */
.booking-form-wrapper {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-pink-light);
}

.booking-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.booking-form-wrapper p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--color-pink-light);
    background-color: var(--color-pink-softest);
    color: var(--color-text-dark);
    outline: none;
    transition: var(--transition-fade);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-pink-dusty);
    background-color: var(--color-white);
    box-shadow: 0 0 10px rgba(255, 183, 197, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 10px;
}

.form-disclaimer a {
    color: var(--color-pink-dusty);
    font-weight: 600;
    text-decoration: underline;
}

/* --- Footer --- */
.footer {
    background: linear-gradient(135deg, var(--color-pink-dusty) 0%, var(--color-pink-accent) 100%);
    color: var(--color-white);
    padding: 80px 0 20px 0;
    border-top: 4px solid var(--color-pink-light); /* 3D top border */
    box-shadow: 0 -8px 25px rgba(255, 183, 197, 0.45); /* glow shadow pointing upwards */
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin: 15px 0 10px 0;
    color: var(--color-white);
    text-shadow: 2px 2px 0px rgba(74, 53, 56, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-logo {
    height: 60px;
    background-color: var(--color-white);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--color-white);
    text-shadow: 1px 1px 0px rgba(74, 53, 56, 0.1);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* --- Success Modal --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    background-color: rgba(74, 53, 56, 0.6); /* soft dark overlay */
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--color-white);
    width: 90%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 5px solid var(--color-pink-light);
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-muted);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.modal-details {
    background-color: var(--color-pink-softest);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: left;
    border: 1px solid var(--color-pink-light);
}

.modal-details p {
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.modal-details p:last-child {
    margin-bottom: 0;
}

/* --- Keyframe Animations --- */
@keyframes blobMorph {
    0% {
        border-radius: 64% 36% 54% 46% / 49% 60% 40% 51%;
    }
    50% {
        border-radius: 46% 54% 36% 64% / 60% 49% 51% 40%;
    }
    100% {
        border-radius: 64% 36% 54% 46% / 49% 60% 40% 51%;
    }
}

@keyframes floatingEffect {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(8deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    
    .hero {
        padding-top: 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px auto;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-white);
        border-top: 1px solid var(--color-pink-light);
        transition: var(--transition-fade);
        z-index: 999;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding-top: 50px;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.3rem;
    }

    .nav-btn {
        display: inline-flex;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel,
    .booking-form-wrapper {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   8. Booking History & Notification Styling
   ========================================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.history-container {
    position: relative;
}

.history-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 0.9rem;
    border: 2px solid var(--color-pink-light);
    background-color: var(--color-white);
    color: var(--color-pink-accent);
}

.history-toggle:hover {
    background-color: var(--color-pink-softest);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.history-count {
    background-color: var(--color-pink-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 10px;
    line-height: 1;
}

.history-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 320px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    border: 2.5px solid var(--color-pink-light);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    display: none;
    z-index: 1005;
    max-height: 380px;
    overflow-y: auto;
    animation: slideDownFade 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15) forwards;
}

.history-dropdown.active {
    display: block;
}

.history-dropdown h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    border-bottom: 2px dashed var(--color-pink-light);
    padding-bottom: 8px;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.history-item {
    background-color: var(--color-pink-softest);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    border: 1px solid var(--color-pink-light);
    transition: var(--transition-fade);
}

.history-item:hover {
    border-color: var(--color-pink-pastel);
    box-shadow: 0 4px 10px rgba(255, 209, 220, 0.2);
}

.history-item p {
    margin-bottom: 4px;
}

.history-item p:last-child {
    margin-bottom: 0;
}

.no-bookings {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-align: center;
    font-style: italic;
    padding: 15px 0;
}

/* ==========================================================================
   9. Beauty Advisor Floating Widget
   ========================================================================== */
.advisor-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1010;
}

.advisor-bubble {
    background: linear-gradient(135deg, var(--color-pink-pastel) 0%, var(--color-pink-dusty) 100%);
    color: var(--color-text-dark);
    border: none;
    outline: none;
    padding: 12px 24px;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(255, 183, 197, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1012;
}

.advisor-bubble:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 183, 197, 0.6);
}

.advisor-bubble .advisor-icon {
    font-size: 1.2rem;
    animation: wiggling 2.5s ease-in-out infinite;
}

.advisor-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-full);
    box-shadow: 0 0 0 0 rgba(255, 183, 197, 0.7);
    animation: pulseAnimation 2.2s infinite;
    pointer-events: none;
}

.advisor-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 3.5px solid var(--color-pink-light);
    box-shadow: 0 15px 45px rgba(74, 53, 56, 0.18);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    transform-origin: bottom right;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.4s ease;
    z-index: 1011;
}

.advisor-window.active {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.advisor-header {
    background-color: var(--color-pink-light);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--color-pink-pastel);
}

.advisor-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.advisor-avatar {
    font-size: 1.3rem;
    background-color: var(--color-white);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(255, 183, 197, 0.2);
}

.advisor-header h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.advisor-header p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.advisor-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-fade);
    line-height: 1;
}

.advisor-close:hover {
    color: var(--color-pink-accent);
}

.advisor-body {
    padding: 20px;
    max-height: 380px;
    overflow-y: auto;
    background-color: var(--color-pink-softest);
    scroll-behavior: smooth;
}

.advisor-step {
    display: none;
    flex-direction: column;
    gap: 16px;
    animation: slideUpFade 0.4s ease forwards;
}

.advisor-step.active {
    display: flex;
}

.advisor-message {
    background-color: var(--color-white);
    padding: 14px 16px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) var(--border-radius-sm);
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 4px 12px rgba(255, 209, 220, 0.12);
    border: 1px solid var(--color-white);
    position: relative;
}

.advisor-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advisor-option-btn {
    background-color: var(--color-white);
    border: 2px solid var(--color-pink-light);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-align: left;
    color: var(--color-text-dark);
}

.advisor-option-btn:hover {
    border-color: var(--color-pink-dusty);
    background-color: var(--color-pink-light);
    transform: translateX(4px);
}

.advisor-result-card {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 2px dashed var(--color-pink-dusty);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 15px rgba(255, 209, 220, 0.1);
}

.result-badge {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    background-color: var(--color-pink-light);
    color: var(--color-pink-accent);
    padding: 4px 12px;
    align-self: flex-start;
    border-radius: var(--border-radius-full);
    font-weight: bold;
}

#advisor-result-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-pink-accent);
}

#advisor-result-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.gift-box {
    background-color: var(--color-pink-softest);
    border-radius: var(--border-radius-sm);
    padding: 12px 14px;
    border: 1px solid var(--color-pink-light);
    font-size: 0.8rem;
}

.gift-title {
    font-weight: bold;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.gift-code {
    font-size: 1rem;
    color: var(--color-pink-accent);
    margin-bottom: 2px;
}

.gift-desc {
    color: var(--color-text-muted);
}

.advisor-result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

/* ==========================================================================
   10. Toast Notification System
   ========================================================================== */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    background-color: var(--color-white);
    border-left: 5px solid var(--color-pink-dusty);
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 25px rgba(74, 53, 56, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.25), opacity 0.4s ease;
    transform: translateX(120%);
    opacity: 0;
    min-width: 290px;
    max-width: 380px;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #25D366;
}

.toast.info {
    border-left-color: var(--color-pink-dusty);
}

.toast-icon {
    font-size: 1.3rem;
}

.toast-message {
    font-size: 0.85rem;
    color: var(--color-text-dark);
    line-height: 1.4;
    font-family: var(--font-body);
}

/* ==========================================================================
   11. New Animation Definitions
   ========================================================================== */
@keyframes pulseAnimation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 197, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 183, 197, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 197, 0);
    }
}

@keyframes slideDownFade {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpFade {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes wiggling {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* Additional Responsive Tweaks */
@media (max-width: 768px) {
    .header-actions {
        margin-left: auto;
        margin-right: 12px;
        gap: 8px;
    }
    
    .history-toggle {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .history-dropdown {
        right: -80px;
        width: 300px;
    }
    
    .advisor-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .advisor-window {
        width: calc(100vw - 40px);
        bottom: 70px;
        right: 0;
    }
}

/* ==========================================================================
   12. Google Reviews Section Styles
   ========================================================================== */
.reviews {
    background-color: var(--color-white);
}

.reviews-summary {
    background-color: var(--color-pink-softest);
    border: 3px solid var(--color-pink-light);
    border-radius: var(--border-radius-lg);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    box-shadow: var(--shadow-soft);
    gap: 30px;
    transition: var(--transition-smooth);
}

.reviews-summary:hover {
    transform: translateY(-4px);
    border-color: var(--color-pink-pastel);
    box-shadow: 0 15px 35px rgba(247, 154, 166, 0.25); /* neon glow shadow */
}

.summary-score-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-pink-accent);
    line-height: 1;
}

.summary-stars-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-stars-wrapper .stars {
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.summary-count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.summary-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.google-logo-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--border-radius-full);
    border: 1.5px solid var(--color-pink-light);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.summary-actions {
    display: flex;
    gap: 12px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.review-card {
    background-color: var(--color-white);
    border: 2px solid var(--color-pink-light);
    border-radius: var(--border-radius-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 6px 18px rgba(255, 209, 220, 0.1);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-pink-pastel);
    background-image: linear-gradient(135deg, rgba(255, 245, 246, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* Differing soft pastel colors for avatars */
.avatar-1 { background-color: #f79aa6; }
.avatar-2 { background-color: #ffb7c5; }
.avatar-3 { background-color: #ffd1dc; }
.avatar-4 { background-color: #fca5a5; }
.avatar-5 { background-color: #cbd5e1; }
.avatar-6 { background-color: #fca5a5; }

.review-user h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.2;
}

.user-badge {
    font-size: 0.72rem;
    color: var(--color-pink-accent);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.google-icon-card {
    background-color: var(--color-pink-light);
    color: var(--color-pink-accent);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
}

.review-stars {
    font-size: 1rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--color-text-dark);
    line-height: 1.5;
    font-style: italic;
    flex-grow: 1;
}

.review-date {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Responsive tweaks for Reviews */
@media (max-width: 992px) {
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
    
    .summary-brand {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .summary-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .summary-actions {
        width: 100%;
    }
    
    .summary-actions .btn {
        flex: 1;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. Back to Top Button
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-pink-dusty) 0%, var(--color-pink-accent) 100%);
    color: var(--color-white);
    border: 3px solid var(--color-pink-light);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 183, 197, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1005;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   14. Enhanced Info Item Icons
   ========================================================================== */
.info-icon {
    font-size: 1.6rem;
    background-color: var(--color-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(255, 209, 220, 0.2);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(255, 183, 197, 0.35);
    background-color: var(--color-pink-light);
}

/* ==========================================================================
   15. Staggered Entrance for Grid Items
   ========================================================================== */
.service-card.reveal-item,
.review-card.reveal-item,
.gallery-item.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card.reveal-item.visible,
.review-card.reveal-item.visible,
.gallery-item.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   16. Hero Subtitle Pulse
   ========================================================================== */
.hero-subtitle {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 183, 197, 0); }
    50% { box-shadow: 0 0 0 8px rgba(255, 183, 197, 0.15); }
}

/* ==========================================================================
   17. Service Book Button Enhanced
   ========================================================================== */
.service-book-btn {
    position: relative;
    overflow: hidden;
}

.service-book-btn::after {
    content: '→';
    display: inline-block;
    margin-left: 4px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.service-book-btn:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   18. Gallery Overlay Enhanced
   ========================================================================== */
.gallery-overlay {
    background: linear-gradient(180deg, rgba(74, 53, 56, 0.2) 0%, rgba(74, 53, 56, 0.85) 100%);
}

/* ==========================================================================
   19. Footer Link Hover Arrow
   ========================================================================== */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -10px;
}

.footer-links a:hover {
    padding-left: 5px;
}

/* ==========================================================================
   20. Video Lightbox Modal & Play Overlay Styles
   ========================================================================== */

/* Custom Play Icon and Overlay for video box cards */
.video-box {
    position: relative;
}

.video-box::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border: 2px solid var(--color-pink-pastel);
    color: var(--color-pink-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 7;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(247, 154, 166, 0.45);
    padding-left: 4px; /* visually center play icon */
}

.video-box:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Make overlay gradient softer for video items so the video is visible playing behind it */
.video-box:hover .gallery-overlay {
    background: linear-gradient(180deg, rgba(74, 53, 56, 0.15) 0%, rgba(74, 53, 56, 0.8) 100%) !important;
}

.video-box .gallery-overlay {
    pointer-events: none; /* Let clicks pass through to the video box */
}

.video-box .gallery-overlay button {
    pointer-events: auto; /* Re-enable pointer events on the overlay button */
}

/* Video Lightbox Modal Backdrop */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1200;
    background-color: rgba(4a, 35, 38, 0.8); /* dark warm chestnut background */
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Video Lightbox Container */
.video-modal-content {
    background-color: var(--color-white);
    width: 90%;
    max-width: 460px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(74, 53, 56, 0.4);
    border: 4px solid var(--color-pink-light);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

/* Video Modal Close Button */
.video-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 2px solid var(--color-pink-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-dark);
    z-index: 15;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.video-modal-close:hover {
    background-color: var(--color-pink-accent);
    color: var(--color-white);
    transform: rotate(90deg);
    border-color: var(--color-pink-accent);
}

/* Video Container body */
.video-modal-body {
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 9 / 16;
    max-height: 55vh;
}

.video-modal-body video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Video Modal Footer info */
.video-modal-footer {
    padding: 20px 24px 24px 24px;
    text-align: center;
    background-color: var(--color-pink-softest);
    border-top: 2px solid var(--color-pink-light);
}

.video-modal-footer h3 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.video-modal-footer p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
    line-height: 1.45;
}

.video-modal-footer .btn {
    box-shadow: 0 6px 15px rgba(247, 154, 166, 0.35);
}

/* --- Pulse Glow Highlight Animation for Book Now buttons --- */
@keyframes highlightPulse {
    0% {
        box-shadow: 0 8px 20px rgba(255, 183, 197, 0.4);
        transform: translateY(0) scale(1);
    }
    50% {
        box-shadow: 0 10px 25px rgba(247, 154, 166, 0.85), 0 0 15px rgba(247, 154, 166, 0.45);
        transform: translateY(-3px) scale(1.04);
    }
    100% {
        box-shadow: 0 8px 20px rgba(255, 183, 197, 0.4);
        transform: translateY(0) scale(1);
    }
}

.pulse-highlight {
    animation: highlightPulse 2.2s infinite ease-in-out !important;
}

.pulse-highlight:hover {
    animation: none !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(247, 154, 166, 0.7) !important;
}


