/* Reset & Base Styles */
:root {
    --color-black: #2B3338;
    /* Anthracite Gray */
    --color-dark-gray: #3F4750;
    --color-light-gray: #f4f4f4;
    --color-white: #ffffff;
    --color-accent: #2B3338;
    --color-orange: #FF5722;
    /* Anthracite accent */
    --font-main: 'Outfit', sans-serif;
    --spacing-container: 1200px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -1px;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--color-orange);
}

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-orange);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-black);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-desktop-only {
    display: none !important;
}

.btn-mobile-only {
    display: inline-block !important;
}

@media (min-width: 769px) {
    .btn-desktop-only {
        display: inline-block !important;
    }

    .btn-mobile-only {
        display: none !important;
    }
}

.highlight {
    background: linear-gradient(120deg, transparent 0%, transparent 60%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.dot {
    color: #666;
}

/* Romanian Flag */
.flag-ro {
    display: inline-block;
    width: 24px;
    height: 16px;
    background: linear-gradient(to right, #002B7F 33.33%, #FCD116 33.33%, #FCD116 66.66%, #CE1126 66.66%);
    vertical-align: middle;
    margin-right: 8px;
    margin-left: 0;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    font-weight: 700;
    font-size: 1.1rem;
    opacity: 1;
    transition: var(--transition);
}

.nav-links li a:hover {
    opacity: 1;
}

.nav-btn {
    padding: 10px 24px;
}

.nav-btn-text-desktop {
    display: none;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-btn-text-mobile {
    display: inline;
}

@media (min-width: 769px) {
    .nav-btn-text-desktop {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #000000;
        font-weight: 900;
    }

    .nav-btn-text-desktop::before {
        content: "📱";
        font-size: 1rem;
    }

    .nav-btn-text-mobile {
        display: none;
    }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 200px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #f8f8f8 0%, #ffffff 60%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-banner {
    width: 80vw;
    max-width: none;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    justify-content: center;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 12px;
}

.disclaimer {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 1000;
    color: #6b6a6a;
}

/* Services Grid */
.services {
    background-color: var(--color-light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--color-white);
    border: 1px solid #eee;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card:hover {
    border-color: var(--color-black);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    position: relative;
    z-index: 1;
}

/* Area Section (Inverted) */
.inverted {
    background-color: var(--color-black);
    color: var(--color-white);
}

.text-white {
    color: var(--color-white);
}

.sectors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    max-width: 900px;
    margin: 0 auto;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 30px;
    background-color: var(--color-light-gray);
    color: var(--color-dark-gray);
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 200px;
    text-decoration: none;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
    display: block;
}

.brand-cta {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    display: block;
    transition: var(--transition);
    opacity: 0.8;
}

.brand-item:hover {
    background-color: var(--color-white);
    border-color: var(--color-black);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.brand-item:hover .brand-cta {
    color: var(--color-black);
    transform: translateX(5px);
    opacity: 1;
}

.sector-item {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: var(--transition);
}

.sector-item:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.ilfov {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Trust Section */
.trust {
    background-color: var(--color-black);
    color: var(--color-white);
}

.trust .section-title {
    color: var(--color-white);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: center;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: inherit;
}

.trust .feature p {
    color: rgba(255, 255, 255, 0.7);
}

.feature p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-light-gray);
    text-align: center;
    padding: 100px 0;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.big-btn {
    font-size: 1.2rem;
    padding: 18px 40px;
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0;
    border-top: none;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding-top: 140px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    .hero-badges {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        width: 100vw;
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        max-width: none;
        position: static;
        transform: none;
        left: auto;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 40px 0;
        gap: 20px;
        border-bottom: 1px solid #eee;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
}

/* Schedule Section */
.program-section {
    background-color: var(--color-white);
}

.schedule-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.schedule-card {
    background: var(--color-light-gray);
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.highlight-card {
    background: var(--color-black);
    color: var(--color-white);
    border: none;
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.schedule-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.schedule-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-card .day-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-card .day-row .hours {
    color: var(--color-orange);
}

.badge-emergency {
    background-color: var(--color-orange);
    color: var(--color-white) !important;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 800;
}

.emergency-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 10px 0 20px;
}

.schedule-btn {
    width: 100%;
    margin-top: 10px;
}

/* WhatsApp Button */
#simple-chat-button--container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px;
}

#simple-chat-button--button {
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#simple-chat-button--button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#simple-chat-button--text {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

#simple-chat-button--container:hover #simple-chat-button--text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    #simple-chat-button--container {
        bottom: 20px;
        right: 20px;
    }

    #simple-chat-button--button {
        width: 50px;
        height: 50px;
    }

    #simple-chat-button--button img {
        width: 28px !important;
        height: 28px !important;
    }

    #simple-chat-button--text {
        display: none;
    }
}