:root {
    /* Color Palette */
    --deep-water: #3d5a80; /* Deep oceanic blue for text */
    --primary-blue: #a8dadc; /* Soft calming pool water */
    --light-blue: #f4f8fa; /* Extremely clean, faint blue */
    --water-white: #ffffff; /* Pure white */
    --white: #ffffff;
    --bg-light: #e8f1f5; /* Elegant cool grayish blue */
    --text-dark: #3a322d;
    --text-light: #6b5d54;
    
    --warm-peach: #f28482;
    --warm-peach-light: #f4978e;
    --warm-peach-dark: #e56b69;
    
    --luxury-gold: #a67c00; /* Darker, richer antique gold */
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);

    /* Shadows & Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 15px 45px 0 rgba(209, 156, 151, 0.15);
    --drop-shadow: 0 20px 50px -10px rgba(74, 63, 53, 0.08), 0 10px 30px -8px rgba(74, 63, 53, 0.05);
    
    /* Typography */
    --font-heading: 'Varela Round', sans-serif;
    --font-body: 'Assistant', sans-serif;

    /* Luxury Easing */
    --luxury-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    font-size: 14px; /* Scale down globally */
}

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--deep-water);
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* --- Modern SVG Wave Background --- */
.water-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: #e8f1f5; /* Deeper cool base instead of pure white */
    background-image: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800" preserveAspectRatio="none"><path fill="%2300bcd4" fill-opacity="0.25" d="M0,320L60,309.3C120,299,240,277,360,288C480,299,600,341,720,336C840,331,960,277,1080,240C1200,203,1320,181,1380,170.7L1440,160L1440,800L1380,800C1320,800,1200,800,1080,800C960,800,840,800,720,800C600,800,480,800,360,800C240,800,120,800,60,800L0,800Z"></path><path fill="%23e91e63" fill-opacity="0.2" d="M0,160L60,181.3C120,203,240,245,360,250.7C480,256,600,224,720,234.7C840,245,960,299,1080,309.3C1200,320,1320,288,1380,272L1440,256L1440,800L1380,800C1320,800,1200,800,1080,800C960,800,840,800,720,800C600,800,480,800,360,800C240,800,120,800,60,800L0,800Z"></path><path fill="%2381d4fa" fill-opacity="0.3" d="M0,512L60,490.7C120,469,240,427,360,426.7C480,427,600,469,720,512C840,555,960,597,1080,597.3C1200,597,1320,555,1380,533.3L1440,512L1440,800L1380,800C1320,800,1200,800,1080,800C960,800,840,800,720,800C600,800,480,800,360,800C240,800,120,800,60,800L0,800Z"></path></svg>');
    background-size: 200% 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    animation: waveFlow 30s ease-in-out infinite alternate;
}

@keyframes waveFlow {
    0% { background-position: left bottom; }
    100% { background-position: right bottom; }
}

/* --- Floating Bubbles --- */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -150px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 60%);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        inset 10px 0 30px rgba(255, 182, 193, 0.4),
        inset -10px 0 30px rgba(173, 216, 230, 0.4),
        inset 0 -20px 30px rgba(166, 124, 0, 0.2),
        0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    opacity: 0;
    animation: floatUpSoap 15s infinite ease-in-out, wobble 4s infinite ease-in-out;
    will-change: bottom, transform, margin-left;
}

@keyframes floatUpSoap {
    0% { bottom: -150px; opacity: 0; }
    10% { opacity: 0.9; }
    90% { opacity: 0.9; }
    100% { bottom: 120vh; opacity: 0; }
}

@keyframes wobble {
    0%, 100% { margin-left: 0; transform: scale(1); }
    50% { margin-left: 20px; transform: scale(1.05); }
}

/* Luxurious sizes, widely varied */
.bubble1 { width: 25px; height: 25px; left: 5%; animation-duration: 18s, 4s; animation-delay: 0s, 0s; }
.bubble2 { width: 70px; height: 70px; left: 12%; animation-duration: 22s, 5s; animation-delay: 5s, 1s; }
.bubble3 { width: 15px; height: 15px; left: 8%; animation-duration: 15s, 3s; animation-delay: 2s, 2s; }
.bubble4 { width: 45px; height: 45px; left: 2%; animation-duration: 25s, 6s; animation-delay: 8s, 0s; }
.bubble5 { width: 30px; height: 30px; left: 88%; animation-duration: 19s, 4.5s; animation-delay: 12s, 1.5s; }
.bubble6 { width: 80px; height: 80px; left: 95%; animation-duration: 16s, 3.5s; animation-delay: 15s, 0.5s; }
.bubble7 { width: 40px; height: 40px; left: 85%; animation-duration: 21s, 5s; animation-delay: 18s, 2.5s; }
.bubble8 { width: 60px; height: 60px; left: 92%; animation-duration: 28s, 6s; animation-delay: 10s, 1s; }
.bubble9 { width: 20px; height: 20px; left: 82%; animation-duration: 14s, 3s; animation-delay: 6s, 0s; }
/* --- Language Switcher --- */
.lang-switcher {
    position: fixed;
    top: 30px;
    left: 40px; /* Fixed physical position so it stays in the exact same spot in both Hebrew (RTL) and English (LTR) */
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 95, 115, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.lang-switcher a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.lang-switcher a:hover {
    color: var(--warm-peach);
}

.lang-switcher a.active {
    color: var(--luxury-gold);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(212, 175, 55, 0.3);
}

.lang-switcher .divider {
    color: rgba(0,0,0,0.2);
    font-size: 0.9rem;
}


/* --- Hero Section (Watsu Style) --- */
.hero-banner {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 2;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160vh;
    background: url('assets/hero_bg.jpg') center/cover no-repeat;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    pointer-events: none;
    filter: saturate(1.2) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160vh;
    /* Removed blue tint. Pure vignette so image is sharp and colorful */
    background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-text-minimal {
    max-width: 900px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.6), 0 0 30px rgba(0,0,0,0.3);
}



.hero-text-minimal h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
}

