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

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

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

:root {
    --primary-color: #d09e39;
    --primary-hover: #a47c2c;
    --fab-accent-color: var(--primary-color);
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #555;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-dark: rgba(30, 41, 59, 0.95);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --card-title-size: 1.4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-decoration: none !important;
}

button, input, select, textarea {
    font-family: inherit;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

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

body {
    font-family: 'Mont', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.bg-gradient { background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%); }
.bg-light-gradient { background: linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 100%); }

.section__header { margin-bottom: 60px; }
.section__title { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; line-height: 1.1; opacity: 0; transform: translateX(-50px); }
.section__header.animated .section__title { animation: slideInLeft 0.8s forwards; }
.section__description { font-size: 1.25rem; color: var(--text-muted); border-left: 4px solid var(--primary-color); padding-left: 20px; }

@keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } }

/* Buttons - Absolutely Uniform */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    position: relative;
    gap: 15px;
    transition: var(--transition);
}

.header__btn {
    padding: 13px 35px;
}

.btn--accent { background: var(--primary-color); color: var(--white); }
.btn--accent:hover { box-shadow: 0 10px 25px rgba(208, 158, 57, 0.4); transform: translateY(-2px); color: var(--white); }
.btn__arrow { 
    transition: transform 0.3s ease; 
    margin-top: -1px;
    position: relative;
    top: 1px;
}
.btn:hover .btn__arrow { transform: translateX(8px); }
.btn--full { width: 100%; }

/* Header */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 25px 0; transition: var(--transition); }
.header.scrolled { background: var(--glass); backdrop-filter: blur(15px); padding: 10px 0; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); }
.header__inner { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 60px !important; width: auto; transition: opacity 0.3s ease; }
.logo__img--black { display: none; }
.header.scrolled .logo__img--black { display: block; }
.header.scrolled .logo__img--white { display: none; }
.nav__list { display: flex; gap: 30px; align-items: center; }
.nav__list li { display: flex; align-items: center; }
.nav__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--white); /* White markers on hero */
    margin-right: 10px;
    transition: background-color 0.3s ease;
}
.header.scrolled .nav__list li::before {
    background-color: var(--primary-color); /* Primary markers on scroll */
}
.nav__link { font-weight: 700; font-size: 17px; position: relative; padding: 5px 0; color: var(--white); transition: color 0.3s ease; }
.header.scrolled .nav__link { color: var(--text-dark); }
.nav__link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary-color); transition: var(--transition); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 30px; margin-top: -5px; }

.menu-toggle { display: none; grid-template-columns: repeat(2, 1fr); gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 1001; position: relative; }
.menu-toggle__square { width: 12px; height: 12px; border: 2px solid var(--white); transition: var(--transition); }
.header.scrolled .menu-toggle__square { border-color: #d09e39; }

/* Hero */
.hero { height: 100vh; position: relative; overflow: hidden; }
.hero__slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; align-items: center;
    opacity: 0; transition: opacity 1s ease-in-out; z-index: 1;
}

/* New Background Layer for Zoom */
.hero__slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero__slide::after { 
    content: ''; 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%); 
    z-index: 0;
}

.hero__slide.active { 
    opacity: 1; 
    z-index: 2; 
}

.hero__slide.active .hero__slide-bg {
    animation: slowZoom 20s linear infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.hero__content { position: relative; z-index: 3; max-width: 900px; color: var(--white); text-align: left; }
.hero__title { font-size: 4rem; font-weight: 700; line-height: 1.1; margin-bottom: 60px; }
.hero__subtitle { font-size: 1.4rem; margin-bottom: 40px; max-width: 900px; }

.hero__nav { position: absolute; bottom: 50px; right: 60px; display: flex; gap: 15px; z-index: 10; }
.hero__nav-btn { width: 60px; height: 60px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); transition: var(--transition); }
.hero__nav-btn:hover { background: var(--primary-color); border-color: var(--primary-color); }

