:root {
    --primary: #FF7B54;
    --primary-light: #FFB26B;
    --secondary: #2D334A;
    --bg: #F9F9FB;
    --text: #2D334A;
    --text-muted: #707793;
    --white: #FFFFFF;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 30px 60px rgba(255, 123, 84, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header & Logo */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text span {
    color: var(--primary);
}

/* Modern Language Selector */
.lang-selector {
    display: flex;
    gap: 0.75rem;
}

.lang-btn {
    border: 1px solid rgba(0,0,0,0.05);
    background: var(--white);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 123, 84, 0.2);
}

.lang-btn:hover:not(.active) {
    background: var(--white);
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 123, 84, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    letter-spacing: -2px;
}

p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 550px;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fadeIn 1s ease-out 0.2s both;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
}

.info-value a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-value a:hover {
    color: var(--primary);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 32px;
    animation: float 6s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    background: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.3;
}

.element-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.element-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    background: var(--primary);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: left;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(1deg); }
}

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

/* Responsive */
@media (max-width: 1100px) {
    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    h1 {
        font-size: 3.2rem;
    }

    p {
        margin: 0 auto 3rem;
    }

    .contact-info {
        align-items: center;
    }

    header {
        flex-direction: column;
        gap: 2rem;
    }

    footer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .lang-selector {
        flex-wrap: wrap;
        justify-content: center;
    }
}
