/* ===== Hero Section מתוקן ===== */
.hero-section {
    position: relative;
    min-height: 500px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(199,62,109,0.1) 100%);
    z-index: 1;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-content .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Heebo', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content .hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content .hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-content .hero-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.hero-content .hero-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-content .hero-cta:hover i {
    transform: translateY(3px);
}

/* וודא שה-Bio Section לא עולה על ה-Hero */
.orit-bio {
    position: relative;
    z-index: 0;
    margin-top: 2rem;
    background: white;
}

/* למובייל */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-content .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-content .hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== סוף Hero Section מתוקן ===== */


/* Modern CSS Reset & Variables */
:root {
    --primary-gold: #D4AF37;
    --secondary-rose: #C73E6D;
    --deep-purple: #4A148C;
    --light-cream: #FFF8E1;
    --dark-text: #2C1810;
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #C73E6D 50%, #4A148C 100%);
    --gradient-hover: linear-gradient(135deg, #4A148C 0%, #C73E6D 50%, #D4AF37 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styles */
body {
    font-family: 'Heebo', 'Rubik', sans-serif;
    color: var(--dark-text);
    direction: rtl;
    background: var(--light-cream);
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Modern Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(199,62,109,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(74,20,140,0.05) 0%, transparent 50%);
    z-index: -2;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, -20px) scale(1.05); }
    66% { transform: translate(20px, -10px) scale(0.95); }
}

/* Glassmorphism Effect Layer */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/images/kabala.jpg') center/cover;
    opacity: 0.03;
    z-index: -1;
    filter: blur(100px);
}

/* Modern Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', 'Frank Ruhl Libre', serif;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

/* Animated Header */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo Animation */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeInScale 1s ease-out 0.3s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(212,175,55,0.3),
        0 0 0 5px rgba(255,255,255,0.8),
        0 0 0 10px rgba(212,175,55,0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 30px 80px rgba(212,175,55,0.4),
        0 0 0 8px rgba(255,255,255,0.9),
        0 0 0 16px rgba(212,175,55,0.3);
}

.logo:hover::before {
    animation: shine 0.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Main Title Animation */
.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 1rem 0;
    text-align: center;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 0 20px rgba(212,175,55,0.5); }
    to { text-shadow: 0 0 40px rgba(199,62,109,0.8), 0 0 60px rgba(74,20,140,0.4); }
}

/* Modern Section Styling */
.section {
    margin: 4rem auto;
    max-width: 1200px;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius);
}

.section:hover::before {
    opacity: 0.3;
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Biography Section with Modern Layout */
.bio-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.bio-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 0 0 5px rgba(255,255,255,0.8),
        0 0 0 10px rgba(212,175,55,0.2);
    transition: var(--transition);
    position: relative;
}

.bio-image:hover {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.3),
        0 0 0 8px rgba(255,255,255,0.9),
        0 0 0 16px rgba(199,62,109,0.3);
}

.bio-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
    position: relative;
    padding: 2rem;
    background: rgba(255,248,225,0.5);
    border-radius: 20px;
    border-right: 4px solid var(--primary-gold);
}

/* Modern Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1rem;
}

.service-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,248,225,0.8) 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    overflow: visible;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.service-box:hover::before {
    opacity: 0.1;
}

/* Service Images with Modern Effects */
.service-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: block;
    margin-left: auto;
    margin-right: auto;
    /* הגדלה קטנה של התמונה הפנימית */
    transform: scale(1.05);
    /* הסרת המסגרת הלבנה */
    border: none;
    outline: none;
    background: transparent;
    /* וידוא שהתמונה בדיוק בעיגול */
    clip-path: circle(50% at center);
}

.service-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Modern Button Styling */
.details-button {
    display: inline-block;
    margin-top: auto;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.details-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.details-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.details-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Modern Form Styling */
.form-vertical {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.product-selector {
    margin-bottom: 1.5rem;
    position: relative;
}

.product-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-purple);
    font-size: 1.1rem;
}

.product-selector input,
.product-selector select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 15px;
    background: rgba(255,248,225,0.5);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--dark-text);
}

.product-selector input:focus,
.product-selector select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: white;
    box-shadow: 0 5px 20px rgba(212,175,55,0.2);
}

/* Select dropdown modern styling */
.product-selector select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' 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: left 15px center;
    background-size: 20px;
    padding-left: 45px;
    cursor: pointer;
}