/* About */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.about__content p { font-size: 1.15rem; margin-bottom: 20px; color: var(--text-muted); }
.about__list { display: grid; gap: 12px; margin-top: 30px; }
.about__list li { display: flex; align-items: center; gap: 15px; font-weight: 700; font-size: 1.15rem; }
.list-icon { width: 32px; height: 32px; background: var(--primary-color); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* About Slider Styles */
.about__slider-container {
    position: relative;
    height: 780px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}
.about-slider {
    width: 100%;
    height: 100%;
}
.about-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition);
}
.slider-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}
.about-slider-prev {
    left: 20px;
}
.about-slider-next {
    right: 20px;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn--white {
    background: var(--white);
    color: var(--text-dark);
}

.btn--white:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(208, 158, 57, 0.4);
    transform: translateY(-2px);
}

/* Products */
.products__tabs { display: grid; grid-template-columns: 350px 1fr; gap: 50px; }
.products__tab { display: flex; align-items: center; gap: 20px; padding: 25px; background: var(--white); border: 1px solid rgba(0,0,0,0.05); text-align: left; cursor: pointer; transition: var(--transition); width: 100%; color: var(--text-dark); }
.products__tab.active { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }
.products__tab.active i { color: var(--white); }
.products__tab h3 { font-size: 1.125rem; font-weight: 700; }
.products__tab i { font-size: 22px !important; }

.products__grid-wrapper { overflow: hidden;}
.products__grid { display: flex; gap: 20px; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.product-card { flex: 0 0 calc((100% - 40px) / 3); background: var(--white); aspect-ratio: 1; cursor: pointer; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05); }
.product-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease; 
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-select: none;
}
.product-card:hover img { transform: scale(1.1); }

.products__footer { display: flex; justify-content: space-between; align-items: center; margin-top: 30px; gap: 30px; }
.products__active-desc { font-size: 16px; color: var(--text-muted); flex: 1; }
.products__carousel-controls { display: flex; gap: 15px; }
.carousel-btn {
    width: 60px;
    height: 60px;
    background: rgba(30, 41, 59, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 1.5rem;
}
.carousel-btn:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Drawing Border Logic */
.advantage-item::before, .advantage-item::after, .service-card::before, .service-card::after, .contact-card-horiz::before, .contact-card-horiz::after { content: ''; position: absolute; width: 0; height: 0; border: 2px solid transparent; box-sizing: border-box; z-index: 5; }
.advantage-item::before, .service-card::before, .contact-card-horiz::before { top: 0; left: 0; }
.advantage-item::after, .service-card::after, .contact-card-horiz::after { bottom: 0; right: 0; }
.advantage-item:hover::before, .service-card:hover::before, .contact-card-horiz:hover::before { width: 100%; height: 100%; border-top-color: var(--primary-color); border-right-color: var(--primary-color); transition: width 0.2s, height 0.2s 0.2s; }
.advantage-item:hover::after, .service-card:hover::after, .contact-card-horiz:hover::after { width: 100%; height: 100%; border-bottom-color: var(--primary-color); border-left-color: var(--primary-color); transition: border-bottom-color 0s 0.4s, width 0.2s 0.4s, height 0.2s 0.6s; }

/* Advantages */
.advantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.advantage-item { display: flex; flex-direction: column; gap: 20px; padding: 35px; background: var(--white); border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); position: relative; }
.advantage-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.advantage-item__icon { width: 60px; height: 60px; background: var(--primary-color); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.advantage-item h3 { font-size: var(--card-title-size); }

/* Services */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { background: var(--white); position: relative; border: 1px solid rgba(0,0,0,0.05); transition: var(--transition); height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.service-card__top { height: 300px; overflow: hidden; }
.service-card__top img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 25px; }
.service-card__header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.service-card__icon { width: 44px; height: 44px; background: var(--primary-color); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card__icon i { font-size: 22px; }
.service-card h3 { font-size: var(--card-title-size); font-weight: 700; line-height: 1.2; }

/* CTA */
.cta { background-size: cover; background-position: center; background-attachment: fixed; padding: 100px 0; position: relative; }
.cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.45); }
.cta__content-wrapper { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 60px; color: var(--white); }
.cta__content { max-width: 900px; }
.cta__title { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.1; }
.cta__text { font-size: 1.2rem; opacity: 0.9; }