.hero-text-minimal h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--water-white);
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

/* --- Interactive Hero Text Hover Effect (Floating) --- */
.interactive-hero-line {
    position: relative;
    padding: 10px 20px;
    border-radius: 12px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    cursor: pointer;
}

.interactive-hero-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.12); /* ׳³ֲ³ײ²ֲ©׳³ֲ³ײ²ֲ§׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ£ ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ¢׳³ֲ³׳’ג‚¬ֲ׳³ֲ³׳’ג€ֲ¢׳³ֲ³ײ²ֲ */
    backdrop-filter: blur(8px); /* ׳³ֲ³ײ²ֲ׳³ֲ³׳’ג€ֳ—׳³ֲ³ײ²ֲ§׳³ֲ³ײ»ֲ ׳³ֲ³׳’ג‚¬ג€׳³ֲ³׳’ג‚¬ֳ·׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³׳’ג‚¬ֳ·׳³ֲ³׳’ג€ֲ¢׳³ֲ³ײ³ג€” */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    z-index: -1;
    /* ׳³ֲ³ײ²ֲ׳³ֲ³ײ³ג€”׳³ֲ³׳’ג‚¬ג€׳³ֲ³׳’ג€ֲ¢׳³ֲ³ײ²ֲ ׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ׳³ֲ³ײ»ֲ׳³ֲ³׳’ג‚¬ֲ ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ§׳³ֲ³ײ»ֲ׳³ֲ³ײ²ֲ ׳³ֲ³׳’ג€ֲ¢׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ³ג€”׳³ֲ³ײ²ֲ¨ ׳³ֲ³׳’ג‚¬ֳ·׳³ֲ³׳’ג‚¬ֲ׳³ֲ³׳’ג€ֲ¢ ׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ³ג€” ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ¦׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ£ */
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.interactive-hero-line:hover {
    /* ׳³ֲ³׳’ג‚¬ֲ׳³ֲ³ײ»ֲ׳³ֲ³ײ²ֲ§׳³ֲ³ײ²ֲ¡׳³ֲ³ײ»ֲ ׳³ֲ³׳’ג‚¬ֳ·׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ֲ¢ ׳³ֲ³ײ²ֲ¦׳³ֲ³ײ²ֲ£ ׳³ֲ³׳’ג‚¬ֳ·׳³ֲ³ײ²ֲ׳³ֲ³׳’ג€ֳ—׳³ֲ³׳’ג€ֲ¢ ׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ֲ */
    transform: translateY(-12px);
    text-shadow: 0 8px 25px rgba(0, 0, 0, 0.7) !important;
}

.interactive-hero-line:hover::before {
    /* ׳³ֲ³׳’ג‚¬ֲ׳³ֲ³ײ²ֲ¨׳³ֲ³ײ²ֲ§׳³ֲ³ײ²ֲ¢ ׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ג€׳³ֲ³ײ²ֲ׳³ֲ³׳’ג€ֲ¢׳³ֲ³ײ²ֲ§ ׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ׳³ֲ³ײ²ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ֲ ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³ײ²ֲ׳³ֲ³׳’ג‚¬ֲ¢׳³ֲ³׳’ג€ֳ—׳³ֲ³׳’ג€ֲ¢׳³ֲ³ײ²ֲ¢ */
    transform: translateY(0) scale(1);
    opacity: 1;
}

.hero-provider-name.interactive-hero-line:hover {
    color: var(--warm-peach-light) !important;
    font-weight: 900 !important;
}

h1.interactive-hero-line:hover {
    color: var(--primary-blue) !important;
    font-weight: 800 !important;
}

h2.interactive-hero-line:hover {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
}

.hero-text-minimal .accent-line {
    background: var(--warm-peach);
    box-shadow: 0 0 10px rgba(242, 132, 130, 0.5);
}