/* Submit Button */
button[type="submit"] {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

button[type="submit"]::after {
    content: '←';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

button[type="submit"]:hover::after {
    opacity: 1;
    left: 30px;
}

/* Modern Footer */
footer {
    background: linear-gradient(135deg, #2C1810 0%, #4A148C 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    animation: footerGradient 3s linear infinite;
}

@keyframes footerGradient {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

footer p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-cream);
}

/* Social Links Modern */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255,255,255,0.2);
}

.social-links a:hover::before {
    opacity: 0.3;
}

.social-links img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.social-links a:hover img {
    transform: scale(1.2);
}

/* Inspiration Quote Modern */
.inspiration-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--deep-purple);
    text-align: center;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 800px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,248,225,0.8) 0%, rgba(255,255,255,0.9) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inspiration-quote::before,
.inspiration-quote::after {
    content: '"';
    font-size: 4rem;
    color: var(--primary-gold);
    position: absolute;
    opacity: 0.3;
}

.inspiration-quote::before {
    top: -10px;
    right: 20px;
}

.inspiration-quote::after {
    bottom: -30px;
    left: 20px;
    transform: rotate(180deg);
}

/* Loading Animation */
.page-animate-in {
    animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 1rem;
    }
    
    .service-box {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
    
    .service-icon-wrapper {
        top: -35px;
    }
    
    .bio-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bio-image {
        margin: 0 auto;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .section {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }
    
    .logo {
        width: 100px;
        height: 100px;
    }
    
    .inspiration-quote {
        font-size: 1.3rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-img {
        width: 130px;
        height: 130px;
        /* הגדלה קטנה של התמונה הפנימית גם במובייל */
        transform: scale(1.05);
        /* הסרת המסגרת הלבנה */
        border: none;
        outline: none;
        background: transparent;
        /* וידוא שהתמונה בדיוק בעיגול */
        clip-path: circle(50% at center);
    }
    
    .details-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .social-links a {
        width: 50px;
        height: 50px;
    }
    
    .social-links img {
        width: 25px;
        height: 25px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Colors */
::selection {
    background: var(--primary-gold);
    color: white;
}

::-moz-selection {
    background: var(--primary-gold);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-hover);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
*:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    body::before,
    body::after,
    .logo::before,
    .service-box::before,
    .details-button::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--light-cream);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 3px solid rgba(0,0,0,0.1);
            border-top-color: var(--primary-gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
            border-radius: 50%;
            animation: float-up linear infinite;
        }

        @keyframes float-up {
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }



        /* Modern Header */
        .main-header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .header-content {
            padding: 3rem 2rem;
        }

        .title-section {
            margin: 1.5rem 0;
        }

        /* Animated Elements */
        .animate-logo,
        .animate-title,
        .animate-subtitle,
        .animate-quote {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-logo.visible,
        .animate-title.visible,
        .animate-subtitle.visible,
        .animate-quote.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Header Wave */
        .header-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .header-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .header-wave .shape-fill {
            fill: var(--light-cream);
        }

        /* Modern Cards */
        .modern-card {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }    

        .modern-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            to { transform: rotate(360deg); }
        }

        /* Bio Stats */
        .bio-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(212,175,55,0.2);
        }

        .stat {
            text-align: center;
        }

        .stat i {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
            display: block;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--deep-purple);
        }

        .stat-label {
            display: block;
            font-size: 0.9rem;
            color: var(--dark-text);
            margin-top: 0.5rem;
        }

        /* Service Features */
        .service-features {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: right;
        }

        .service-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .service-features i {
            color: var(--primary-gold);
            font-size: 0.9rem;
        }

        /* Animated Services */
        .animate-service {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .animate-service.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Service Icon Wrapper */
        .service-icon-wrapper {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 10;
        }

        .service-icon {
            font-size: 1.5rem;
            color: white;
        }

        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, rgba(255,248,225,0.5) 0%, rgba(255,255,255,0.8) 100%);
            padding: 4rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .testimonials-carousel {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            height: 300px;
        }

        .testimonial-card {
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.5s ease;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-stars {
            color: var(--primary-gold);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .testimonial-text {
            font-size: 1.3rem;
            line-height: 1.8;
            color: var(--dark-text);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .author-name {
            font-weight: 600;
            color: var(--deep-purple);
        }

        .author-location {
            color: #666;
            font-size: 0.9rem;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-gold);
            transform: scale(1.5);
        }

        /* Modern Form */
        .modern-form {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .form-group {
            position: relative;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.8s ease;
        }

        .form-group.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: var(--deep-purple);
            font-weight: 600;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: none;
            background: transparent;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input,
        .form-group select {
            border-bottom: 2px solid rgba(212,175,55,0.3);
        }

        .form-group textarea {
            border: 2px solid rgba(212,175,55,0.3);
            border-radius: 8px;
            min-height: 100px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-bottom-color: var(--primary-gold);
        }

        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        /* Special styling for textarea to make the line closer */
        .form-group textarea {
            margin-bottom: 0;
            position: relative;
        }

        .form-group textarea + .form-line {
            display: none;
        }

        .form-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .form-group input:focus ~ .form-line,
        .form-group select:focus ~ .form-line {
            width: 100%;
        }

        /* Phone input container styling */
        .phone-input-container {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .phone-input-container select {
            flex: 0 0 auto;
            width: 80px;
            padding: 12px 8px;
            border: 2px solid transparent;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-family: inherit;
            color: var(--dark-text);
            transition: var(--transition);
            cursor: pointer;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .phone-input-container select:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        .phone-separator {
            color: var(--dark-text);
            font-size: 1.2rem;
            font-weight: 500;
            padding: 0 4px;
        }

        .phone-input-container input {
            flex: 1;
            min-width: 0;
            padding: 12px 16px;
            border: 2px solid transparent;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-family: inherit;
            color: var(--dark-text);
            transition: var(--transition);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .phone-input-container input:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
        }

        .phone-input-container input::placeholder {
            color: rgba(44, 24, 16, 0.5);
        }

        /* Mobile responsive for phone input */
        @media (max-width: 768px) {
            .phone-input-container {
                flex-direction: row;
                gap: 8px;
                align-items: center;
            }

            .phone-input-container select {
                width: 80px;
                min-width: 80px;
            }

            .phone-separator {
                display: inline;
            }
        }

        /* Submit Button */
        .submit-button {
            margin-top: 2rem;
            padding: 1.2rem 3rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            width: 100%;
            max-width: 300px;
            margin: 2rem auto 0;
        }



        .submit-button.loading .button-text {
            opacity: 0.7;
        }

        .submit-button.loading::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .submit-button.loading .button-text {
            opacity: 0;
        }

        .submit-button.loading::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .button-ripple {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            transform: scale(0);
            animation: ripple 0.6s ease-out;
        }

        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }

        /* Success Message */
        .success-message {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            background: white;
            padding: 2rem 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            text-align: center;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .success-message.show {
            transform: translate(-50%, -50%) scale(1);
        }

        .success-message i {
            font-size: 3rem;
            color: #4CAF50;
            margin-bottom: 1rem;
            display: block;
        }

        /* Error Toast */
        .error-toast {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #f44336;
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 1rem;
            transform: translateX(400px);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .error-toast.show {
            transform: translateX(0);
        }

        /* Modern Footer */
        .modern-footer {
            background: linear-gradient(135deg, #2C1810 0%, #4A148C 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            position: relative;
            overflow: hidden;
            margin-top: 5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--primary-gold);
        }

        .footer-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .footer-wave svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
            transform: rotateY(180deg);
        }

        .footer-wave .shape-fill {
            fill: var(--light-cream);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-credit {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .footer-credit i {
            color: var(--secondary-rose);
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Social Links Enhanced */
        .social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transform: scale(0);
            border-radius: 50%;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .social-link:hover {
            transform: translateY(-5px);
            color: white;
        }

        .social-link:hover::before {
            transform: scale(1);
        }

        .social-link.facebook:hover { background: #1877f2; }
        .social-link.instagram:hover { background: #E4405F; }
        .social-link.tiktok:hover { background: #000000; }
        .social-link.whatsapp:hover { background: #25D366; }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .title-decoration {
            position: relative;
            z-index: 1;
        }

        .title-decoration::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 15px;
            background: rgba(212,175,55,0.3);
            transform: skewY(-2deg);
            z-index: -1;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--deep-purple);
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .bio-stats {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .testimonial-card {
                padding: 1rem;
            }
            
            .testimonial-text {
                font-size: 1.1rem;
            }
        }

        /* Print Styles */
        @media print {
            .loading,
            .particles,
            .hero-section,
            .testimonials-section,
            .social-links,
            .footer-wave {
                display: none;
            }
        }