/* 
    Quantors — Global Design System
*/

:root {
    /* Colors */
    --bg-main: #0d0f12;
    --bg-sec: #15181d;
    --accent: #c36b37;
    --accent-rgb: 195, 107, 55;
    --text-main: #f3f3f3;
    --text-sec: #9ca3af;
    --white: #ffffff;
    
    /* Typography */
    --font-main: 'Qanelas', sans-serif;
    
    /* Layout */
    --container-width: 1320px;
    --header-height: 80px;
    --transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@font-face {
    font-family: 'Qanelas';
    src: url('../fonts/Qanelas-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Qanelas';
    src: url('../fonts/Qanelas-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Qanelas';
    src: url('../fonts/Qanelas-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Qanelas';
    src: url('../fonts/Qanelas-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

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

html {
    scroll-behavior: initial;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    outline: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Lucide Icons Styling */
[data-lucide] {
    stroke-width: 1.5px;
}

.service-icon, .adv-icon, .info-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.service-icon::before, .adv-icon::before, .info-icon::before {
    content: '';
    position: absolute;
    inset: -15px; /* Adjust size of the shape background */
    background: #000000;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    z-index: -1;
}

.info-icon::before {
    background: #16181d;
}

.service-icon {
    width: 42px;
    height: 42px;
    color: var(--accent);
    margin-bottom: 40px; /* Increased to account for background shape */
}

.adv-icon {
    width: 42px;
    height: 42px;
    color: var(--accent);
    margin-bottom: 35px; /* Increased to account for background shape */
}

.info-icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
    margin-bottom: 30px; /* Increased to account for background shape */
}

.mobile-only {
    display: none;
}

/* UI Elements — Polygon System */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 35px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: var(--transition);
}

.btn-border {
    position: absolute;
    inset: 0;
    background: var(--accent);
    z-index: -2;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
}

.btn-bg {
    position: absolute;
    inset: 1px;
    background: var(--bg-main);
    z-index: -1;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    transition: var(--transition);
}

.btn-primary .btn-bg {
    background: var(--accent);
}

.btn-primary:hover .btn-bg {
    background: var(--bg-main);
}

.btn-outline .btn-bg {
    background: var(--bg-main);
}

.btn-outline:hover .btn-bg {
    background: var(--accent);
}

.btn-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    transition: gap 0.3s ease;
}

.btn-arrow {
    width: 0;
    height: 18px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.btn:hover .btn-content {
    gap: 12px;
}

.btn:hover .btn-arrow {
    width: 18px;
    opacity: 1;
    transform: translateX(0);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Increased initial height for more air */
    z-index: 9999;
    transition: all 0.4s ease;
    background: transparent;
    display: flex;
    align-items: center;
}

.header.scrolled {
    background: rgba(13, 15, 18, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    height: 80px !important; /* Slightly taller scrolled state */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    height: 100%;
    width: 100%;
}

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

.logo img {
    height: 56px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    font-size: 18px;
    color: var(--text-sec);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-lang-item {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

@media (max-width: 900px) {
    .nav-lang-item {
        margin: 20px 0 0 0;
        justify-content: center;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
}

.hero-slider, .swiper-slide {
    height: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.hero-slide-1 .hero-bg { background-image: url('../img/hero/hero-1.jpg'); }
.hero-slide-2 .hero-bg { background-image: url('../img/hero/hero-2.jpg'); }

@media (min-width: 992px) {
    .hero-bg {
        transform: scale(1.1);
        transition: transform 8s ease-out;
    }
    .swiper-slide-active .hero-bg {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 18, 0.7);
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-overlay {
        background: linear-gradient(to right, rgba(13, 15, 18, 0.9) 0%, rgba(13, 15, 18, 0.4) 50%, rgba(13, 15, 18, 0.8) 100%);
    }
}

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

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    will-change: transform, opacity;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-sec);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    will-change: transform, opacity;
}

.hero-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    will-change: transform, opacity;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
}

.slider-arrow.prev:hover svg {
    transform: translateX(-3px);
}

.slider-arrow.next:hover svg {
    transform: translateX(3px);
}

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

.section-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.section-heading-shape {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-top: 10px;
    background: var(--accent);
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    position: relative;
}

.section-heading-shape::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--accent);
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-sec);
    max-width: 600px;
    border-left: 2px solid var(--accent);
    padding-left: 20px;
}

/* About Section */
.about {
    padding: 150px 0;
    background: var(--bg-main) !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content p {
    font-size: 16px; /* Exactly 16px as requested */
    color: var(--text-sec);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-more-content {
    display: none;
    overflow: hidden;
}

/* About Section Gallery */
.about-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-img {
    position: relative;
    overflow: hidden;
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    aspect-ratio: 1 / 1;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.about-slider .slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.about-slider .slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(13, 15, 18, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(195, 107, 55, 0.3);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    clip-path: polygon(15% 0%, 100% 0%, 100% 85%, 85% 100%, 0% 100%, 0% 15%);
}

.about-slider .slider-arrow:hover {
    background: var(--accent);
    color: var(--bg-main);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.about-slider .slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Categories Section */
.categories {
    padding: 150px 0;
    background: var(--bg-main) !important;
}

.category-group {
    margin-bottom: 100px;
}

/* Categories Tabs */
.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--bg-sec);
    color: var(--text-sec);
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.category-pane {
    display: none;
}

.category-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-desc {
    font-size: 16px;
    color: var(--text-sec);
    margin-bottom: 30px;
    max-width: 100% !important; /* Full width */
    line-height: 1.6;
}

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

.category-slider {
    overflow: visible;
}

.product-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    clip-path: polygon(0% 0%, 90% 0%, 100% 10%, 100% 100%, 10% 100%, 0% 90%);
    background: var(--bg-sec);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 15, 18, 0.6) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-name {
    display: none;
}

/* Services Section */
.services {
    padding: 150px 0;
    background: var(--bg-sec);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    background: #0d0f12; /* Dark slate background under text */
    overflow: hidden;
    clip-path: polygon(40px 0%, 100% 0%, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0% 100%, 0% 40px);
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Same border as adv-card */
    transition: var(--transition);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    overflow: hidden;
}

.service-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: var(--transition);
}

.service-card:hover .service-img {
    opacity: 1;
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    z-index: 2;
    background: #0d0f12; /* Dark slate background under text */
}

.service-icon {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    z-index: 5;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin: 0 !important;
}

.service-icon::before {
    content: '' !important;
    position: absolute !important;
    display: block !important;
    inset: -10px !important;
    background: rgba(13, 15, 18, 0.9) !important;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%) !important;
    z-index: -1 !important;
    border: none !important;
}

.service-title {
    position: relative;
    z-index: 2;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-desc {
    position: relative;
    z-index: 2;
    color: var(--text-sec);
    font-size: 16px; /* 16px font size */
    line-height: 1.6;
    opacity: 0.9;
}

.adv-text {
    color: var(--text-sec);
    font-size: 16px;
    line-height: 1.5;
}

.service-card:hover {
    border-color: var(--accent); /* Hover border outline color */
    transform: translateY(-5px); /* Hover translateY transition */
    box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.2);
}

/* Contacts Layout Updates */
.contact-info-vertical {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-vertical .info-card {
    width: 100%;
}

.map-container-fullwidth {
    margin-top: 80px;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.map-container-fullwidth iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(90%) hue-rotate(180deg) opacity(0.85); /* High-end dark map filter matching site style */
}

/* CTA Section */
.cta {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background: var(--bg-main);
}

.cta-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('../img/cta/cta.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    will-change: transform;
}

.cta-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    justify-content: flex-end;
}

.cta .section-header {
    margin-bottom: 0;
}

.category-pane .slider-controls {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: flex-end;
    margin-top: 30px;
}

.category-desc {
    margin-top: 30px;
}

/* Advantages Section */
.advantages {
    padding: 150px 0;
    background: var(--bg-sec) !important;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.adv-card {
    padding: 40px;
    background: var(--bg-main); /* Pop on bg-sec! */
    clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.adv-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.adv-title {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Contacts Section */
.contacts {
    padding: 150px 0 0 0;
    background: var(--bg-main) !important;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Max-width 70% for contacts info-card on desktop */
@media (min-width: 993px) {
    .contact-info-vertical .info-card {
        max-width: 70% !important;
    }
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--accent);
    pointer-events: none;
    z-index: 1;
}

.form-textarea ~ .form-icon {
    top: 22px; /* Slightly higher for better alignment */
    transform: none;
}

.form-input {
    width: 100%;
    height: 54px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px 0 55px;
    color: var(--white);
    font-family: inherit;
    font-size: 16px;
    clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px); /* Increased bevel to 10px */
    transition: var(--transition);
}

.captcha-wrapper .form-input {
    padding: 0 15px; /* Reset padding for captcha field */
}

.form-input:focus {
    border-color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
    outline: none;
}

.form-textarea {
    height: 150px;
    padding: 20px 20px 20px 55px;
    resize: none;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.captcha-img {
    height: 54px;
    background: var(--white);
    clip-path: polygon(5px 0%, 100% 0%, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0% 100%, 0% 5px);
}

.map-container {
    height: 100%;
    min-height: 400px;
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.refresh-captcha {
    color: var(--accent);
}

.captcha-input {
    width: 100px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.9) contrast(1.2);
}

.contact-info {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    padding: 25px;
    background: var(--bg-main);
    clip-path: polygon(4% 0%, 100% 0%, 100% 90%, 95% 100%, 0% 100%, 0% 10%);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.info-icon {
    color: var(--accent);
    margin-bottom: 10px;
}

.info-title {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-sec);
    margin-bottom: 5px;
}

.info-value {
    font-size: 20px;
    font-weight: 700;
}

/* Footer */
.footer {
    padding: 100px 0 50px;
    background: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

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

.footer-text {
    color: var(--text-sec);
    max-width: 400px;
}

.section-heading-shape.shape-sm {
    width: 15px;
    height: 15px;
    margin-top: 2px;
}

.section-heading-shape.shape-sm::after {
    inset: -3px;
    filter: blur(5px);
}

.footer-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-nav h4 {
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 1.2;
}

.footer-links {
    display: grid;
    gap: 15px;
}

.footer-links a {
    color: var(--text-sec);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact-info {
    display: grid;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-sec);
    letter-spacing: 1px;
}

.footer-contact-value {
    font-size: 16px;
    font-weight: 500;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-sec);
    font-size: 16px;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

/* Floating Ambient Elements */
.ambient-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 3; /* Placed above solid section backgrounds (z-index 2) to render grid overlay */
}

.ambient-shape {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: -1;
}

.shape-1 { top: 10%; left: -100px; }
.shape-2 { bottom: 10%; right: -100px; }

/* Global Animations (animations.css) */

/* Bottom SEO Section */
.seo-section {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
}

.seo-section .section-title {
    color: rgb(243, 243, 243) !important;
}

.seo-content {
    max-width: 100% !important; /* Full width */
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-sec);
}

.seo-content p {
    margin-bottom: 20px;
}

.seo-content strong {
    color: var(--accent);
    font-weight: 700;
}

.seo-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

#seo-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px; /* Same font-size as nav-link */
    font-weight: 500; /* Same font-weight as nav-link */
    margin-right: 15px;
}

.lang-link {
    color: var(--text-sec);
    text-decoration: none;
    transition: var(--transition);
}

.lang-link:hover, .lang-link.active {
    color: var(--accent);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-info .lang-switcher {
    font-size: 16px; /* Same size as footer text */
    font-weight: 500;
}

.mobile-lang-switcher {
    display: none !important;
}

.nav-phone-item {
    display: none !important;
}