.mt-4 {
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--warm-peach);
    color: white;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 15px 40px rgba(242, 132, 130, 0.3);
    transition: all 0.6s var(--luxury-ease);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: var(--warm-peach-dark);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(242, 132, 130, 0.4);
}

.cta-button svg {
    transition: transform 0.5s var(--luxury-ease);
}

.cta-button:hover svg {
    transform: translateX(-5px);
}

/* --- Benefits Section --- */
.benefits {
    text-align: center;
    position: relative;
    padding: 100px 0;
    z-index: 1;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pure_water.jpg') no-repeat;
    background-size: 120% 120%; /* Make it larger so we can pan around */
    z-index: -2;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    animation: waterFlow 40s ease-in-out infinite alternate; /* Slow, continuous drifting */
}

@keyframes waterFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 50% 100%; }
}

.benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.6) 0%, rgba(255, 240, 245, 0.8) 80%, rgba(255, 228, 225, 0.9) 100%);
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 80px;
    font-weight: 900;
    position: relative;
    display: block;
    text-align: center;
    color: var(--deep-water);
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.section-title::after {
    display: none;
}

.drops-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.drop-card {
    background: transparent;
    padding: 20px 20px;
    border-radius: 20px; 
    width: calc(33.333% - 90px);
    min-width: 240px;
    
    /* Force PERFECT SQUARE! */
    aspect-ratio: 1 / 1;
    
    border: none;
    transition: all 0.6s var(--luxury-ease);
    position: relative;
    z-index: 1; /* Creates a stacking context so ::before doesn't slip behind the section! */
    isolation: isolate; /* Enforces stacking context */
    margin: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Assign the specific beautifully generated opaque pastel images to each card */
.drop-card:nth-child(1)::before { background-image: url('assets/ring_gold.png'); } 
.drop-card:nth-child(2)::before { background-image: url('assets/ring_blue.png'); } 
.drop-card:nth-child(3)::before { background-image: url('assets/ring_pink.png'); } 
.drop-card:nth-child(4)::before { background-image: url('assets/ring_blue.png'); } 
.drop-card:nth-child(5)::before { background-image: url('assets/ring_gold.png'); } 

/* The Actual Photorealistic Opaque Image of a Wet Inflatable Ring */
.drop-card::before {
    content: '';
    position: absolute;
    top: -30px; left: -30px; right: -30px; bottom: -30px; /* Sits outside the card */
    
    /* Show the ENTIRE image natively, no cropping! */
    background-size: 100% 100%; 
    background-position: center;
    background-repeat: no-repeat;
    
    /* Drop shadow and color enhancements to force maximum opacity and solid plastic look */
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4)) contrast(1.2) saturate(1.2) brightness(0.95);
    
    z-index: -1; /* Sits on top of the white background, completely preserving the inner tube! */
    transition: all 0.6s var(--luxury-ease);
    pointer-events: none;
    opacity: 1; /* Fully opaque! */
}

/* The Inner Card Background (Seen through the hole) */
.drop-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent; /* Always show the pool water perfectly! */
    backdrop-filter: none; 
    border-radius: 20px;
    z-index: -2; /* Sits BEHIND the ring! */
    transition: all 0.6s var(--luxury-ease);
}

.drop-card:hover {
    transform: translateY(-10px);
}

/* Rotate the ring itself! */
.drop-card:hover::before {
    transform: rotate(15deg) scale(1.05);
}

.drop-card:hover::after {
    /* Adds a bold, deep blue tint to the water */
    background: rgba(0, 40, 110, 0.55); 
    /* Enhances the actual water behind it: makes it darker, much bolder/saturated, and punchy */
    backdrop-filter: brightness(0.6) saturate(2) contrast(1.2); 
}

.drop-card p {
    position: relative;
    z-index: 2;
    text-align: center;
    margin: 0 auto;
    line-height: 1.5;
    max-width: 55%; /* Much narrower to force more line breaks and increase margin from the ring! */
    font-size: 0.85rem; /* Smaller text */
    font-weight: 700; /* Bolder text */
    color: #444444;
    transition: color 0.6s var(--luxury-ease);
}

.drop-card:hover p {
    color: #ffffff;
}

/* Wrapper to allow children to position independently */
.title-animation-wrapper {
    display: contents; /* Removes wrapper from layout, children become direct children of .drop-card for flexbox */
}

.title-animation-wrapper h4 {
    position: absolute;
    top: -5px; /* Sit squarely in the middle of the top tube of the thin float */
    left: 50%;
    transform: translateX(-50%) perspective(150px) rotateX(20deg) rotateZ(-1.5deg); 
    z-index: 3;
    
    margin: 0;
    color: #333333 !important; /* Force dark gray marker */
    font-family: 'Gveret Levin', cursive; /* Handwritten font! */
    font-weight: normal; /* Remove boldness */
    font-size: 1.6rem; /* Handwriting size */
    white-space: nowrap;
    background: transparent !important; 
    padding: 0; 
    
    mix-blend-mode: multiply;
    opacity: 0.85;
}