/* Contacts */
.contacts__grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: flex-start; }
.contacts__info { display: grid; gap: 20px; }
.contact-card-horiz { 
    display: flex !important; 
    flex-direction: row !important; 
    align-items: center !important; 
    gap: 30px !important; 
    padding: 25px 35px !important; 
    background: var(--white); 
    border: 1px solid rgba(0,0,0,0.05); 
    min-width: 500px; /* Increased PC min-width */
    transition: var(--transition); 
    position: relative; 
}
.contact-card-horiz .advantage-item__icon { width: 55px !important; height: 55px !important; flex-shrink: 0; }
.contact-card-horiz .advantage-item__content { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.contact-card-horiz h3 { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.contact-card-horiz p, .contact-card-horiz a { 
    font-size: var(--card-title-size); 
    font-weight: 700; 
    color: var(--text-dark); 
    margin: 0;
    word-break: break-all;
    transition: var(--transition);
}
a.contact-card-horiz {
    text-decoration: none;
}
a.contact-card-horiz:hover p {
    color: var(--primary-color);
}


.contacts__form-wrapper { background: var(--white); padding: 45px; box-shadow: 0 40px 100px rgba(0,0,0,0.05); margin-left: 250px; border: 1px solid rgba(0,0,0,0.05); }
.contact-form { display: grid; gap: 15px; }
.form-group input, .form-group textarea { width: 100%; padding: 16px; border: 1px solid #e2e8f0; background: #f8fafc; outline: none; font-size: 16px; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); background: var(--white); }
.captcha-group { display: flex; align-items: center; gap: 15px; }
.captcha-box { background: var(--bg-light); padding: 0 20px; height: 52px; width: 220px; display: flex; align-items: center; justify-content: space-between; gap: 10px; font-weight: 700; border: 1px solid #e2e8f0; }
#refreshCaptcha { background: none; border: 0; cursor: pointer; color: var(--primary-color); }

/* Footer */
.footer { background: #313133; color: var(--white); padding: 80px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer__logo img { height: 60px; margin-bottom: 25px; }
.footer__about { padding-right: 50px; color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.6; }
.footer__title { font-size: 1.1rem; margin-bottom: 25px; font-weight: 700; }
.footer__menu { margin-left: 0; list-style: none; }
.footer__menu li { 
    margin-bottom: 18px; 
    position: relative; 
    padding-left: 20px; 
}
.footer__menu li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    opacity: 0.5;
}
.footer__menu a { color: rgba(255,255,255,0.85); transition: var(--transition); display: inline-block; }
.footer__menu a:hover { color: var(--white); padding-left: 5px; }
.footer__contacts li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.footer__icon-box { width: 36px; height: 36px; background: rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid rgba(255, 255, 255, 0.2); }
.footer__icon-box i { width: 16px !important; }
.footer__bottom { text-align: center; font-size: 16px; }

/* Scroll to Top */
.scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--text-dark); color: var(--white); border: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99; }
.scroll-to-top.visible { opacity: 1; visibility: visible; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    padding: 40px;
    align-items: center;
    justify-content: center;
}
.modal__content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.modal__close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 2002;
}
.modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
}
.modal__nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.modal__nav.prev { left: 20px; }
.modal__nav.next { right: 20px; }
@media (max-width: 768px) {
    .modal__nav { width: 40px; height: 40px; }
    .modal__nav.prev { left: 10px; }
    .modal__nav.next { right: 10px; }
    .modal { padding: 40px 10px; }
}

/* Mobile Menu */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--primary-color); z-index: 999;
    display: none; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.4s ease;
}
.menu-overlay.active { display: flex; opacity: 1; }
.menu-overlay .nav__list { flex-direction: column; align-items: center; gap: 30px; }
.menu-overlay .nav__list li { display: flex; align-items: center; }
.menu-overlay .nav__list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: var(--white);
    margin-right: 15px;
    opacity: 0.7;
}
.menu-overlay .nav__link { font-size: 1.5rem; color: var(--white); font-weight: 700; }

.menu-overlay__logo {
    position: absolute;
    top: 25px;
    left: 25px;
}

.menu-overlay__logo img {
    height: 35px;
    width: auto;
}

/* Menu Toggle Animation - Final Fix */
.menu-toggle {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
}

.menu-toggle.active {
    margin-top: 10px;
}

.menu-toggle.active .menu-toggle__square {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    border: none;
    margin: 0;
}

.menu-toggle.active .menu-toggle__square:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.active .menu-toggle__square:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle.active .menu-toggle__square:nth-child(2),
.menu-toggle.active .menu-toggle__square:nth-child(3) {
    display: none;
}

