:root {
            --color-cream: #FAF7F5;
            --color-blush: #F5E6E0;
            --color-blush-dark: #E8D5CE;
            --color-gold: #C9A962;
            --color-gold-light: #D4B872;
            --color-gold-dark: #A88B4A;
            --color-text: #4A4039;
            --color-text-light: #7A6E64;
            --color-white: #FFFFFF;
            --color-marble: #F0EBE8;
            
            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', Arial, sans-serif;
            
            --shadow-soft: 0 4px 20px rgba(169, 139, 74, 0.1);
            --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.2);
            
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            background-color: var(--color-cream);
            color: var(--color-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* ===== HEADER & NAVIGATION ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 247, 245, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            transition: var(--transition-smooth);
        }
        
        header.scrolled {
            box-shadow: var(--shadow-soft);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--color-gold);
            letter-spacing: 0.3em;
            text-decoration: none;
        }
        
        .nav-links {
            display: none;
            list-style: none;
            gap: 2.5rem;
        }

        .lang-switch {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .lang-switch a {
            color: var(--color-text);
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .lang-switch a:hover,
        .lang-switch a.active {
            color: var(--color-gold);
        }

        .lang-sep {
            color: var(--color-text-light);
        }
        
        .nav-links a {
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-text);
            text-decoration: none;
            position: relative;
            transition: var(--transition-smooth);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-gold);
            transition: var(--transition-smooth);
        }
        
        .nav-links a:hover {
            color: var(--color-gold);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hamburger Menu */
        .hamburger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        
        .hamburger span {
            width: 25px;
            height: 2px;
            background: var(--color-gold);
            transition: var(--transition-smooth);
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blush) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: var(--transition-smooth);
            z-index: 999;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-menu a {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--color-text);
            text-decoration: none;
            letter-spacing: 0.1em;
            transition: var(--transition-smooth);
        }
        
        .mobile-menu a:hover {
            color: var(--color-gold);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 1.5rem 4rem;
            background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-blush) 50%, var(--color-blush-dark) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: 10%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -30px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
        }
        
        .hero-badge {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 1.5rem;
            padding: 0.5rem 1.5rem;
            border: 1px solid var(--color-gold);
        }
        
        .hero h1 {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 300;
            line-height: 1.2;
            color: var(--color-text);
            margin-bottom: 1.5rem;
        }
        
        .hero h1 span {
            display: block;
            font-style: italic;
            color: var(--color-gold);
        }
        
        .hero p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            margin-bottom: 2.5rem;
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            text-decoration: none;
            transition: var(--transition-smooth);
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: var(--color-gold);
            color: var(--color-white);
        }
        
        .btn-primary:hover {
            background: var(--color-gold-dark);
            box-shadow: var(--shadow-gold);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--color-gold);
            border: 1px solid var(--color-gold);
            margin-left: 1rem;
        }
        
        .btn-outline:hover {
            background: var(--color-gold);
            color: var(--color-white);
        }
        
        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: center;
        }
        
        .hero-buttons .btn {
            width: 100%;
            max-width: 280px;
        }
        
        .hero-buttons .btn-outline {
            margin-left: 0;
        }
        
        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 5rem 1.5rem;
            background: var(--color-white);
            text-align: center;
        }
        
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 300;
            color: var(--color-text);
            margin-bottom: 1rem;
        }
        
        .section-title span {
            color: var(--color-gold);
            font-style: italic;
        }
        
        .section-subtitle {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 0.5rem;
        }
        
        .about-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .about p {
            font-size: 0.95rem;
            color: var(--color-text-light);
            font-weight: 300;
            line-height: 1.8;
            margin-top: 1.5rem;
        }
        
        .about-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-item {
            padding: 2rem 1.5rem;
            background: var(--color-cream);
            transition: var(--transition-smooth);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-soft);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-icon svg {
            width: 32px;
            height: 32px;
            stroke: var(--color-gold);
        }
        
        .feature-item h3 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--color-text);
            margin-bottom: 0.5rem;
        }
        
        .feature-item p {
            font-size: 0.85rem;
            color: var(--color-text-light);
            margin-top: 0;
        }
        
        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 5rem 1.5rem;
            background: linear-gradient(180deg, var(--color-blush) 0%, var(--color-cream) 100%);
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .service-card {
            background: var(--color-white);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition-smooth);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover {
            box-shadow: var(--shadow-gold);
            transform: translateY(-3px);
        }
        
        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }
        
        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--color-text);
        }
        
        .service-price {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--color-gold);
            font-weight: 500;
        }
        
        .service-card p {
            font-size: 0.85rem;
            color: var(--color-text-light);
            font-weight: 300;
        }
        
        .service-duration {
            font-size: 0.7rem;
            color: var(--color-gold);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-top: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        /* ===== GALLERY SECTION ===== */
        .gallery {
            padding: 5rem 1.5rem;
            background: var(--color-white);
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .gallery-item {
            aspect-ratio: 1;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(74, 64, 57, 0.8) 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay span {
            font-family: var(--font-heading);
            font-size: 1rem;
            color: var(--color-white);
            font-style: italic;
        }
        
        /* ===== TESTIMONIALS SECTION ===== */
        .testimonials {
            padding: 5rem 1.5rem;
            background: linear-gradient(135deg, var(--color-blush-dark) 0%, var(--color-blush) 100%);
            text-align: center;
        }
        
        .testimonial-content {
            max-width: 600px;
            margin: 2rem auto 0;
        }
        
        .testimonial-quote {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-style: italic;
            color: var(--color-text);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .testimonial-quote::before {
            content: '"';
            display: block;
            font-size: 4rem;
            color: var(--color-gold);
            line-height: 0.5;
            margin-bottom: 1rem;
        }
        
        .testimonial-author {
            font-size: 0.85rem;
            color: var(--color-gold);
            font-weight: 500;
            letter-spacing: 0.1em;
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 5rem 1.5rem;
            background: var(--color-cream);
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .contact-content {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: var(--color-white);
            transition: var(--transition-smooth);
        }
        
        .contact-item:hover {
            box-shadow: var(--shadow-soft);
        }
        
        .contact-item svg {
            width: 24px;
            height: 24px;
            stroke: var(--color-gold);
            flex-shrink: 0;
        }
        
        .contact-item-text h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 400;
            color: var(--color-text);
            margin-bottom: 0.25rem;
        }
        
        .contact-item-text p {
            font-size: 0.85rem;
            color: var(--color-text-light);
        }
        
        .contact-cta {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
        }
        
        .contact-cta p {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--color-white);
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .contact-cta .btn {
            background: var(--color-white);
            color: var(--color-gold);
        }
        
        .contact-cta .btn:hover {
            background: var(--color-cream);
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--color-text);
            color: var(--color-blush);
            padding: 3rem 1.5rem 1.5rem;
            text-align: center;
        }
        
        .footer-logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--color-gold);
            letter-spacing: 0.3em;
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--color-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
        }
        
        .footer-social a:hover {
            background: var(--color-gold);
        }
        
        .footer-social svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-gold);
            transition: var(--transition-smooth);
        }
        
        .footer-social a:hover svg {
            stroke: var(--color-text);
        }
        
        .footer-divider {
            width: 50px;
            height: 1px;
            background: var(--color-gold);
            margin: 0 auto 1.5rem;
        }
        
        .footer-copy {
            font-size: 0.75rem;
            color: var(--color-text-light);
            letter-spacing: 0.1em;
        }

        .footer-watermark {
            font-size: 0.65rem;
            color: var(--color-text-light);
            margin-top: 0.75rem;
        }

        .footer-watermark a {
            color: var(--color-gold);
            text-decoration: none;
        }

        .footer-watermark a:hover {
            text-decoration: underline;
        }

        /* ===== RTL SUPPORT ===== */
        [dir="rtl"] .nav-links {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .nav-links a::after {
            left: auto;
            right: 0;
        }

        [dir="rtl"] .service-header {
            flex-direction: row-reverse;
        }

        [dir="rtl"] .service-duration {
            flex-direction: row-reverse;
        }

        [dir="rtl"] {
            --font-heading: 'Assistant', sans-serif;
            --font-body: 'Assistant', sans-serif;
        }

        [dir="rtl"] .contact-item {
            flex-direction: row-reverse;
            text-align: right;
        }

        [dir="rtl"] .contact-item-text {
            text-align: right;
        }

        [dir="rtl"] .hero-buttons .btn-outline {
            margin-left: 0;
            margin-right: 0;
        }

        [dir="rtl"] .lang-switch {
            direction: ltr;
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* ===== RESPONSIVE STYLES ===== */
        @media (min-width: 640px) {
            .hero h1 {
                font-size: 4rem;
            }
            
            .hero-buttons {
                flex-direction: row;
                justify-content: center;
            }
            
            .hero-buttons .btn {
                width: auto;
            }
            
            .hero-buttons .btn-outline {
                margin-left: 1rem;
            }

            [dir="rtl"] .hero-buttons .btn-outline {
                margin-left: 0;
                margin-right: 1rem;
            }
            
            .about-features {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }
        }
        
        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }
            
            .nav-links {
                display: flex;
            }
            
            .hero h1 {
                font-size: 4.5rem;
            }
            
            .section-title {
                font-size: 2.8rem;
            }
        }
        
        @media (min-width: 1024px) {
            .hero {
                padding: 10rem 2rem 6rem;
            }
            
            .hero h1 {
                font-size: 5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .gallery-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