/* Elegant Spreading Water Ripples behind the ring on hover! */
.title-animation-wrapper::before,
.title-animation-wrapper::after {
    content: '';
    position: absolute;
    /* Start roughly the size of the float */
    top: -20px; left: -20px; right: -20px; bottom: -20px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0); /* Invisible by default */
    z-index: -5; /* Deep behind the float! */
    pointer-events: none;
}

@keyframes spreadRipple {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
        border-width: 4px;
        border-color: rgba(255, 255, 255, 0.7);
    }
    100% {
        transform: scale(1.35); /* Expand outward! */
        opacity: 0; /* Fade out seamlessly into the water */
        border-width: 1px;
        border-color: rgba(255, 255, 255, 0);
    }
}

.drop-card:hover .title-animation-wrapper::before {
    animation: spreadRipple 2s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
}

.drop-card:hover .title-animation-wrapper::after {
    animation: spreadRipple 2s cubic-bezier(0.2, 0.8, 0.3, 1) infinite;
    animation-delay: 0.8s; /* Staggered ripple! */
}

/* Line Art SVG Styling */
.title-animation-wrapper .line-art-wrapper {
    position: relative; /* Normal flow, sits inside the hole */
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto; /* Centered, right above the description paragraph */
}

.draw-line-svg {
    width: 45px; /* Appropriate size for an icon inside the hole */
    height: 45px;
    overflow: visible;
}

.animated-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 2s var(--luxury-ease), stroke 0.6s var(--luxury-ease);
    stroke-width: 5 !important; /* Very thick, bold line */
    stroke: #e91e63 !important; /* Hot pink! */
}

/* Base hover state for all animated paths, ensuring they become white */
.drop-card:hover .animated-path {
    stroke: #ffffff !important;
}

/* Continuous curling/flowing effect for standard abstract lines (looks like a moving video) */
.drop-card:hover .draw-line-svg:not(.hands-and-heart-svg) .animated-path {
    stroke-dasharray: 40 20;
    animation: curlFlow 1.5s linear infinite;
}

@keyframes curlFlow {
    0% { stroke-dashoffset: 60; }
    100% { stroke-dashoffset: 0; }
}

/* Add a gentle infinite sway to the SVG itself */
.drop-card:hover .draw-line-svg:not(.hands-and-heart-svg) {
    animation: gentleSway 3s ease-in-out infinite alternate;
}

@keyframes gentleSway {
    0% { transform: rotate(-3deg) scale(1); }
    100% { transform: rotate(3deg) scale(1.05); }
}

/* Bubbles rising inside the wheel hole on hover */
.drop-card:hover .line-art-wrapper::before,
.drop-card:hover .line-art-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 60%);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.drop-card:hover .line-art-wrapper::before {
    width: 14px;
    height: 14px;
    left: 15%;
    bottom: -15px;
    box-shadow: 15px -25px 0 -3px rgba(255,255,255,0.5), -10px -40px 0 -5px rgba(255,255,255,0.4);
    animation: holeBubbleUp 2s ease-in infinite;
}

.drop-card:hover .line-art-wrapper::after {
    width: 10px;
    height: 10px;
    right: 20%;
    bottom: -20px;
    box-shadow: -12px -20px 0 -2px rgba(255,255,255,0.6), 15px -35px 0 -4px rgba(255,255,255,0.4);
    animation: holeBubbleUp 2.5s ease-in infinite;
    animation-delay: 0.7s;
}

@keyframes holeBubbleUp {
    0% {
        transform: translateY(0) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-70px) scale(1.2);
        opacity: 0;
    }
}

.is-visible .animated-path {
    stroke-dashoffset: 0;
}

/* Hands and Heart Hover Animation */
.hands-and-heart-svg .hand-outer-left,
.hands-and-heart-svg .hand-inner-left {
    transform-origin: right bottom;
    transform-box: fill-box;
    transition: transform 0.6s var(--luxury-ease), stroke-dashoffset 2s var(--luxury-ease), stroke 0.6s var(--luxury-ease);
}

.hands-and-heart-svg .hand-outer-right,
.hands-and-heart-svg .hand-inner-right {
    transform-origin: left bottom;
    transform-box: fill-box;
    transition: transform 0.6s var(--luxury-ease), stroke-dashoffset 2s var(--luxury-ease), stroke 0.6s var(--luxury-ease);
}

.hands-and-heart-svg .flying-heart {
    transform-origin: center;
    transform-box: fill-box;
    transition: all 0.6s var(--luxury-ease);
}

.drop-card:hover .hands-and-heart-svg .hand-outer-left,
.drop-card:hover .hands-and-heart-svg .hand-inner-left {
    transform: rotate(-35deg);
    animation: handSwayLeft 2s ease-in-out infinite alternate;
}
@keyframes handSwayLeft {
    0% { transform: rotate(-35deg); }
    100% { transform: rotate(-25deg); }
}

