@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-dark: #070B19;
    --primary-navy: #0E162F;
    --primary-blue: #1A284F;
    --accent-gold: #C5A880;
    --accent-gold-rgb: 197, 168, 128;
    --accent-gold-hover: #D8B78F;
    --text-light: #F4F5F7;
    --text-muted: #A0A5B5;
    --text-dark: #1E2229;
    --text-dark-muted: #626875;
    --bg-light: #F8F9FB;
    --bg-white: #FFFFFF;
    --bg-card-dark: #141D3B;
    --border-color-dark: rgba(197, 168, 128, 0.15);
    --border-color-light: #E2E8F0;
    --font-headers: 'Montserrat', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--primary-dark);
}

p {
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(244, 245, 247, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(244, 245, 247, 0.05);
    border-color: var(--text-light);
    transform: translateY(-2px);
}

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

.btn-outline-gold:hover {
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
}

/* Scroll and Scrolled look */
header.scrolled {
    background-color: rgba(7, 11, 25, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 70px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

header.scrolled .nav-link {
    color: var(--text-light);
}

header.scrolled .lang-btn {
    color: var(--text-light);
    border-color: rgba(244, 245, 247, 0.2);
}

header.scrolled .logo-img {
    height: 35px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    transition: var(--transition-smooth);
}

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

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-headers);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(244, 245, 247, 0.2);
    color: var(--text-light);
    padding: 4px 8px;
    font-family: var(--font-headers);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
    min-width: 32px;
    text-align: center;
}

.lang-btn.active {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.lang-btn:hover:not(.active) {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(7, 11, 25, 0.95) 30%, rgba(14, 22, 47, 0.8) 100%), url('../assets/images/hero-bg.webp?v=202606051703');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-subtitle {
    font-family: var(--font-headers);
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    border-left: 2px solid var(--accent-gold);
    padding-left: 12px;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--bg-white);
    font-weight: 800;
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Section Title style */
.section-header {
    margin-bottom: 60px;
    position: relative;
}

.section-tag {
    font-family: var(--font-headers);
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-gold);
}

.section-header.text-left .section-title::after {
    left: 0;
    transform: none;
}

.section-desc {
    color: var(--text-dark-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* About Us Section */
.about {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.about-paragraph {
    margin-bottom: 20px;
    color: var(--text-dark-muted);
    font-size: 0.98rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
}

.stat-number {
    font-family: var(--font-headers);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark-muted);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-img-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-img {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 24px;
    border-radius: 4px;
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 15px 30px rgba(7, 11, 25, 0.25);
    z-index: 5;
    max-width: 180px;
}

.badge-years {
    font-family: var(--font-headers);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Quality Policy Sub-block */
.quality-policy {
    margin-top: 50px;
    background-color: var(--bg-light);
    border-radius: 4px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-top: 3px solid var(--accent-gold);
}

.quality-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 12px;
}

.quality-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
}

.quality-item {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: var(--text-dark-muted);
}

.quality-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Product Portfolio Section */
.products {
    background-color: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    padding: 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(14, 22, 47, 0.03);
    border: 1px solid rgba(14, 22, 47, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
}

.product-icon-wrapper svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.product-card p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 11, 25, 0.05);
    border-color: rgba(197, 168, 128, 0.3);
    background-color: var(--bg-white);
}

.product-card:hover::before {
    height: 100%;
}

.product-card:hover .product-icon-wrapper {
    background-color: var(--primary-navy);
    color: var(--accent-gold);
    border-color: var(--primary-navy);
}

/* Presence Map Section */
.presence {
    background-color: var(--bg-white);
}

.map-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.map-wrapper {
    position: relative;
    background-color: var(--bg-light);
    border-radius: 4px;
    padding: 30px;
    border: 1px solid var(--border-color-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.map-svg {
    width: 100%;
    height: auto;
    max-height: 480px; /* Make the map larger */
}

/* SVG Map Country Styling (Borders forced to scale nicely) */
.map-country {
    fill: rgba(14, 22, 47, 0.04) !important;
    stroke: rgba(14, 22, 47, 0.1) !important; /* Softened borders for non-active countries */
    stroke-width: 0.5px !important;
    vector-effect: non-scaling-stroke !important;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.map-country.active-market {
    fill: var(--primary-blue) !important;
    stroke: rgba(255, 255, 255, 0.4) !important; /* Softened borders for active countries */
    stroke-width: 0.8px !important;
}

.map-country.active-market:hover {
    fill: var(--accent-gold) !important;
    opacity: 0.95;
}

.map-country.selected {
    fill: var(--accent-gold) !important;
    stroke: rgba(255, 255, 255, 0.6) !important; /* Softened borders for selected countries */
}

/* Country name labels with high contrast */
.map-country-label {
    font-family: var(--font-headers);
    font-weight: 700;
    fill: #FFFFFF !important;
    opacity: 0.95 !important;
    letter-spacing: 0.05em;
    pointer-events: none;
    transition: fill var(--transition-smooth);
}

/* Dynamic contrast when a country is selected */
.map-country-label.selected {
    fill: var(--primary-navy) !important; /* Deep navy text on gold background for readability */
}

.map-legend {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 500;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-color.active {
    background-color: var(--primary-blue);
}

.legend-color.selected {
    background-color: var(--accent-gold);
}

.map-info-panel {
    background-color: var(--primary-navy);
    color: var(--text-light);
    padding: 40px;
    border-radius: 4px;
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(7, 11, 25, 0.15);
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.map-info-default {
    margin: auto 0;
    text-align: center;
}

.map-info-default svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    color: var(--accent-gold);
    opacity: 0.8;
}

.map-info-content {
    display: none;
}

.map-info-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.map-info-title {
    font-size: 1.6rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.2);
    padding-bottom: 10px;
}

.map-info-stats {
    list-style: none;
    margin-top: 20px;
}

.map-info-stats li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
}

.map-info-stats li span:first-child {
    color: var(--text-muted);
}

.map-info-stats li span:last-child {
    font-weight: 500;
}

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

/* Partners Section */
.partners {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
    padding: 80px 0;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.slider-track {
    display: flex;
    width: calc(240px * 10);
    animation: scrollTrack 30s linear infinite;
    gap: 40px;
}

.slider-track:hover {
    animation-play-state: paused;
}

.partner-logo-box {
    width: 200px;
    height: 90px;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.partner-logo-box:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.partner-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-240px * 5)); }
}

/* Contacts & Corporate Info Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* Form Styling */
.contact-form-container {
    background-color: var(--bg-light);
    border-radius: 4px;
    padding: 45px;
    border: 1px solid var(--border-color-light);
}

.contact-form-container h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

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

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color-light);
    background-color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-feedback {
    margin-top: 15px;
    font-size: 0.85rem;
    padding: 10px 15px;
    border-radius: 3px;
    display: none;
}

.form-feedback.success {
    background-color: #E6F4EA;
    color: #137333;
    border: 1px solid #CEEAD6;
}

.form-feedback.error {
    background-color: #FCE8E6;
    color: #C5221F;
    border: 1px solid #FAD2CF;
}

/* Corporate Info Card */
.corp-info-card {
    background-color: var(--primary-navy);
    color: var(--text-light);
    border-radius: 4px;
    padding: 45px;
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(7, 11, 25, 0.08);
}

.corp-info-card h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(244, 245, 247, 0.1);
    padding-bottom: 15px;
}

.compliance-badge {
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 15px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
}

.info-list {
    list-style: none;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.info-item-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-item-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.info-item-content h5 {
    color: var(--accent-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.info-item-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Styling */
footer {
    background-color: var(--primary-dark);
    color: var(--text-muted);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.footer-about p {
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-menu a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(244, 245, 247, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
}

.compliance-info {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.compliance-info strong {
    color: var(--accent-gold);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .map-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 30px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 70px 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-right {
        gap: 12px;
    }
    
    .lang-selector {
        gap: 4px;
    }
    
    .lang-btn {
        padding: 3px 5px;
        font-size: 0.7rem;
        min-width: 28px;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
        transition: var(--transition-smooth);
        z-index: 999;
        border-top: 1px solid rgba(244, 245, 247, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .form-group-row,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quality-list {
        grid-template-columns: 1fr;
    }
    
    .map-wrapper {
        min-height: unset !important;
        padding: 15px !important;
    }
    
    .map-legend {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }
    
    .map-info-panel {
        min-height: unset !important;
        padding: 30px 20px !important;
    }
}
