/* ============================================
   SAANSTEEL.COM – Main Stylesheet
   ============================================ */

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

:root {
    --primary: #23262b;
    --primary-dark: #16181c;
    --primary-light: #3a3f47;
    --accent: #BE3131;
    --accent-light: #E07A6E;
    --accent-bg: #FDF1F0;
    --text: #1a1a1e;
    --text-light: #6B7280;
    --bg: #ffffff;
    --bg-alt: #F7F7F8;
    --bg-dark: #16181c;
    --border: #E5E5E7;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(20, 20, 22, 0.08);
    --shadow-lg: 0 12px 48px rgba(20, 20, 22, 0.14);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.header--scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.header__logo-combined {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    border-radius: 1px;
}

.header__link:hover,
.header__link.active {
    color: var(--primary);
}

.header__link:hover::after,
.header__link.active::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__cta {
    background: var(--accent);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.header__cta:hover {
    background: #a32828;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(190, 49, 49, 0.3);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-switcher__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.lang-switcher__btn:hover {
    border-color: var(--accent);
    background: white;
}

.lang-switcher__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    min-width: 160px;
    z-index: 100;
}

.lang-switcher__dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-switcher__option {
    display: block;
    width: 100%;
    padding: 10px 16px;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.lang-switcher__option:hover,
.lang-switcher__option.active {
    background: var(--accent-bg);
    color: var(--accent);
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.header__burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
    opacity: 0;
}

.header__burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
}

.mobile-nav__link:hover {
    color: var(--accent);
}

.mobile-nav__lang {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mobile-nav__lang .lang-option {
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    color: var(--text);
}

.mobile-nav__lang .lang-option:hover,
.mobile-nav__lang .lang-option.active {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-bg);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 16, 18, 0.88) 0%, rgba(20, 21, 24, 0.82) 45%, rgba(22, 24, 28, 0.94) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
}

.hero__badge {
    display: inline-block;
    background: rgba(190, 49, 49, 0.18);
    color: #ef8b81;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(190, 49, 49, 0.35);
    animation: fadeInDown 0.8s ease-out;
}

.hero__title {
    font-size: clamp(2.1rem, 4.6vw, 3.6rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.15s both;
}

.hero__desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.45s both;
}

.hero__note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    animation: fadeInDown 0.8s ease-out 0.6s both;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.45);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn--primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 16px rgba(190, 49, 49, 0.28);
}

.btn--primary:hover {
    background: #a32828;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(190, 49, 49, 0.38);
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

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

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

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

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

.section--contact {
    background: var(--primary);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__header--left {
    text-align: left;
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__label--light {
    color: var(--accent-light);
}

.section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section__title--light {
    color: white;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section__subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

/* --- ABOUT --- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3.4;
}

/* --- SCOPE / SERVICE CARDS --- */
.services-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--accent-bg);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 26px;
    height: 26px;
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- CAPABILITIES (dark) --- */
.cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cap-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition);
}

.cap-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(190, 49, 49, 0.4);
    transform: translateY(-4px);
}

.cap-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: rgba(190, 49, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.cap-card__icon svg {
    width: 28px;
    height: 28px;
}

.cap-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.cap-card__machine {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* --- FEATURE (alternating image/text) --- */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature + .feature {
    margin-top: 80px;
}

.feature--reverse .feature__visual {
    order: 2;
}

.feature__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/4;
    transition: transform 0.6s ease;
}

.feature__visual:hover img {
    transform: scale(1.04);
}

.feature__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.feature__title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.25;
}

.feature__desc {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* --- INDUSTRIES / TAGS --- */
.tag-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.tag-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.tag-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* --- ADVANTAGES (dark grid, reuses provide pattern) --- */
.provide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.provide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
}

.provide-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(190, 49, 49, 0.35);
    transform: translateY(-4px);
}

