/* Bright Purple Theme - Light Mode */
:root {
    --bright-purple: #a855f7;
    --vibrant-purple: #8b5cf6;
    --soft-lavender: #e9d5ff;
    --electric-purple: #7c3aed;
    --light-lavender: #f5f3ff;
    --deep-violet: #6d28d9;
    --cream: #fafaf9;
    --ivory: #ffffff;
    --charcoal: #000000;
    --light-gray: #f8f7fc;
    --border-color: #ddd6fe;
    
    /* Background and text colors for light mode */
    --bg-primary: var(--ivory);
    --bg-secondary: var(--light-lavender);
    --bg-card: var(--ivory);
    --text-primary: var(--charcoal);
    --text-secondary: #333;
    --text-muted: #555;
    --border-theme: var(--border-color);
    --shadow-color: rgba(168, 85, 247, 0.1);
    --footer-bg: linear-gradient(135deg, var(--deep-violet) 0%, #4c1d95 100%);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-card: #161627;
    --text-primary: #f0f0f0;
    --text-secondary: #d0d0e0;
    --text-muted: #a0a0c0;
    --border-theme: #2d2d4d;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --footer-bg: linear-gradient(135deg, #1a0a2e 0%, #0d0419 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    font-weight: 400;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

/* Language Switcher - Top Left */
.language-switcher {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background: var(--bg-card);
    border: 2px solid var(--border-theme);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
    border-color: var(--bright-purple);
}

.lang-btn.active {
    background: var(--bright-purple);
    color: white;
    border-color: var(--electric-purple);
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: var(--bg-card);
    border: 2px solid var(--border-theme);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
}

.theme-toggle i {
    font-size: 1.5rem;
    color: var(--bright-purple);
}

/* Vibrant Header */
.simple-header {
    background: linear-gradient(135deg, var(--light-lavender) 0%, var(--soft-lavender) 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--bright-purple);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .simple-header {
    background: linear-gradient(135deg, #2a1b3d 0%, #1a1029 100%);
    border-bottom: 4px solid var(--electric-purple);
}

.simple-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M20,50 Q40,30 60,50 T100,50" stroke="%23a855f7" stroke-width="1" fill="none" opacity="0.2"/></svg>');
    opacity: 0.3;
}

.main-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.main-title span {
    color: var(--text-primary);
    font-weight: 800;
    position: relative;
}

.main-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--bright-purple), var(--electric-purple));
    border-radius: 2px;
}

.tagline {
    font-size: 1.4rem;
    color: var(--deep-violet);
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--border-color);
}

[data-theme="dark"] .tagline {
    background: rgba(30, 20, 50, 0.9);
    color: var(--soft-lavender);
    border: 2px solid var(--electric-purple);
}

/* Elegant Navigation */
.elegant-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(90deg, var(--light-lavender), var(--bg-primary));
    border-top: 2px solid var(--border-theme);
    border-bottom: 2px solid var(--border-theme);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px var(--shadow-color);
}

[data-theme="dark"] .elegant-nav {
    background: linear-gradient(90deg, #2a1b3d, var(--bg-primary));
}

.nav-item {
    color: var(--deep-violet);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.7rem 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

[data-theme="dark"] .nav-item {
    color: var(--soft-lavender);
}

.nav-item:hover {
    background: var(--bright-purple);
    color: white;
    transform: none;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

[data-theme="dark"] .section-title {
    color: var(--soft-lavender);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-purple), var(--electric-purple));
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.about-text p {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--bright-purple);
}

.about-image {
    background: var(--bg-card);
    height: 450px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 25px 50px var(--shadow-color);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--border-theme);
}

.logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: 30px;
    margin: 3rem 0;
    padding: 4rem;
    border: 2px solid var(--border-theme);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-box {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-color);
    border: 2px solid var(--border-theme);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--bright-purple), var(--electric-purple));
}

.service-box:hover {
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.2);
    border-color: var(--bright-purple);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--soft-lavender), var(--bg-card));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--electric-purple);
    font-size: 2.2rem;
    border: 3px solid var(--bright-purple);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.2);
}

.service-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-violet);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

[data-theme="dark"] .service-box h3 {
    color: var(--soft-lavender);
}

.service-box p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-box ul {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.service-box li {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    position: relative;
}

/* Locations Section */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3.5rem;
}

.location-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 2px solid var(--border-theme);
    transition: all 0.4s ease;
}

.location-card:hover {
    box-shadow: 0 30px 60px rgba(168, 85, 247, 0.25);
    border-color: var(--bright-purple);
}

.location-header {
    background: linear-gradient(135deg, var(--electric-purple), var(--bright-purple));
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.location-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-body {
    padding: 2.5rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.location-detail i {
    color: var(--electric-purple);
    margin-top: 0.3rem;
    min-width: 28px;
    font-size: 1.3rem;
}

.location-detail strong {
    color: var(--deep-violet);
}

[data-theme="dark"] .location-detail strong {
    color: var(--soft-lavender);
}

.location-detail p {
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(90deg, var(--electric-purple), var(--bright-purple));
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.map-btn:hover {
    background: linear-gradient(90deg, var(--bright-purple), var(--electric-purple));
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
    transform: none;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 5rem 2rem 3rem;
    text-align: center;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-item {
    text-align: left;
}

.footer-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--soft-lavender);
    font-weight: 700;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-contact:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-contact i {
    color: var(--soft-lavender);
    font-size: 1.2rem;
    min-width: 24px;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
}

/* Social Media Links */
.social-media {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--bright-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.tiktok {
    background: #000000;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #E1306C, #FD1D1D);
}

.social-link.tiktok:hover {
    background: #333333;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--soft-lavender);
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 2.5rem 0;
}

.copyright1 {
    font-size: 0.95rem;
    opacity: 0.7;
}

.copyright2 {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image {
        height: 350px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .elegant-nav {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-item {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    
    .services-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .service-box,
    .location-card {
        padding: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .services-section {
        padding: 3rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-item {
        text-align: center;
    }
    
    .footer-contact {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .theme-toggle,
    .language-switcher {
        top: 10px;
    }
    
    .theme-toggle {
        right: 10px;
        width: 45px;
        height: 45px;
    }
    
    .language-switcher {
        left: 10px;
    }
    
    .lang-btn {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--bright-purple), var(--electric-purple));
    border-radius: 6px;
    border: 3px solid var(--bg-secondary);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
