/* style.css - VeronicaLove Premium Landing Page */

/* ==========================================
   1. Google Fonts & Reset
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

@view-transition {
    navigation: auto;
}

:root {
    /* Color Palette */
    --bg-deep: #08080a;
    --bg-card: #121216;
    --bg-glass: rgba(18, 18, 22, 0.65);
    --bg-glass-light: rgba(255, 255, 255, 0.03);
    
    --accent-red: #e53e5d;      /* Luxurious ruby red */
    --accent-red-hover: #ff4d6d;
    --accent-pink: #d53f8c;     /* Deep romance pink */
    --accent-gold: #d4af37;     /* Premium gold */
    --accent-gold-hover: #e5be48;
    
    --text-white: #f7fafc;
    --text-muted: #a0aec0;
    --text-dark: #1a202c;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(229, 62, 93, 0.3);
    
    /* Shadows */
    --glow-red: 0 0 20px rgba(229, 62, 93, 0.4);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.6);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================
   Light Theme Color Definitions
   ========================================== */
.light-theme {
    --bg-deep: #f6f7f9;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.75);
    --bg-glass-light: rgba(0, 0, 0, 0.02);
    
    --text-white: #1a202c;       /* Body text charcoal */
    --text-muted: #4a5568;       /* Muted text medium grey */
    --text-dark: #f7fafc;        /* White text */
    
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-glass-active: rgba(229, 62, 93, 0.4);
    
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.04);
}

/* Global transitions for theme switching */
body, html, .pillar-card, .lady-card, .lady-info-box, .testimonial-card, .story-card, .header-nav, .nav-links a, .glass-panel, .premium-divider, .divider-line {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

/* Adjustments for light theme elements */
.light-theme .hero-slider-section .slide {
    background-image: linear-gradient(180deg, rgba(246, 247, 249, 0.9) 0%, rgba(246, 247, 249, 0.5) 100%), url('images/hero_bg.jpg') !important;
}

.light-theme .header-nav {
    background: rgba(246, 247, 249, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.light-theme .header-nav.scrolled {
    background: rgba(246, 247, 249, 0.95);
}

.light-theme .footer-section {
    background: #ffffff !important;
    color: #4a5568 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.light-theme .footer-col-title {
    color: #1a202c !important;
}

.light-theme .footer-links a {
    color: #4a5568 !important;
}

.light-theme .footer-links a:hover {
    color: var(--accent-red) !important;
}

.light-theme .footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: #718096 !important;
}

.light-theme .footer-bottom-links a {
    color: #718096 !important;
}

.light-theme .footer-bottom-links a:hover {
    color: var(--accent-red) !important;
}

.light-theme .gallery-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #ffffff 50%, var(--bg-deep) 100%);
}

.light-theme .lady-status-badge {
    background: rgba(255, 255, 255, 0.85) !important;
    color: #1a202c !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.light-theme .btn-outline-gold {
    color: #b78a1c !important;
    border-color: #b78a1c !important;
}

.light-theme .btn-outline-gold::before {
    background: #b78a1c !important;
}

.light-theme .btn-outline-gold:hover {
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(183, 138, 28, 0.4) !important;
}

.light-theme .btn-login {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #1a202c !important;
}

.light-theme .btn-login:hover {
    background: rgba(229, 62, 93, 0.1) !important;
    color: var(--accent-red) !important;
    border-color: transparent !important;
}

.light-theme .premium-divider .divider-line {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.light-theme .testimonial-card {
    background: rgba(0, 0, 0, 0.01);
}

.light-theme .testimonial-card:hover {
    background: var(--bg-card);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
    outline: none;
    position: relative;
}

.theme-toggle-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

.theme-toggle-btn .sun-icon {
    display: none;
}

.theme-toggle-btn .moon-icon {
    display: block;
}

.light-theme .theme-toggle-btn .sun-icon {
    display: block;
}

.light-theme .theme-toggle-btn .moon-icon {
    display: none;
}

.light-theme .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.02);
}

.light-theme .theme-toggle-btn:hover {
    border-color: var(--accent-red);
    box-shadow: var(--glow-red);
    background: rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
    color: var(--text-white);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-deep);
}

/* Custom Scrollbar */
html {
    scrollbar-color: #25252e var(--bg-deep);
    scrollbar-width: thin;
}

.light-theme {
    scrollbar-color: #cbd5e0 #f6f7f9;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: #25252e;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-wrap: balance; /* Modern balanced wrapping */
}

p {
    text-wrap: pretty; /* Prevent orphans */
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ==========================================
   2. Reusable Premium Components & Layouts
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient-red {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Buttons & Animations */

/* 1. Primary Shimmer Button */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(229, 62, 93, 0.3);
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 2;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-red);
}

.btn-premium:hover::before {
    left: 150%;
}

.btn-premium:active {
    transform: translateY(-1px);
}

/* 2. Secondary Outline Gold Button */
.btn-outline-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent-gold);
    background: transparent;
    border: 2px solid var(--accent-gold);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-outline-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-outline-gold:hover {
    color: var(--bg-deep);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: translateY(-3px);
}

