/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b22a2a;
    --primary-light: #c43232;
    --primary-dark: #961e1e;
    --accent: #b22a2a;
    --accent-light: #c43232;
    --bg: #ffffff;
    --bg-alt: #faf5f5;
    --text: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --border: #e4e0e0;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-light);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.hero .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

.hero .btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.9rem;
    background: var(--primary);
    color: #fff !important;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--primary-light);
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 44px;
    width: auto;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-links a:not(.btn):not(.lang-switch)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:not(.btn):not(.lang-switch):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 6px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
}

.lang-switch {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--text-muted) !important;
    transition: all var(--transition);
}

.lang-switch:hover,
.lang-switch.active {
    color: var(--primary) !important;
    background: rgba(196,30,42,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    padding: 180px 0 100px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    max-width: 720px;
    text-align: center;
    margin: 0 auto;
    color: var(--text);
}

.hero-logo {
    display: block;
    height: 200px;
    width: auto;
    margin: 0 auto 36px;
    border-radius: var(--radius);
}

.hero-badge {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: var(--text-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
}

.highlight {
    color: var(--accent);
}

.hero .highlight {
    color: var(--accent);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 60px;
    background: var(--primary);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-badge {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 56px;
    color: var(--text);
}

.section-title-center {
    text-align: center;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(196,30,42,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-top: 16px;
}

.service-card ul li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    margin-right: 8px;
}

/* ===== SERVICES OVERVIEW (Homepage) ===== */
.services-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-overview-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.service-overview-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-overview-card .service-icon {
    margin: 0 auto 16px;
}

.service-overview-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-overview-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    max-width: 400px;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat-number {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-item {
    text-align: center;
    padding: 32px 24px;
}

.value-icon {
    color: var(--accent);
    margin-bottom: 16px;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.value-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== STEPS ===== */
.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 32px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 56px;
    font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2px;
}

.contact-item a {
    color: var(--text);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary);
}

.cta-section a {
    color: #fff;
}

.footer a {
    color: #aaa;
}

.footer a:hover {
    color: #fff;
}

.contact-hours {
    margin-top: 28px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-light);
    border: 1px solid var(--border);
}

.contact-form {
    background: var(--bg);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196,30,42,0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: #ccc;
    padding: 48px 0 32px;
}

.footer-content {
    text-align: center;
}

.footer .logo {
    color: #fff !important;
    justify-content: center;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    font-size: 0.8rem;
    color: #666;
    padding-top: 24px;
    border-top: 1px solid #333;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .services-grid,
    .services-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-image-placeholder {
        margin: 0 auto;
        max-width: 280px;
    }

    .about-stats {
        justify-content: center;
    }

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

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-links.open {
        display: flex;
    }

    .lang-switcher {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        padding-top: 8px;
        border-top: 1px solid var(--border);
    }

    .hero {
        padding: 130px 0 70px;
    }

    .page-header {
        padding: 120px 0 48px;
    }

    .section {
        padding: 70px 0;
    }

    .services-grid,
    .services-overview {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .step {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

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

    .cta-section {
        padding: 60px 0;
    }
}