.drop-card:hover .hands-and-heart-svg .hand-outer-right,
.drop-card:hover .hands-and-heart-svg .hand-inner-right {
    transform: rotate(35deg);
    animation: handSwayRight 2s ease-in-out infinite alternate;
}
@keyframes handSwayRight {
    0% { transform: rotate(35deg); }
    100% { transform: rotate(25deg); }
}

.drop-card:hover .hands-and-heart-svg .flying-heart {
    transform: translateY(-25px) scale(1.5);
    fill: rgba(255, 255, 255, 0.4);
    animation: heartBeatHover 1s ease-in-out infinite alternate;
}
@keyframes heartBeatHover {
    0% { transform: translateY(-25px) scale(1.5); fill: rgba(255, 255, 255, 0.4); }
    100% { transform: translateY(-28px) scale(1.7); fill: rgba(255, 255, 255, 0.6); }
}

/* Old h4 styling removed to keep titles as clean marker text on the float */

.primary-cta {
    background: rgba(61, 90, 128, 0.35);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(61, 90, 128, 0.15);
}

.primary-cta:hover {
    background: var(--deep-water);
    color: var(--white);
    border-color: var(--deep-water);
    box-shadow: 0 8px 25px rgba(61, 90, 128, 0.5);
}

.drop-card p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
}

/* --- Provider Section --- */
.provider {
    position: relative;
    padding: 270px 0 100px 0; /* Lowered the square further down to match the user's request */
}

.provider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/pure_water.jpg') no-repeat;
    background-size: 120% 120%;
    animation: waterFlow 40s ease-in-out infinite alternate;
    z-index: -2;
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, black 40%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 20%, black 40%, black 100%);
    opacity: 0.08;
}

.provider-content {
    background: rgba(255, 249, 235, 0.55); /* Yellowish pearl white tint (לבן פנינה צהבהב) */
    border-radius: 40px; /* Slightly smaller radius to match the reduced size */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    max-width: 850px; /* Shrunk width */
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px); /* Slight bump to blur to give it a solid glass feel without making it murky */
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.95);
    padding: 15px 40px; /* Further shrunk padding to make the glass significantly smaller and less tall */
}

.provider-split {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
    margin-top: -25px; /* Pull content closer to the title above */
}

.provider-info {
    flex: 0 0 48%;
    max-width: 48%;
    text-align: start;
}

.provider-image {
    flex: 0 0 60%;
    max-width: 700px;
    margin: 0 auto;
}

.provider-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s var(--luxury-ease);
}

.provider-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

.provider-illustration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 250px;
    z-index: 0;
    pointer-events: none;
}

.provider-info h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.provider-info .title {
    font-size: 1.4rem;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-top: 5px; /* Reduced to pull text closer to the main title above */
    margin-bottom: 20px; /* Reduced bottom margin too */
    background: transparent;
    padding: 15px 25px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 0 0 rgba(0,0,0,0);

    border: 2px solid var(--luxury-gold);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.provider-info .title:hover {
    background: var(--luxury-gold);
    color: var(--white);
    animation: gentleWaterFloat 4s ease-in-out infinite;
}

@keyframes gentleWaterFloat {
    0%, 100% {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(166, 124, 0, 0.2);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 20px 35px rgba(166, 124, 0, 0.35);
    }
}

.align-right {
    margin: 0 0 25px 0;
}

.bio-short {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.8;
}

/* --- Interactive Provider JPG Animations --- */
.interactive-provider {
    position: relative;
    width: 100%;
    cursor: pointer;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.provider-main-img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 72%);
    mask-image: radial-gradient(circle at center, black 50%, transparent 72%);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-provider:hover .provider-main-img {
    transform: translateY(-15px) scale(1.05) rotate(1deg);
    box-shadow: 0 25px 50px rgba(166, 124, 0, 0.35); /* Gold halo */
}

/* Floating Heart Bubbles */
.heart-bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: hidden;
    border-radius: 20px;
}

.hb {
    position: absolute;
    bottom: 30%;
    left: 50%;
    color: #e91e63;
    font-size: 24px;
    opacity: 0;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    transform: translate(-50%, 0) scale(0);
}

.interactive-provider:hover .hb {
    animation: floatHeartBubble 2.5s ease-in infinite;
}