.menu-toggle.active + .logo, 
.menu-toggle.active ~ .logo,
body.no-scroll .header .logo { 
    opacity: 0; 
    pointer-events: none; 
}

body.no-scroll .header.scrolled {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero__title { font-size: 3.5rem; }
    .products__tabs { grid-template-columns: 1fr; }
    .product-card { flex: 0 0 calc((100% - 20px) / 2); }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .contacts__grid { grid-template-columns: 1fr; }
    .contacts__form-wrapper { margin-left: 0; }
    .contact-card-horiz { min-width: 100%; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header { padding: 15px 0; }
    .logo img { height: 50px !important; }
    .mobile-lang-switcher { margin-top: 8px !important; }
    .mobile-lang-switcher .lang-link { font-size: 18px !important; }
    .nav { display: none; }
    .menu-toggle { display: grid; }
    .header__btn { display: none; }
    
    .section { padding: 60px 0; }
    .section__title { font-size: 2.2rem; line-height: 1.2; }
    .section__description { font-size: 1.1rem; }
    
    #about { padding-bottom: 20px; }
    
    .hero__title { font-size: 2.5rem; line-height: 1.2; }
    .hero__subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .hero__buttons { flex-direction: column; width: 100%; gap: 15px; }
    .hero__btn { width: 100%; }
    .hero__nav { bottom: 30px; right: 20px; }
    
    .about__grid { grid-template-columns: 1fr; gap: 40px; }
    .about__list li { font-size: 1rem; }
    .about__images { height: 450px; position: relative; width: 100%; margin-top: 50px; }
    .about__img-wrapper--1 { width: 85%; height: 70%; transform: none !important; }
    .about__img-wrapper--2 { width: 70%; height: 50%; bottom: 0; left: 0; transform: none !important; }
    
    .product-card { flex: 0 0 100%; }
    .product-card:hover img { transform: none; }
    .products__footer { flex-direction: column-reverse; align-items: flex-start; gap: 20px; }
    
    .advantages__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    
    .cta { background-attachment: scroll; }
    .cta__content-wrapper { flex-direction: column; text-align: center; gap: 30px; }
    .cta__title { font-size: 2.2rem; }
    
    .contacts__form-wrapper { padding: 30px 20px; }
    .contact-card-horiz { padding: 15px 20px !important; }
    .contact-card-horiz p, .contact-card-horiz a { font-size: 1.1rem; }

    .footer__grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__about { padding-right: 0; }
}

/* Custom Language and City Switchers styled for Dorgrand */
.lang-switcher, .city-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
}
.lang-link, .city-link {
    color: var(--white);
    transition: color 0.3s ease;
    opacity: 0.7;
    text-decoration: none !important;
}
.lang-link:hover, .city-link:hover, .lang-link.active, .city-link.active {
    color: var(--primary-color) !important;
    opacity: 1;
}
.lang-separator, .city-separator {
    color: rgba(255, 255, 255, 0.3);
}
.header.scrolled .lang-link, .header.scrolled .city-link {
    color: var(--text-dark);
}
.header.scrolled .lang-link:hover, .header.scrolled .city-link:hover, .header.scrolled .lang-link.active, .header.scrolled .city-link.active {
    color: var(--primary-color) !important;
}
.header.scrolled .lang-separator, .header.scrolled .city-separator {
    color: rgba(0, 0, 0, 0.15);
}
.nav-lang-item {
    margin-left: 20px;
}
.city-switcher {
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}
.header.scrolled .city-switcher {
    border-left-color: rgba(0, 0, 0, 0.15);
}
.mobile-lang-switcher, .mobile-city-switcher {
    display: none;
}
@media (max-width: 992px) {
    .nav-lang-item, .city-switcher {
        display: none;
    }
    .mobile-lang-switcher, .mobile-city-switcher {
        display: inline-flex;
    }
}

/* Custom styling for Bottom SEO Section as requested */
.seo-section .section__header {
    max-width: none;
    width: 100%;
    margin-bottom: 30px !important;
}
.seo-section .section__title {
    font-size: 2.5rem;
}

/* Custom sizes for general copy and descriptions as requested */
.about__content p,
.service-card p,
.seo-content p,
.seo-section p {
    font-size: 16px !important;
}