.provide-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 16px;
    background: rgba(190, 49, 49, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.provide-card__icon svg {
    width: 30px;
    height: 30px;
}

.provide-card__title {
    font-size: 0.98rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

/* --- GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox__close {
    position: absolute;
    top: 20px; right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 20px;
    user-select: none;
}

.lightbox__nav:hover {
    opacity: 1;
}

.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    pointer-events: none;
}

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

.contact-people {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-person {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.contact-person__avatar {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.contact-person__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
}

.contact-person__role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
}

.contact-person__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-person__links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
}

.contact-person__links a:hover {
    color: white;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(190, 49, 49, 0.35);
}

.contact-method__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(190, 49, 49, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    flex-shrink: 0;
}

.contact-method__icon svg {
    width: 20px;
    height: 20px;
}

.contact-method__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-method__value {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.contact-form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-form-header p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg-alt);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(190, 49, 49, 0.1);
}

.form-success {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: #ECFDF5;
    color: #065F46;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: fadeInDown 0.4s ease-out;
}

.form-error {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: #FEF2F2;
    color: #991B1B;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-error.show {
    display: block;
    animation: fadeInDown 0.4s ease-out;
}

.form-captcha {
    display: flex;
    justify-content: center;
}

/* --- FOOTER --- */
.footer {
    background: var(--primary-dark);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px 40px;
}

.footer__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
    max-width: 360px;
}

.footer__links {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent-light);
}

.footer__bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(22, 24, 28, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    animation: cookieSlideUp 0.4s ease-out;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner__text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner__accept {
    min-height: 40px !important;
    padding: 8px 24px !important;
    font-size: 0.85rem !important;
}

.cookie-banner__reject {
    min-height: 40px !important;
    padding: 8px 24px !important;
    font-size: 0.85rem !important;
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.cookie-banner__reject:hover {
    border-color: #fff !important;
}

.cookie-banner__link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner__inner { flex-direction: column; text-align: center; }
    .cookie-banner__actions { justify-content: center; width: 100%; }
}

/* --- SCROLL ANIMATIONS --- */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

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

    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__grid,
    .feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__visual {
        order: -1;
    }

    .feature--reverse .feature__visual {
        order: -1;
    }

    .feature + .feature {
        margin-top: 56px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
        align-items: center;
    }

    .header__cta {
        display: none;
    }

    .header__actions {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .header__inner {
        height: 60px;
    }

    .header__logo-combined {
        height: 30px;
    }

    .lang-switcher__btn {
        min-height: 40px;
        min-width: 40px;
        padding: 4px 8px;
        font-size: 0.75rem;
    }

    .header__burger {
        min-width: 40px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section {
        padding: 70px 0;
    }

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

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

    .services-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .provide-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .tag-grid {
        gap: 10px;
    }

    .tag-pill {
        padding: 11px 18px;
        font-size: 0.88rem;
    }

    /* SEO: minimum font sizes for mobile readability (no text below 12px) */
    body { font-size: 16px; }
    .header__cta,
    .lang-switcher__option,
    .footer__copy,
    .footer__links a,
    .contact-method__label,
    .form-group label,
    .form-group input,
    .form-group textarea,
    .form-group select { font-size: 0.875rem; }

    /* SEO: minimum 48px touch targets for mobile */
    .btn { min-height: 48px; padding: 14px 28px; }
    .header__burger { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .lang-switcher__btn { min-height: 44px; min-width: 44px; padding: 4px 10px; }
    .lang-switcher__option { min-height: 48px; padding: 12px 16px; }
    .footer__links a { display: inline-flex; align-items: center; min-height: 48px; }
    .contact-method { min-height: 48px; padding: 12px; }
    a, button { min-height: 44px; }
    .form-group input,
    .form-group textarea,
    .form-group select { min-height: 48px; font-size: 16px; }
}

@media (max-width: 480px) {
    .cap-grid,
    .provide-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero__content {
        padding: 0 16px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