.hb1 { left: 45%; animation-delay: 0s !important; color: #f28482; font-size: 20px; }
.hb2 { left: 55%; animation-delay: 0.4s !important; color: #a8dadc; font-size: 28px; }
.hb3 { left: 40%; animation-delay: 0.8s !important; color: #e91e63; font-size: 18px; }
.hb4 { left: 60%; animation-delay: 1.2s !important; color: #ff8a65; font-size: 22px; }
.hb5 { left: 50%; animation-delay: 1.6s !important; color: #00bcd4; font-size: 26px; }
.hb6 { left: 48%; animation-delay: 2.0s !important; color: #f4978e; font-size: 16px; }

@keyframes floatHeartBubble {
    0% {
        transform: translate(-50%, 0) scale(0);
        opacity: 0;
    }
    20% {
        opacity: 0.8;
        transform: translate(-60%, -40px) scale(1);
    }
    50% {
        transform: translate(-40%, -80px) scale(1.2);
    }
    80% {
        opacity: 0.6;
        transform: translate(-55%, -120px) scale(1);
    }
    100% {
        transform: translate(-50%, -160px) scale(0.5);
        opacity: 0;
    }
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-list li {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 25px 35px;
    box-shadow: 0 15px 40px rgba(74, 63, 53, 0.04);
    backdrop-filter: blur(5px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
}

.benefit-list li:hover {
    transform: translateX(-10px);
    box-shadow: 0 20px 45px rgba(74, 63, 53, 0.08);
}

.watermark-number {
    position: absolute;
    font-size: 6rem;
    font-weight: 800;
    opacity: 0.08;
    top: -15px;
    inset-inline-end: 15px; /* Adjusts automatically for RTL/LTR */
    z-index: 0;
    font-family: var(--font-heading);
    transition: all 0.4s ease;
    line-height: 1;
}

.benefit-list li:hover .watermark-number {
    opacity: 0.15;
    transform: scale(1.1);
}

.tint-peach {
    background: linear-gradient(135deg, rgba(242, 132, 130, 0.1), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-inline-start: 4px solid var(--warm-peach);
}
.tint-peach .watermark-number { color: var(--warm-peach-dark); }

.tint-blue {
    background: linear-gradient(135deg, rgba(138, 201, 226, 0.1), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-inline-start: 4px solid var(--primary-blue);
}
.tint-blue .watermark-number { color: var(--primary-blue); }

.tint-deep {
    background: linear-gradient(135deg, rgba(0, 95, 115, 0.05), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-inline-start: 4px solid var(--deep-water);
}
.tint-deep .watermark-number { color: var(--deep-water); }

.benefit-text {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.benefit-text strong {
    color: var(--deep-water);
    font-weight: 500;
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.benefit-text span {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* --- Testimonials Section --- */
/* =========================================
   Testimonials Section (Memo Board Style)
   ========================================= */
.testimonials {
    background: url('assets/testimonials_bg.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 250, 0.65), rgba(255, 255, 255, 0.7));
    background-size: 300% 300%;
    animation: flowBackground 24s ease-in-out infinite;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* The moving water background */
    background: url('assets/pure_water.jpg') no-repeat;
    background-size: 120% 120%;
    animation: waterFlow 40s ease-in-out infinite alternate;
    opacity: 0.15; /* Balanced transparency - visible but subtle */
    z-index: 0; /* Under the gradient (z-index 1) but over the static background image */
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.memo-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    padding: 20px 0;
}

.memo-note {
    background-color: #fdfbf7;
    background-image: repeating-linear-gradient(
        transparent,
        transparent 31px,
        rgba(168, 218, 220, 0.7) 31px,
        rgba(168, 218, 220, 0.7) 32px
    );
    background-size: 100% 32px;
    background-position: 0 10px;
    border-radius: 4px;
    padding: 30px 25px;
    padding-inline-start: 45px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 2px 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.memo-note::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    inset-inline-start: 15px;
    width: 14px;
    background-image: radial-gradient(circle, #e2e8f0 4px, rgba(0,0,0,0.1) 5px, transparent 6px);
    background-size: 14px 40px;
    background-position: center 20px;
    border-inline-end: 2px double rgba(0,0,0,0.05);
}



.memo-note:hover {
    transform: scale(1.05) rotate(0deg) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.memo-pin {
    width: 14px;
    height: 14px;
    background-color: #d19c97;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), 0 2px 4px rgba(0,0,0,0.2);
}

.handwritten {
    font-family: 'Gveret Levin', cursive;
    color: #3a322d;
}

.testimonial-header {
    display: block;
    margin-bottom: 20px;
    line-height: 1.8;
}

.quote-icon {
    font-size: 4rem;
    font-family: serif;
    line-height: 0.8;
    margin-inline-end: 15px;
    opacity: 0.2;
    float: left;
}

.peach-header .quote-icon { color: var(--warm-peach); }
.blue-header .quote-icon { color: var(--primary-blue); }
.deep-header .quote-icon { color: var(--deep-water); }

.testimonial-title.handwritten {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 0;
    text-align: right;
    color: #000000;
    display: inline;
    padding-bottom: 8px;
    background-size: 100% 16px;
    background-position: bottom;
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.peach-header .testimonial-title.handwritten {
    background-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"><path d="M 200 6 Q 150 3 100 7 T 0 6" stroke="%23e91e63" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/><path d="M 180 15 Q 130 18 60 14" stroke="%23e91e63" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/></svg>');
}
.blue-header .testimonial-title.handwritten {
    background-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"><path d="M 200 6 Q 150 3 100 7 T 0 6" stroke="%2300a8cc" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/><path d="M 180 15 Q 130 18 60 14" stroke="%2300a8cc" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/></svg>');
}
.deep-header .testimonial-title.handwritten {
    background-image: url('data:image/svg+xml;utf8,<svg preserveAspectRatio="none" viewBox="0 0 200 20" xmlns="http://www.w3.org/2000/svg"><path d="M 200 6 Q 150 3 100 7 T 0 6" stroke="%23a67c00" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/><path d="M 180 15 Q 130 18 60 14" stroke="%23a67c00" stroke-width="2" fill="none" vector-effect="non-scaling-stroke" stroke-linecap="round"/></svg>');
}

.testimonial-text.handwritten {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author.handwritten {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
    color: var(--warm-peach-dark);
}

.highlight-yellow {
    background: linear-gradient(104deg, rgba(255, 255, 0, 0) 0.9%, rgba(255, 235, 59, 0.5) 2.4%, rgba(255, 235, 59, 0.4) 5.8%, rgba(255, 235, 59, 0.7) 93%, rgba(255, 255, 0, 0) 96%);
    padding: 0 4px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.highlight-pink {
    background: linear-gradient(104deg, rgba(255, 255, 255, 0) 0.9%, rgba(233, 30, 99, 0.15) 2.4%, rgba(233, 30, 99, 0.1) 5.8%, rgba(233, 30, 99, 0.2) 93%, rgba(255, 255, 255, 0) 96%);
    padding: 0 4px;
    border-radius: 3px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* --- Contact Section (Original Restored & Enhanced) --- */
.contact {
    background: url('assets/hero_bg.jpg') bottom/cover no-repeat;
    text-align: center;
    position: relative;
    padding: 100px 0 60px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(244, 248, 250, 0.15), rgba(255, 255, 255, 0.2));
    background-size: 300% 300%;
    animation: flowBackground 18s ease-in-out infinite alternate;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.45);
    padding: 80px 50px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 60px rgba(74, 63, 53, 0.1);
    margin: 0 auto;
}

.contact-headline {
    color: #003b46; /* Very dark navy cyan */
    font-size: 3.2rem; /* Much bigger */
    font-weight: 900; /* Extra bold */
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(255,255,255,0.9);
}

/* --- Interactive Footer Hover Effect (Floating Pink Glass) --- */
.interactive-footer-line {
    position: relative;
    padding: 10px 25px;
    border-radius: 15px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    cursor: pointer;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.interactive-footer-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Luxurious transparent gold glass */
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.15), rgba(252, 246, 186, 0.15));
    backdrop-filter: blur(6px);
    border: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 15px;
    z-index: -1;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(166, 124, 0, 0.15);
}

.interactive-footer-line:hover {
    transform: translateY(-12px);
    color: #a67c00 !important; /* Luxury Gold */
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.6) !important;
}

.interactive-footer-line:hover::before {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.phone-wrapper {
    margin-bottom: 30px;
}

.phone-number {
    display: inline-block;
    font-size: 4rem; /* Huge phone number */
    font-weight: 900; /* Extra bold */
    color: #e91e63; /* Dominant pink */
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

/* Add an appropriate animation */
.pulse-animation {
    animation: gentlePulse 2.5s infinite ease-in-out;
}

@keyframes gentlePulse {
    0% { transform: scale(1); text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
    50% { transform: scale(1.05); text-shadow: 0 5px 20px rgba(233, 30, 99, 0.5); }
    100% { transform: scale(1); text-shadow: 0 2px 10px rgba(0,0,0,0.1); }
}

.phone-number:hover {
    color: #c2185b; /* Darker pink */
    animation: none;
    transform: scale(1.1);
}

.footer-note {
    font-size: 1.4rem; /* Bigger */
    font-weight: 700; /* Bolder */
    color: #005f73; /* Navy/Deep Cyan */
    margin-top: 20px;
    text-shadow: 0 1px 3px rgba(255,255,255,0.8);
}

/* --- Interactive Gold Footer Notes --- */
.interactive-gold-line {
    position: relative;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    cursor: default;
}

.interactive-gold-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle Gold Background */
    background: linear-gradient(135deg, rgba(191, 149, 63, 0.15), rgba(252, 246, 186, 0.15));
    border: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 8px;
    z-index: -1;
    /* Expanding animation - start small */
    transform: scaleX(0.9) scaleY(0.7);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.interactive-gold-line:hover {
    transform: scale(1.02);
    color: #a67c00 !important; /* Luxury Gold */
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.9) !important;
}

.interactive-gold-line:hover::before {
    transform: scaleX(1) scaleY(1);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(166, 124, 0, 0.15);
}

.copyright {
    position: relative;
    z-index: 2;
    margin-top: 80px;
    font-size: 0.9rem;
    opacity: 0.8;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
    .contact-headline { font-size: 2.2rem; }
    .phone-number { font-size: 2.5rem; }
    .contact-container { padding: 40px 20px; }
}

/* --- Language Specific Overrides --- */
html[lang="en"] .title-animation-wrapper h4 {
    font-size: 1.15rem;
    white-space: nowrap;
    top: -5px;
}

html[lang="en"] .drop-card p {
    font-size: 0.95rem;
    max-width: 58%;
}

/* --- Water Stream Animation --- */
.water-stream-container {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 0;
    width: 100%;
    height: 250px;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    border-radius: 0 0 50px 50px;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.stream-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="rgba(168,218,220,0.8)" d="M0,50 C150,80 350,20 500,50 C650,80 850,20 1000,50 L1000,100 L0,100 Z"></path></svg>');
    background-size: 50% 100%;
    animation: slideWave 8s linear infinite;
    margin: 0;
    border-radius: 0;
    opacity: 1;
}

.stream-wave.stream-pink {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="rgba(242,132,130,0.3)" d="M0,60 C150,30 350,90 500,60 C650,30 850,90 1000,60 L1000,100 L0,100 Z"></path></svg>');
    animation: slideWave 12s linear infinite reverse;
    bottom: 0;
    opacity: 1;
}

@keyframes slideWave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.stream-bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 60%);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.8),
        inset 10px 0 20px rgba(255, 182, 193, 0.4),
        inset -10px 0 20px rgba(173, 216, 230, 0.4),
        inset 0 -15px 20px rgba(166, 124, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    will-change: transform, opacity;
}

@keyframes streamBubbleFlow {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translate(calc(var(--drift-x-end) * 0.1), var(--bob-y)) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translate(calc(var(--drift-x-end) * 0.5), calc(var(--bob-y) * -1)) scale(1.05);
        opacity: 0.9;
    }
    90% {
        transform: translate(calc(var(--drift-x-end) * 0.9), var(--bob-y)) scale(1);
        opacity: 0.9;
    }
    100% {
              transform: translate(var(--drift-x-end), 0) scale(0);
        opacity: 0;
    }
}

/* --- Wave Letter Animation --- */
.hover-wave-text {
    cursor: pointer;
}

.hover-wave-text .wave-letter {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hover-wave-text:hover .wave-letter {
    animation: waveLetter 1s ease-in-out infinite;
    color: var(--luxury-gold);
}

.hover-wave-text.no-color:hover .wave-letter {
    color: inherit;
}

@keyframes waveLetter {
    0%, 100% { transform: translateY(0) rotate(var(--base-rotate, 0deg)); }
    50% { transform: translateY(-8px) rotate(var(--base-rotate, 0deg)); }
}
/* --- Registration Modal (Frosted Glass) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero_bg.jpg') center/cover no-repeat;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px); /* Lighter frosted glass effect so pool is visible */
    z-index: 0;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), inset 0 0 20px rgba(255,255,255,0.5);
    transform: translateY(40px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.close-btn {
    position: absolute;
    top: 15px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--deep-water);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: var(--warm-peach);
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 20px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--deep-water);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--warm-peach);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 15px rgba(242, 132, 130, 0.4);
}

/* --- Reading Animation --- */
.animated-reading-box {
    transition: all 0.4s ease;
}

/* --- Reading Animation --- */
.animated-reading-box {
    transition: all 0.4s ease;
    border-radius: 12px;
    padding: 0;
    border: 2px solid transparent;
    white-space: pre-wrap; /* Ensure spaces between spans are rendered */
}

.animated-reading-box:hover {
    background-color: rgba(255, 182, 162, 0.2); /* Gentle Peach-Pink */
    border: 2px solid #1a365d; /* Luxury Blue border */
    border-radius: 12px; /* Rounded box as requested */
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.2); /* Luxury Blue shadow */
}

.animated-reading-box span {
    display: inline; /* Keep it inline so letters flow naturally and backgrounds touch perfectly */
}

.animated-reading-box:hover span {
    animation: paint-text 0.1s linear forwards;
    animation-delay: calc(var(--char-index) * 0.045s); /* Slow, deliberate reading pace */
}

@keyframes paint-text {
    to {
        background-color: rgba(26, 54, 93, 0.95); /* Luxury Deep Blue */
        color: #ffffff; /* White letters */
        text-shadow: 0 0 1px #ffffff, 0 0 1px #ffffff; /* Faux bold to prevent layout shift */
    }
}

























/* Gentle Hover Text */
.gentle-hover-text {
    transition: letter-spacing 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s ease;
    display: inline-block;
    cursor: default;
}

.gentle-hover-text:hover {
    letter-spacing: 1.5px;
    transform: translateY(-2px);
}

/* Custom dominant pink hover for the registration button */
#open-registration-modal:hover {
    background-color: #ff3385 !important;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 51, 133, 0.4) !important;
}

