:root {
    --primary-blue: #1e3a8a;
    --primary-fuchsia: #d946ef;
    --gradient-sela: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-fuchsia) 100%);
    --dark-bg: #1e293b;
    --light-text: #f8fafc;
    --muted-text: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    height: 65px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    background: var(--gradient-sela);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--light-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.hero h1 span {
    background: var(--gradient-sela);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-left: 10px;
}

.tagline {
    font-size: 2rem;
    font-weight: 600;
    background: var(--gradient-sela);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.25rem;
    color: var(--muted-text);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background: var(--gradient-sela);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 70, 239, 0.3);
}

.btn-secondary {
    border: 1px solid var(--glass-border);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background: var(--glass);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(217, 70, 239, 0.15), transparent 70%);
    z-index: 1;
}

/* Services */
.services {
    padding: 8rem 0;
    background: #0b1120;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--glass);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-fuchsia);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-body {
    padding: 2rem;
}

.service-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-body p {
    color: var(--muted-text);
}

/* About Us */
.about {
    padding: 8rem 0;
    background: #0f172a;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title.left {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--muted-text);
    margin-bottom: 1.5rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.sela-meaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.meaning-item.blue-side {
    background: rgba(30, 58, 170, 0.1);
    border-left: 4px solid var(--primary-blue);
}

.meaning-item.fuchsia-side {
    background: rgba(217, 70, 239, 0.1);
    border-left: 4px solid var(--primary-fuchsia);
}

.meaning-item {
    padding: 1.5rem;
    border-radius: 16px;
}

.meaning-item h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.meaning-item p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
}

.narrative {
    font-size: 1rem;
    font-style: italic;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.stat-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-fuchsia);
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-image img {
    width: 100%;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Additional Service (Featured) */
.service-additional {
    padding: 4rem 0;
    background: linear-gradient(to right, var(--dark-bg), rgba(30, 58, 170, 0.2));
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--glass);
    border-radius: 32px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    align-items: center;
    gap: 0;
}

.featured-img {
    height: 100%;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-body {
    padding: 4rem;
}

.featured-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-sela);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-body h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-body p {
    font-size: 1.1rem;
    color: var(--muted-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-tags span {
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--light-text);
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--light-text);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: right 0.5s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .lang-switcher .lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        margin-top: 1rem;
        text-align: center;
        transform: none !important;
    }

    .lang-switcher .lang-dropdown li hr {
        display: none;
    }

    .lang-switcher .lang-dropdown li a {
        padding: 0.5rem;
    }
}

/* General Responsive Fixes */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links ul {
        align-items: center;
    }
}

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

.portfolio-item {
    background: var(--glass);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.02);
}

.portfolio-img {
    height: 250px;
    padding: 1rem;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-info span {
    font-size: 0.8rem;
    color: var(--primary-fuchsia);
    font-weight: 700;
    text-transform: uppercase;
}

.portfolio-info h3 {
    margin: 0.5rem 0;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem;
    background: var(--glass);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    font-style: italic;
}

.testimonial-author {
    margin-top: 2rem;
    font-style: normal;
}

.testimonial-author strong {
    display: block;
    color: var(--light-text);
}

.testimonial-author span {
    color: var(--muted-text);
    font-size: 0.9rem;
}

/* Contact */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    background: var(--glass);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid var(--glass-border);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-fuchsia);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.btn-submit {
    background: var(--gradient-sela);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Footer Premium */
.footer {
    background: #0f172a;
    padding: 6rem 0 3rem;
    color: var(--light-text);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: var(--muted-text);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--gradient-sela);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 70, 239, 0.3);
    border-color: transparent;
}

.footer-nav h4, .footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-sela);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: var(--muted-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-fuchsia);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--muted-text);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    color: white;
    outline: none;
}

.newsletter-form button {
    background: var(--gradient-sela);
    color: white;
    border: none;
    width: 45px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin-bottom: 3rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--light-text);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-tagline {
        margin: 0 auto 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav h4::after, .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.footer-brand p {
    color: var(--muted-text);
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: var(--muted-text);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Language Switcher */
.lang-switcher {
    position: relative;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.current-lang {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--primary-fuchsia);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1e293b;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    list-style: none;
    padding: 1rem;
    display: none;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li {
    margin-bottom: 0.5rem;
}

.lang-dropdown a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    transition: color 0.3s ease;
}

.lang-dropdown a:hover {
    color: var(--primary-fuchsia);
}

.lang-dropdown hr {
    border: 0;
    border-top: 1px solid var(--glass-border);
    margin: 0.5rem 0;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero-actions { flex-direction: column; }
    .contact-wrapper { grid-template-columns: 1fr; }
}