.btn-outline-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-gold:active {
    transform: translateY(-1px);
}

/* 3. Sliding border-draw light login button */
.btn-login {
    position: relative;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-login::before,
.btn-login::after {
    content: '';
    position: absolute;
    width: 10%;
    height: 10%;
    border-style: solid;
    border-color: var(--accent-red);
    transition: var(--transition-smooth);
}

.btn-login::before {
    top: -1px;
    left: -1px;
    border-width: 1px 0 0 1px;
}

.btn-login::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 1px 1px 0;
}

.btn-login:hover {
    background: rgba(229, 62, 93, 0.1);
    color: var(--accent-red);
    border-color: transparent;
}

.btn-login:hover::before,
.btn-login:hover::after {
    width: 101%;
    height: 101%;
}

/* Glassmorphism utility */
.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
}

/* Section headers */
.section-title-block {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

/* ==========================================
   3. Header Navigation
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    z-index: 100;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.header-nav.scrolled {
    height: 110px;
    background: rgba(8, 8, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 142px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-nav.scrolled .logo-img {
    height: 95px;
}

.logo-img-dark {
    display: block;
}

.logo-img-light {
    display: none;
}

/* Light theme shows the dark text logo and hides the light text logo */
.light-theme .logo-img-dark {
    display: none;
}

.light-theme .logo-img-light {
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links li.active a {
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-smooth);
}

/* ==========================================
   4. Hero & Registration Section
   ========================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-deep);
}

/* Floating ambient light */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 62, 93, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
    z-index: 2;
}

/* Image Slideshow */
.slider-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Overlay & Button Box */
.slider-overlay-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 580px;
    padding: 0 24px;
    animation: slideUpFade 1s var(--transition-smooth);
}

.slider-btn-box {
    padding: 50px 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-glass);
}

.slider-tagline {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.slider-title {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 35px;
    color: var(--text-white);
    font-weight: 700;
}

.slider-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.btn-slider-register {
    width: 100%;
    max-width: 320px;
    padding: 16px 32px;
    font-size: 1rem;
    justify-content: center;
}

.already-member-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 4px 0;
}

.btn-slider-signin {
    width: 100%;
    max-width: 320px;
    padding: 14px 30px;
    font-size: 1rem;
    justify-content: center;
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   6. Pillars Section (Excellence)
   ========================================== */
.pillars-section {
    padding: 120px 0 40px;
    position: relative;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-glass);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-active);
    box-shadow: 0 20px 40px rgba(229, 62, 93, 0.05);
}

.pillar-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 62, 93, 0.15), rgba(213, 63, 140, 0.05));
    border: 1px solid rgba(229, 62, 93, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--accent-red);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon-box {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
    transform: scale(1.1) rotate(5deg);
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   7. Services Section
   ========================================== */
.services-section {
    padding: 60px 0 40px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-row:nth-child(even) {
    grid-template-columns: 1.1fr 1fr;
}

.service-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

.service-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 1;
}

.service-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.service-image-container:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
}

.service-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* Premium Divider Styles */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.divider-diamond {
    color: var(--accent-gold);
    font-size: 1.2rem;
    text-shadow: var(--glow-gold);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 15px rgba(212, 175, 55, 0.6); }
}

/* ==========================================
   8. Online Gallery (Ladies & Men)
   ========================================== */
.gallery-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #0c0c10 50%, var(--bg-deep) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.lady-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    background: var(--bg-card);
}

