/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- THEME COLORS --- */
:root {
    --primary-orange: #d14124;
    --dark-bg: #0b0b0b;
    --light-bg: #ffffff;
    --gray-text: #a0a0a0;
    --light-gray: #f7f7f7;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.logo-main span {
    font-weight: 700;
    color: var(--primary-orange);
}

.logo-sub {
    display: flex;
    align-items: center;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gray-text);
    margin-top: 2px;
}

.pulse-line {
    width: 30px;
    height: 12px;
    margin: 0 8px;
    stroke: var(--primary-orange);
    stroke-width: 2;
    fill: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.mobile-nav-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gray-text);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}
/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    position: relative;
}

.lang-switcher-btn {
    background: none;
    border: 1px solid var(--gray-text);
    color: var(--gray-text);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    min-width: 40px;
    justify-content: center;
}

.lang-switcher-btn:hover {
    color: white;
    border-color: white;
}

.lang-switcher-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    list-style: none;
    padding: 5px;
    display: none;
    min-width: 120px;
}

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

.lang-switcher-dropdown li a {
    display: block;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--gray-text);
    transition: all 0.3s; border-radius: 3px; } .lang-switcher-dropdown li a:hover, .lang-switcher-dropdown li a.active { background: var(--primary-orange); color: white; }

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 8% 0 8%;
    position: relative;
    background: linear-gradient(135deg, rgba(11, 11, 11, 1) 40%, rgba(209, 65, 36, 0.15) 100%);
}

.hero-content {
    max-width: 550px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-content h1 strong {
    font-weight: 700;
    color: var(--primary-orange);
}

.cta-btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 15px 35px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.cta-btn:hover {
    background-color: #b33218;
    transform: translateY(-2px);
}

.cta-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-footer-text {
    display: flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gray-text);
    text-transform: uppercase;
}

/* Hero Graphic Graphic Visual placeholder */
.hero-image-placeholder {
    position: absolute;
    right: 8%;
    top: 55%;
    transform: translateY(-50%);
    width: 450px;
    height: 550px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

/* Artificial generic waveform behind overlay */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(209, 65, 36, 0.05) 40px, rgba(209, 65, 36, 0.05) 41px);
    transform: skewX(-20deg);
    animation: waveMove 20s linear infinite;
}

@keyframes waveMove {
    0% {
        transform: translateX(0) skewX(-20deg);
    }

    100% {
        transform: translateX(-50%) skewX(-20deg);
    }
}

.hero-image-placeholder p {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray-text);
    z-index: 1;
    text-align: center;
    padding: 20px;
}

/* --- APPROACH SECTION (LIGHT BACKGROUND) --- */
.approach {
    background-color: var(--light-bg);
    color: #111111;
    padding: 100px 8%;
    text-align: center;
}

.section-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.approach .pulse-line {
    width: 60px;
    height: 25px;
}

/* --- ABOUT US SECTION --- */
.about-us-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: left;
}

.about-us-image {
    flex: 1;
    max-width: 350px;
}

.about-us-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 1 / 1.2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-us-content {
    flex: 1.5;
}

.about-us-content h3 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-us-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* --- WHAT IS IT SECTION --- */
.what-is-it-content {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.what-is-it-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefit-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.benefit-card h4 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.benefit-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- COMING SOON PLACEHOLDER --- */
.coming-soon-content {
    text-align: center;
    padding: 40px 0;
}
.coming-soon-content p {
    font-size: 16px;
    color: #777;
    letter-spacing: 1px;
}

/* --- CONTACT SECTION --- */
.contact-section {
    background-color: var(--dark-bg);
    color: #ffffff;
    padding: 100px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-section .section-title {
    color: #ffffff;
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.contact-item {
    text-align: center;
}
.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-text);
    margin-bottom: 15px;
}
.contact-item a {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    transition: color 0.3s;
}
.contact-item a:hover {
    color: var(--primary-orange);
}
.contact-item p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
}
.map-container {
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-container iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 968px) {
    header {
        padding: 20px 4%;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    body.nav-open .mobile-nav-toggle span {
        background: white;
    }

    body.nav-open .mobile-nav-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    body.nav-open .mobile-nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .mobile-nav-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    body.nav-open nav {
        transform: translateX(0);
    }
    nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    nav ul li a {
        font-size: 18px;
        letter-spacing: 3px;
    }
    /* Simplified for structural presentation */
    .hero {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding-top: 140px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image-placeholder {
        display: none;
    }

    .about-us-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }

    .about-us-image {
        max-width: 50%;
    }

    .cta-wrapper {
        justify-content: center;
    }

    .hero-footer-text {
        justify-content: center;
    }
}