/* Optimized High-Performance Dark Theme CSS */
:root {
    --primary: #8b5cf6;
    --secondary: #6366f1;
    --accent: #ec4899;
    --pink: #ff6b9d;
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.4);
    --rose-gold: #f4c2c2;
    --dark-bg: #050505;
    --dark-surface: #0a0a0a;
    --dark-card: #111111;
    --dark-hover: #181818;
    --light: #f8fafc;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.8);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.9);
    --shadow-lg: 0 20px 80px rgba(0, 0, 0, 1);
    --glow: 0 0 30px rgba(139, 92, 246, 0.4);
    --glow-pink: 0 0 30px rgba(255, 107, 157, 0.4);
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    content-visibility: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 157, 0.05) 0%, transparent 40%);
}

/* Glassmorphism Effect */
.glass {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header - Merged with Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    animation: slideDown 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 15px 0;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.brand-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

/* Brand container and logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.site-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    fill: var(--pink);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.4));
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(255, 107, 157, 0.4);
    position: relative;
}

.contact-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.7);
    background: var(--accent);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon.phone {
    background: var(--primary);
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.telegram {
    background: #0088cc;
}

.contact-icon.email {
    background: #EA4335;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Navigation - Merged in Header */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.mobile-menu-toggle:hover {
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

@media (min-width: 1400px) {
    .nav-menu {
        gap: 30px;
    }
}

.nav-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--pink);
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    text-shadow: var(--glow);
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Section - Enhanced */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark-bg);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a192f; 
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: block; 
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 80px 60px;
    background: var(--dark-surface);
    border-radius: 40px;
    border: 1px solid rgba(255, 107, 157, 0.4);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    width: 100%;
}

/* Playground Section */
.playground-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1200px) {
    .playground-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.playground-card {
    background: var(--dark-card);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.playground-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.playground-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.playground-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: var(--shadow-md), 0 0 20px rgba(255, 107, 157, 0.2);
}

.playground-card h3 {
    color: var(--pink);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.hot-badge {
    background: #ff4d4d;
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Roster Section */
.roster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .roster-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .roster-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.roster-card {
    background: var(--dark-card);
    padding: 0; /* Remove padding to let image fill the top */
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden; /* Important for rounded corners with image */
    gap: 0;
}

.roster-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.roster-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.roster-card:hover {
    transform: scale(1.05);
    border-color: var(--pink);
    background: var(--dark-hover);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(139, 92, 246, 0.1);
}

.roster-card h3 {
    color: var(--pink);
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.roster-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.4;
}

.roster-card .tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roster-card .status {
    display: block;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 5px;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--pink);
    line-height: 1.1;
    letter-spacing: 1px;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 30px;
    color: var(--light);
    font-weight: 500;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {
    font-size: clamp(1.1rem, 1.8vw, 1.2rem);
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 55px;
    background: var(--pink);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.08);
    background: var(--accent);
    box-shadow: 0 15px 45px rgba(255, 107, 157, 0.7);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--pink);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--pink);
    letter-spacing: 0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: var(--dark-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--dark-card);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--pink);
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
    background: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    border-color: var(--primary);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-info p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* About Section Improvements */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    margin-bottom: 35px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--pink);
    letter-spacing: 0.5px;
}

.about-additional-content {
    background: var(--dark-card);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-lg);
}

.about-additional-content h3 {
    text-align: center;
    margin-bottom: 40px !important;
}

/* Testimonials Grid Desktop */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

@media (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--dark-card);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--dark-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--pink);
    display: block;
}

.stat-card p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--primary);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    transform: translateX(15px);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card a,
.contact-card p {
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--dark-surface);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h3 {
    color: var(--pink);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--pink);
    transform: translateX(3px);
}

.footer-links-grid {
    display: block !important; /* Override previous inline styles */
}

.footer-links-grid li {
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--dark-card);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.social-links a:hover {
    background: var(--pink);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-muted);
}

/* Floating Elements */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.telegram-float {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.telegram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Bottom Contact Bar */
.bottom-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    height: 70px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-contact-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: capitalize;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bottom-contact-bar a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.bottom-contact-bar a:hover::before {
    left: 100%;
}

.bottom-contact-bar .call-btn {
    background: #e53935;
}

.bottom-contact-bar .telegram-btn {
    background: #24A1DE;
}

.bottom-contact-bar .whatsapp-btn {
    background: #25D366;
}

.service-title-gold {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.service-content-white {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-subheader-white {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 60px 0 30px;
    text-align: left;
}

.service-text-block {
    margin-bottom: 40px;
}

.service-text-block p {
    margin-bottom: 20px;
}

/* Adjust layout for bottom bar */
body {
    padding-bottom: 60px;
}

@media (min-width: 769px) {
    .bottom-contact-bar {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
        padding: 40px 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0 20px;
        gap: 10px;
    }
    .brand-name {
        font-size: 1.3rem;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-surface);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        box-shadow: var(--shadow-lg);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-menu li a {
        padding: 15px;
        font-size: 1.1rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .about-content, .contact-content {
        grid-template-columns: 1fr;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-content {
        padding: 40px 20px;
        border-radius: 20px;
    }
    .section-header {
        margin-bottom: 50px;
    }
    .about-additional-content {
        padding: 30px 20px;
    }
}