.lady-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glass-active);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lady-image-box {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.lady-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lady-card:hover .lady-image {
    transform: scale(1.06);
}

.lady-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(8, 8, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #48bb78;
    box-shadow: 0 0 10px #48bb78;
}

.lady-status-badge.video-online .status-dot {
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
}

.lady-video-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(229, 62, 93, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: var(--glow-red);
    z-index: 5;
}

.lady-image-box:hover .lady-video-trigger {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.lady-video-trigger:hover {
    background: var(--text-white);
    color: var(--accent-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.lady-info-box {
    padding: 24px;
    text-align: center;
}

.lady-name-age {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lady-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Action Interaction Buttons */
.lady-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.btn-action-glow {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-action-glow:hover {
    background: var(--bg-deep);
    transform: translateY(-3px);
}

.btn-action-glow.mail-btn:hover {
    color: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: var(--glow-red);
}

.btn-action-glow.fav-btn:hover {
    color: var(--accent-pink);
    border-color: var(--accent-pink);
    box-shadow: 0 0 15px rgba(213, 63, 140, 0.4);
}

.btn-action-glow.gift-btn:hover {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: var(--glow-gold);
}

/* Tooltip */
.btn-action-glow::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    padding: 4px 8px;
    background: rgba(18, 18, 22, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 10;
}

.btn-action-glow:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* View Gallery Link */
.gallery-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}



/* ==========================================
   9. Feedback & Success Stories Section
   ========================================== */
.feedback-section {
    padding: 60px 0 120px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.feedback-panel-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 35px;
    border-left: 4px solid var(--accent-red);
    padding-left: 16px;
}

.story-card {
    padding: 30px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    transition: var(--transition-smooth);
}

.story-card:hover {
    border-color: var(--border-glass-active);
    transform: translateX(4px);
}

.story-image-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
}

/* Paired images container */
.story-image-pair {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    border: 2px solid var(--accent-gold);
}

.pair-img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-details h5,
.story-details .story-date,
.story-details q {
    color: var(--text-white) !important;
}

.story-details h5 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2px;
}

.story-date {
    font-size: 0.75rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.story-details q {
    font-size: 0.9rem;
    color: var(--text-white);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card {
    padding: 35px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    margin-bottom: 24px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 5rem;
    color: rgba(229, 62, 93, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card q {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
}

.testimonial-author span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 8px;
}

/* ==========================================
   10. Footer
   ========================================== */
.footer-section {
    background: #060608;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-glass);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo-col .logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-col p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--accent-red);
}

/* ==========================================
   11. Animations Keyframes
   ========================================== */
@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.15); }
    28% { transform: scale(1); }
    42% { transform: scale(1.15); }
    70% { transform: scale(1); }
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFadeRight {
    0% {
        opacity: 0;
        transform: translate3d(40px, 40px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================
   12. Responsive Design Styles
   ========================================== */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pillars-grid > div:last-child {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-row, 
    .service-row:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-nav {
        height: 120px;
    }
    
    .header-nav.scrolled {
        height: 100px;
    }
    
    .logo-img {
        height: 95px;
    }
    
    .header-nav.scrolled .logo-img {
        height: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-btn-box {
        padding: 35px 24px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid > div:last-child {
        grid-column: span 1;
    }
    
    .feedback-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .slider-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   13. Search Modal Styles
   ========================================== */
.search-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 6, 8, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    pointer-events: all;
}

.search-modal-container {
    width: 90%;
    max-width: 680px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-modal.active .search-modal-container {
    transform: scale(1);
}

.search-modal-header {
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.01);
}

.search-modal-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--text-white);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-modal-title span {
    color: var(--accent-gold);
}

.search-modal-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-bounce);
}

.search-modal-close:hover {
    background: rgba(229, 62, 93, 0.1);
    color: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1) rotate(90deg);
}

.search-modal-body {
    padding: 30px;
    max-height: 80vh;
    overflow-y: auto;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}

.search-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-field-group.full-width {
    grid-column: span 2;
}

.search-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.search-select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.search-select:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(229, 62, 93, 0.2);
    background-color: rgba(255, 255, 255, 0.06);
}

.search-select option {
    background-color: #121216;
    color: #f7fafc;
}

.light-theme .search-select option {
    background-color: #ffffff;
    color: #1a202c;
}

.range-inputs-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.range-separator {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.search-checkboxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 8px;
}

.search-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-white);
    cursor: pointer;
    user-select: none;
}

.search-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    accent-color: var(--accent-red);
    cursor: pointer;
}

.search-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    justify-content: center;
}

/* Light Theme Modal Overrides */
.light-theme .search-modal {
    background-color: rgba(246, 247, 249, 0.6);
}

.light-theme .search-modal-container {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .search-modal-close {
    background: rgba(0, 0, 0, 0.03);
    color: #4a5568;
}

.light-theme .search-modal-close:hover {
    background: rgba(229, 62, 93, 0.1);
    color: var(--accent-red);
}

.light-theme .search-select {
    background-color: rgba(0, 0, 0, 0.02);
    color: #1a202c;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.light-theme .search-select:focus {
    background-color: #ffffff;
}

.light-theme .search-label {
    color: #b78a1c;
}

/* Responsive Grid adjustment */
@media (max-width: 600px) {
    .search-form-grid {
        grid-template-columns: 1fr;
    }
    
    .search-field-group.full-width {
        grid-column: span 1;
    }
}

/* ==========================================
   14. Dedicated Search Page Styles
   ========================================== */
.search-page-section {
    position: relative;
    width: 100%;
    min-height: 100dvh;
    padding: 200px 0 100px; /* offset the tall 160px header */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.search-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 10;
}

.search-card {
    width: 100%;
    max-width: 720px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
}

.search-card-header {
    text-align: center;
    margin-bottom: 35px;
}

.search-card-title {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 10px;
}

.search-card-title span {
    color: var(--accent-gold);
}

.search-card-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Light Theme Adjustments for Search Page */
.light-theme .search-page-section {
    background-image: linear-gradient(180deg, rgba(246, 247, 249, 0.8) 0%, rgba(246, 247, 249, 0.4) 100%), url('images/hero_bg.jpg') !important;
}

.light-theme .search-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(0, 0, 0, 0.08);
}

.light-theme .search-card-title {
    color: #1a202c;
}

.light-theme .search-card-title span {
    color: #b78a1c;
}

.light-theme .search-card-subtitle {
    color: #4a5568;
}

@media (max-width: 768px) {
    .search-page-section {
        padding: 160px 0 80px; /* offset the 120px mobile header */
    }
    
    .search-card {
        padding: 30px 20px;
    }
    
    .search-card-title {
        font-size: 1.8rem;
    }
}


