:root {
    --primary-color: #1B263B;
    /* Deep Navy */
    --secondary-color: #415A77;
    /* Lighter Navy */
    --accent-color: #C5A059;
    /* Gold/Bronze */
    --highlight-color: #EF4444;
    /* Red */
    --text-color: #1F2937;
    /* Dark Grey */
    --light-bg: #F3F4F6;
    /* Light Grey */
    --white: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Dynamic Themes */
body.theme-tr {
    --accent-color: #EF4444;
    /* Red */
    --highlight-color: #30D5C8;
    /* Turquoise */
    --primary-color: #1B263B;
    /* Navy */
}

body.theme-de {
    --accent-color: #FFCC00;
    /* Gold */
    --highlight-color: #000000;
    /* Black */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--secondary-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.lang-switch {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    font-weight: 600;
    align-items: center;
    background: #f1f5f9;
    padding: 5px 15px;
    border-radius: 20px;
}

.lang-switch a {
    color: var(--secondary-color);
    opacity: 0.7;
}

.lang-switch a:hover,
.lang-switch a.active {
    opacity: 1;
    color: var(--primary-color);
}

.lang-switch a.active {
    color: var(--accent-color);
}

.lang-separator {
    color: #CBD5E1;
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
    /* Subtle clean gradient */
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* Abstract Shape */
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: #4B5563;
    margin-bottom: 30px;
    padding: 0;
    border: none;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1s ease-out;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.hero-image:hover {
    transform: none;
}

.hero-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Features / Services */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 0;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    transition: transform 0.3s ease;
    box-shadow: none;
    position: static;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: none;
}

.feature-card::before {
    display: none;
}

.country-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: normal;
}

/* Success Stories */
.success-stories {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
    position: static;
}

.success-stories::after {
    display: none;
}

.success-stories h2 {
    color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: none;
}

.story-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.05);
}

.story-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Floating Buttons */
.float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    background-color: #25D366;
}

.mail-float {
    background-color: var(--primary-color);
}

/* Footer */
footer {
    background: #111827;
    color: #9CA3AF;
    padding: 60px 0 20px;
}

.footer-logo {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    display: block;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 0;
    padding-top: 20px;
    text-align: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-text p {
        border: none;
        padding: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: none;
    }

    /* Show when active */

    .feature-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .float-container {
        right: 20px;
        bottom: 20px;
    }
}