/* Custom sizes for icons in Advantages, Services and Contacts */
.advantage-item__icon i,
.service-card__icon i {
    font-size: 22px !important;
}

/* Grayscale styling for Google Maps as requested (height: 620px, cropped top/bottom by 110px) */
.map-section {
    width: 100%;
    height: 400px; /* 620px - 110px top - 110px bottom */
    overflow: hidden;
    position: relative;
    line-height: 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.map-section iframe {
    width: 100% !important;
    height: 740px !important; /* full map height */
    margin-top: -110px !important; /* crop top 110px */
    filter: grayscale(100%) !important;
    -webkit-filter: grayscale(100%) !important;
}

/* Captcha Refresh Icon Size */
#refreshCaptcha i {
    font-size: 22px !important;
}

/* Spacing between paragraphs in Bottom SEO Section as requested */
.seo-content p, .seo-section p {
    margin-bottom: 18px !important;
}
.seo-content p:last-child, .seo-section p:last-child {
    margin-bottom: 0 !important;
}

/* Footer links hover styling as requested (gold on dark, black on copyright) */
.footer a {
    transition: var(--transition);
}
.footer a:hover {
    color: var(--primary-color) !important;
}
.footer__bottom a:hover,
.footer-city-links a:hover {
    color: #000000 !important;
}

/* Active language in mobile overlay menu as requested */
.menu-overlay .lang-link.active {
    color: #ffffff !important;
    opacity: 1 !important;
    border-bottom: 2px solid #ffffff !important;
    padding-bottom: 2px;
}

/* Hide top mobile lang switcher when menu is open */
body.no-scroll .mobile-lang-switcher {
    display: none !important;
}

/* Set desktop lang switcher to 17px */
.nav-lang-item .lang-link,
.nav-lang-item .lang-separator {
    font-size: 17px !important;
}

/* Remove menu bullets/decorators from the language switcher list item as requested */
.nav-lang-item::before {
    display: none !important;
    content: none !important;
}

/* Hide logo inside the open mobile overlay menu as requested */
.menu-overlay__logo {
    display: none !important;
}

/* Set mobile menu active lang switcher links style and hover transitions as requested */
.menu-overlay .lang-link {
    font-size: 1.5rem !important;
    color: #ffffff !important;
    opacity: 0.7 !important;
    border-bottom: 2px solid transparent !important;
    padding-bottom: 2px;
    text-decoration: none !important;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.menu-overlay .lang-link:hover {
    color: #ffffff !important;
    opacity: 1 !important;
    border-bottom-color: #ffffff !important;
}

.menu-overlay .lang-separator {
    font-size: 1.5rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* Mobile footer bottom layout (cities on top, copyright below, centered) */
@media (max-width: 768px) {
    .footer__bottom .container {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .footer-city-links {
        order: 1 !important; /* Cities go first */
        justify-content: center !important;
        width: 100% !important;
    }
    .footer__bottom p {
        order: 2 !important; /* Copyright goes second */
        width: 100% !important;
        text-align: center !important;
        margin: 0 !important;
    }
    .about__slider-container {
    height: 500px;
    }
}

/* Inline styles refactored to external stylesheet */
.header-phone-icon {
    margin-right: 8px;
    vertical-align: middle;
}

.hero__subtitle {
    font-weight: 600 !important;
}

.hero__nav-btn i {
    font-size: 24px;
}

.btn__arrow i {
    font-size: 18px;
    vertical-align: middle;
    margin-left: 5px;
}

.form-status {
    display: none;
    margin-top: 20px;
    padding: 15px;
    font-weight: 700;
    text-align: center;
}

.seo-toggle-wrapper {
    margin-top: 30px;
    text-align: center;
}

#seo-toggle i {
    margin-left: 8px;
    vertical-align: middle;
}

.footer__bottom {
    background: #c8a04c !important;
    margin-top: 50px !important;
    padding: 25px 0 !important;
    font-size: 16px !important;
    width: 100% !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    text-align: center !important;
}

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

.footer-city-links {
    display: flex;
    gap: 10px;
    font-size: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-city-links .divider {
    color: rgba(255, 255, 255, 0.15);
}

.footer-city-links a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.menu-overlay__logo img {
    height: 40px;
}

.mobile-menu-item {
    margin-top: 20px;
}

.modal__nav i {
    font-size: 24px;
}
