
        :root {
            --gold: #D4AF37;
            --navy: #0A2463;
            --cream: #F5F5F0;
            --charcoal: #2A2A2A;
            --light-gold: #F0E68C;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--cream);
            color: var(--charcoal);
            line-height: 1.6;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
        }
        
        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .mobile-menu-btn span {
            height: 3px;
            width: 25px;
            background: var(--gold);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 2rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        
        nav ul li a:hover {
            color: var(--gold);
            background: rgba(255,255,255,0.1);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.9)), url('https://images.unsplash.com/photo-1598866595752-82e6c2d0c6c8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            height: 70vh;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: 70px;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--gold);
            color: var(--navy);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--gold);
        }
        
        .btn:hover {
            background: transparent;
            color: var(--gold);
        }
        
        /* Content Sections */
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--navy);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gold);
        }
        
        /* Therapists Section */
        .therapists-section {
            background: var(--navy);
            color: white;
        }
        
        .therapists-section .section-title h2 {
            color: white;
        }
        
        .therapists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .therapist-card {
            text-align: center;
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s;
        }
        
        .therapist-card:hover {
            transform: translateY(-5px);
        }
        
        .therapist-card img {
            width: 100%;
            object-fit: cover;
            margin-bottom: 1rem;
            border-radius: 5px;
            border: 3px solid var(--gold);
        }
        
        .therapist-card h3 {
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .therapist-card .nationality {
            font-style: italic;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        
        .price-list {
            margin-top: 1rem;
            text-align: left;
        }
        
        .price-list h4 {
            color: var(--light-gold);
            margin-bottom: 0.5rem;
        }
        
        .price-list ul {
            list-style: none;
        }
        
        .price-list li {
            margin-bottom: 0.5rem;
            display: flex;
            justify-content: space-between;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-content {
            padding: 1.5rem;
        }
        
        .service-card h3 {
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        /* Content Section */
        .content-section {
            background: #f9f9f9;
        }
        
        .content-section .container {
            max-width: 800px;
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        /* Areas Section */
        .areas-section {
            background: var(--navy);
            color: white;
        }
        
        .areas-section .section-title h2 {
            color: white;
        }
        
        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }
        
        .area-item {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 5px;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        /* Location Highlight Section */
        .location-highlight {
            display: flex;
            align-items: center;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .location-text {
            flex: 1;
        }
        
        .location-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .location-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Special Services Section */
        .special-services {
            background: linear-gradient(135deg, #f9f9f9 0%, #e6e6e6 100%);
        }
        
        .special-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .special-service-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .special-service-card:hover {
            transform: translateY(-5px);
        }
        
        .special-service-card h3 {
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        .special-service-card p {
            margin-bottom: 1.5rem;
        }
        
        .special-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold);
        }
        
        /* Contact Drawer */
        .contact-drawer {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 1000;
        }
        
        .drawer-handle {
            width: 60px;
            height: 60px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: bounce 2s infinite, shine 3s infinite;
            border: none;
            color: var(--navy);
            font-size: 1.5rem;
        }
        
        .drawer-content {
            position: absolute;
            bottom: 70px;
            left: 0;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
            padding: 1rem;
            display: none;
            flex-direction: column;
            gap: 1rem;
            min-width: 200px;
        }
        
        .drawer-content.open {
            display: flex;
            animation: slideIn 0.3s forwards;
        }
        
        .contact-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            color: var(--charcoal);
            transition: background 0.3s;
            font-weight: 500;
        }
        
        .contact-btn:hover {
            background: #f0f0f0;
        }
        
        .whatsapp-btn {
            color: #25D366;
        }
        
        .telegram-btn {
            color: #0088cc;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            border: none;
            font-size: 1.2rem;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        /* Footer */
        footer {
            background: var(--charcoal);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        /* Animations */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        @keyframes shine {
            0% {
                box-shadow: 0 0 5px var(--gold);
            }
            50% {
                box-shadow: 0 0 20px var(--gold);
            }
            100% {
                box-shadow: 0 0 5px var(--gold);
            }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--navy);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                transition: left 0.3s;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 1rem 0;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .therapists-grid {
                grid-template-columns: 1fr;
            }
            
            .location-highlight {
                flex-direction: column;
                gap: 2rem;
            }
        }
