/*
Theme Name: Hilte Custom
Theme URI: https://hilte.ru
Description: Luxury minimalist theme for HILTE premium cleaning service.
Author: HILTE Dev
Version: 3.0.0
Text Domain: hilte-custom
*/

/* =========================================
   Variables
   ========================================= */
:root {
    --color-sand: #F2EFE9;
    --color-white: #FFFFFF;
    --color-bg-cream: #FCF8F0;
    --color-bg-dark: #111111;
    --color-text-main: #333333;
    --color-text-heading: #111111;
    --color-accent: #C9A96E;
    --font-heading: 'Prata', serif;
    --font-body: 'Roboto', sans-serif;
    --container-width: 1400px;
    --header-height: 90px;
}

/* =========================================
   Base Reset
   ========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-cream);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

html,
body {
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

a {
    color: var(--color-text-heading);
    text-decoration: none;
    transition: color 0.4s ease;
}

a:hover {
    color: rgba(0, 0, 0, 0.6);
}

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

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

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

.d-flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-sand);
    color: #000000;
}

/* Premium Ghost CTA for Hero */
.fs-btn {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 50px;
    letter-spacing: 4px;
    font-weight: 400;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
}

.fs-btn:hover {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary:not(.fs-btn):hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-heading);
    border: 1px solid var(--color-text-heading);
}

.btn-secondary:hover {
    background: var(--color-text-heading);
    color: var(--color-white);
}

/* =========================================
   Header
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background-color: transparent;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Logo */
.logo-img {
    max-height: 40px;
    width: auto;
    filter: invert(1) brightness(2);
    transition: all 0.5s ease;
}

/* Nav */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 50px;
}

.main-navigation a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    font-weight: 400;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-sand);
    transition: width 0.4s ease;
}

.main-navigation a:hover {
    color: var(--color-white);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    gap: 20px;
}

/* Language Switcher */
.lang-switcher {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
}

.lang-item {
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px 2px;
}

.lang-item.active,
.lang-item:hover {
    color: var(--color-sand);
}

.lang-separator {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.2);
}

/* Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-sand);
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.header-phone:hover {
    color: var(--color-white);
}

.header-phone svg {
    flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

/* =========================================
   Hero Slider
   ========================================= */
.fs-hero-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.fs-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.fs-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.08);
}

.fs-bg.active {
    opacity: 1;
    transform: scale(1);
}

.fs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Content Container */
.fs-content-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    padding-bottom: 140px;
}

.fs-pre-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    opacity: 0.8;
    color: var(--color-sand);
    font-weight: 500;
}

.fs-slide-content {
    display: none;
    animation: fadeInText 0.8s ease forwards;
}

.fs-slide-content.active {
    display: block;
}

.fs-title {
    font-family: var(--font-heading);
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: var(--color-white);
}

.fs-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.85;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.fs-btn {
    background-color: var(--color-sand);
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    padding: 18px 50px;
    letter-spacing: 2.5px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    transition: all 0.4s ease;
}

.fs-btn:hover {
    background-color: var(--color-white);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* =========================================
   Bottom Navigation (SVG Icons)
   ========================================= */
/* Bottom Navigation Minimalist */
.fs-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 20px 0 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.fs-nav-items {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 25px;
}

.fs-nav-item {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    padding: 10px 0;
}

.fs-nav-item:hover,
.fs-nav-item.active {
    opacity: 1;
}

.fs-nav-num {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: var(--color-sand);
    opacity: 0.8;
}

.fs-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFFFFF;
    font-weight: 300;
    transition: all 0.3s ease;
}

.fs-nav-item.active .fs-label {
    font-weight: 500;
}

.fs-nav-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 1px;
    background-color: var(--color-sand);
    transition: transform 0.5s ease;
}

.fs-nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Progress Bar */
.fs-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.fs-progress-fill {
    height: 100%;
    background: var(--color-sand);
    width: 16.66%;
    transition: width 0.6s ease;
}

/* =========================================
   Philosophy Section
   ========================================= */
.philosophy-section {
    padding: 130px 0;
    background-color: #FFFFFF;
}

.philosophy-text {
    width: 45%;
    padding-right: 60px;
}

.philosophy-text .section-title {
    text-align: left;
}

.philosophy-text p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.philosophy-visual {
    width: 50%;
    height: 520px;
    overflow: hidden;
    position: relative;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.philosophy-visual .philosophy-stats {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 30px;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-legal-note {
    font-size: 11px;
    color: #999;
    margin-top: 15px;
    line-height: 1.4;
    text-align: center;
}

.form-legal-note a {
    color: inherit;
    text-decoration: underline;
}

.form-legal-note a:hover {
    color: #000;
}

/* =========================================
   Services Grid
   ========================================= */
.services-list-section {
    padding: 120px 0;
    background-color: var(--color-bg-cream);
}

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

.service-card {
    background: transparent;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-icon-wrapper {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #eee;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--color-text-heading);
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* =========================================
   Trust Section
   ========================================= */
.trust-section {
    padding: 110px 0;
    background-color: #FFFFFF;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

/* Trust Section Minimalist */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.trust-item {
    text-align: left;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-num {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-sand);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.trust-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
}

.trust-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Side Tab - Improved Positioning & Visibility */
.cleaning-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: bottom right;
    z-index: 10001;
    background: #000000;
    color: #ffffff;
    padding: 18px 45px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    border-bottom: 3px solid var(--color-sand);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
}

.cleaning-tab:hover {
    background: #111;
    color: var(--color-sand);
    padding-right: 55px;
}

.cleaning-tab .phone-num {
    margin-left: 20px;
    color: var(--color-sand);
    font-weight: 600;
}

/* Hide Mobile Menu Toggle */
.menu-toggle {
    display: none !important;
}

/* Remove old icon pulse animation if exists */
.pulse-icon {
    display: none !important;
}

/* =========================================
   Consult / Contact Section
   ========================================= */
.consult-section {
    padding: 110px 0;
    background-color: var(--color-bg-dark);
    color: #FFFFFF;
}

.consult-text h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-align: left;
}

.consult-text p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 420px;
    line-height: 1.7;
}

.consult-form-wrapper {
    width: 50%;
}

.luxury-form {
    display: flex;
    gap: 20px;
}

.luxury-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: #FFFFFF;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
}

.luxury-form input:focus {
    border-color: var(--color-sand);
}

.luxury-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background-color: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 80px 0 40px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-layout {
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col {
    flex: 1;
    min-width: 180px;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s;
    font-size: 13px;
}

.footer-col a:hover {
    color: var(--color-sand);
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo-img {
    max-height: 40px;
    width: auto;
    filter: invert(1) brightness(2);
    opacity: 0.9;
}

.branding-col p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    transition: all 0.3s;
}

.social-links a svg {
    flex-shrink: 0;
}

.social-links a:hover {
    border-color: var(--color-sand);
    color: var(--color-sand);
}

/* Contacts Footer */
.contacts-col p {
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contacts-col a {
    color: var(--color-sand) !important;
}

.payment-icons {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 40px;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-icon {
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.payment-icon:hover {
    color: rgba(255, 255, 255, 0.6);
}

.payment-text-icon {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    color: inherit;
}

/* Dynamic Panel Switching */
.service-detail-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.service-detail-panel.active {
    display: block;
    opacity: 1;
}

/* Expert Panel Styling */
.expert-panel {
    background: #fff;
    padding: 100px 0;
}

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

.panel-num {
    display: block;
    font-size: 14px;
    color: var(--color-sand);
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.expert-panel h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: #000;
}

.expert-intro {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.expert-content.grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.expert-list {
    list-style: none;
    padding: 0;
}

.expert-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
}

.expert-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--color-sand);
    margin-right: 15px;
    border-radius: 50%;
}

.meta-box {
    background: #f9f9f9;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.meta-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.meta-value {
    font-size: 18px;
    color: #000;
    font-weight: 500;
}

/* Service Panel Images */
.service-panel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.expert-visual {
    overflow: hidden;
    position: relative;
    height: 450px;
    border-radius: 4px;
}

.expert-visual:hover .service-panel-image {
    transform: scale(1.05);
}

/* Footer Bottom Polish */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal,
.footer-rights {
    flex: 1;
}

.footer-copyright-links {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-rights {
    text-align: right;
}

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

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

.footer-sep {
    opacity: 0.3;
}

/* =========================================
   Animations
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Responsive — Tablet (1024px)
   ========================================= */
/* =========================================
   Luxury Inner Pages Overhaul
   ========================================= */

/* Base Inner Page Overrides */
.inner-page {
    background-color: var(--color-bg-light);
    color: var(--color-text-body);
}

/* Header visibility on dark-themed inner HEROES */
.page-template-page-about .site-header,
.page-template-page-contacts .site-header,
.page-template-page-faq .site-header,
.page-template-page-legal .site-header {
    background-color: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 15px 0 !important;
}

.page-template-page-about .main-navigation a,
.page-template-page-contacts .main-navigation a,
.page-template-page-faq .main-navigation a,
.page-template-page-legal .main-navigation a {
    color: #FFFFFF !important;
    font-weight: 300;
    letter-spacing: 2.5px;
}

.page-template-page-about .logo-img,
.page-template-page-contacts .logo-img,
.page-template-page-faq .logo-img,
.page-template-page-legal .logo-img {
    filter: invert(1) brightness(2) !important;
}

/* Immersive Hero */
.inner-hero {
    height: 70vh;
    min-height: 600px;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(193, 155, 118, 0.1) 0%, transparent 70%);
    z-index: 1;
}

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

.hero-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--color-sand);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.inner-hero-title {
    font-size: clamp(40px, 6vw, 84px);
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.2s forwards;
}

.inner-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s 0.4s forwards;
}

/* Narrative Sections (About Page) */
.narrative-section {
    padding: 160px 0;
    background-color: var(--color-white);
}

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

.narrative-image {
    position: relative;
    overflow: hidden;
}

.narrative-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(10%) contrast(105%);
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.narrative-content .section-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-sand);
    margin-bottom: 30px;
}

.narrative-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.narrative-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

/* Stats Section (About Page) */
.premium-stats {
    background-color: #0d0d0d;
    padding: 140px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-family: var(--font-heading);
    color: var(--color-sand);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

/* Minimalist Accordion (FAQ Page) */
.premium-faq {
    padding: 120px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-group {
    border-top: 1px solid #e0e0e0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #111;
    letter-spacing: -0.5px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-sand);
    transition: transform 0.4s ease;
}

.faq-icon::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.faq-icon::after {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 50px;
}

.faq-answer p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
}

/* Cleaning Grid (Contacts Page) */
.cleaning-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 120px 0;
}

.cleaning-info {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.cleaning-item h3 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-sand);
    margin-bottom: 20px;
}

.cleaning-item .value {
    font-size: 28px;
    font-family: var(--font-heading);
    color: #111;
    text-decoration: none;
}

.cleaning-item .sub-value {
    display: block;
    font-size: 16px;
    color: #888;
    margin-top: 10px;
}

/* Luxury Form */
.premium-form {
    background: #fff;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
}

.premium-form h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
    margin-bottom: 40px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    font-family: var(--font-body);
    transition: border-color 0.4s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-sand);
}

.input-group label {
    position: absolute;
    top: 15px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.4s ease;
}

.input-group input:focus+label,
.input-group input:not(:placeholder-shown)+label,
.input-group textarea:focus+label,
.input-group textarea:not(:placeholder-shown)+label {
    top: -15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sand);
}

/* Narrative Grid RTL Support */
.narrative-grid--reverse {
    direction: rtl;
}

.narrative-grid--reverse>* {
    direction: ltr;
}

/* Contacts Polish */
.cleaning-messengers {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.messenger-link {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-sand);
    transition: all 0.3s;
}

.messenger-link:hover {
    color: var(--color-text-body);
    transform: translateY(-2px);
}

.area-value {
    font-size: 22px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin-bottom: 40px;
}

.consent-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-sand);
}

.consent-checkbox span {
    font-size: 13px;
    color: #888;
    line-height: 1.5;
}

.consent-checkbox span a {
    color: #111;
    text-decoration: underline;
}

.btn-premium-submit {
    width: 100%;
    padding: 20px;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-premium-submit:hover {
    background-color: var(--color-sand);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(186, 161, 126, 0.3);
}

/* Map Section */
.contacts-map {
    height: 500px;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #999;
}

.map-mow-text {
    font-size: 120px;
    line-height: 1;
    opacity: 0.05;
    font-family: var(--font-heading);
    letter-spacing: 10px;
}

.map-label {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 11px;
    margin-top: -20px;
    color: #666;
}

/* Inner CTA Components */
.inner-cta.section-dark {
    padding: 160px 0;
    background-color: #0d0d0d;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.inner-cta.section-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(186, 161, 126, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 35px;
    font-family: var(--font-heading);
    font-weight: 400;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.cta-btns .btn {
    min-width: 240px;
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 18px 45px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-outline-white:hover {
    border-color: #fff;
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Legal Page Styles */
.legal-page {
    background: #fff;
    color: #1a1a1a;
    padding-top: 200px;
    padding-bottom: 120px;
}

.container-narrow {
    max-width: 850px;
}

.legal-header h1 {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 50px;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    line-height: 1.1;
}

.legal-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 25px;
}

.legal-nav a {
    text-decoration: none;
    color: #999;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    transition: all 0.4s;
    font-weight: 500;
    position: relative;
}

.legal-nav a::after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sand);
    transition: width 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a.active {
    color: #000;
}

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

.legal-section {
    margin-bottom: 140px;
}

.legal-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 45px;
    font-family: var(--font-heading);
    line-height: 1.3;
    color: #000;
    position: relative;
    padding-left: 30px;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 4px;
    height: 0.8em;
    background-color: var(--color-sand);
}

.legal-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.legal-content h3 {
    font-size: 22px;
    margin: 60px 0 30px;
    color: #000;
    font-family: var(--font-heading);
}

.legal-content p {
    margin-bottom: 25px;
}

.legal-content a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-date {
    font-style: italic;
    color: #aaa;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 300;
}

.legal-summary {
    background: #f9f9f9;
    padding: 50px;
    border-left: 3px solid var(--color-sand);
    margin: 50px 0;
    font-size: 18px;
    color: #111;
    line-height: 1.7;
    font-family: var(--font-heading);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .philosophy-section .container,
    .consult-section .container {
        flex-direction: column;
    }

    .philosophy-text,
    .philosophy-visual,
    .consult-form-wrapper,
    .consult-text {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .philosophy-visual {
        height: 350px;
    }

    .luxury-form {
        flex-direction: column;
    }

    .fs-title {
        font-size: 48px;
    }

    .fs-nav-items {
        gap: 25px;
    }

    .fs-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .phone-text {
        display: none;
    }

    .footer-layout {
        flex-wrap: wrap;
    }
}

/* =========================================
   Responsive — Phone (768px)
   ========================================= */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }

    .main-navigation ul {
        display: none;
    }

    .main-navigation.active ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.97);
        z-index: 999;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .main-navigation.active a {
        color: #FFFFFF;
        font-size: 18px;
    }

    /* Slider Mobile */
    .fs-title {
        font-size: 34px;
        padding: 0 20px;
    }

    .fs-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }

    .fs-pre-title {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .fs-btn {
        padding: 14px 35px;
        font-size: 11px;
    }

    .fs-nav-items {
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .fs-nav-item {
        flex-shrink: 0;
    }

    .fs-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    .fs-label {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* Sections */
    .philosophy-section {
        padding: 80px 0;
    }

    .philosophy-text,
    .philosophy-visual {
        width: 100%;
        padding-right: 0;
    }

    .philosophy-visual {
        height: 250px;
        margin-top: 30px;
    }

    h2,
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .services-list-section {
        padding: 80px 0;
    }

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

    .service-icon-wrapper {
        height: 220px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .consult-section .container {
        flex-direction: column;
    }

    .consult-text,
    .consult-form-wrapper {
        width: 100%;
    }

    .consult-text {
        margin-bottom: 40px;
    }

    .luxury-form {
        flex-direction: column;
        gap: 15px;
    }

    .luxury-form button {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-layout {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }

    .site-footer {
        padding: 60px 0 30px;
    }

    .payment-icons {
        gap: 30px;
        padding: 40px 0;
        justify-content: center;
        opacity: 0.6;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .lang-switcher {
        margin-right: 8px;
    }

    .phone-text {
        display: none;
    }
}

/* =========================================
   Responsive — Small Phone (480px)
   ========================================= */
@media (max-width: 480px) {
    .fs-title {
        font-size: 26px;
    }

    .fs-subtitle {
        font-size: 14px;
    }

    h1 {
        font-size: 32px;
    }

    h2,
    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 11px;
    }

    .philosophy-image {
        height: 200px;
    }
}
/* =========================================
   Service Details Page
   ========================================= */
.service-details-section {
    width: 100%;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.details-column h3.column-title {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
    padding-bottom: 15px;
}

.details-column h3.column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--color-sand);
}

.check-list, .cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li, .cross-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 18px;
}

.cross-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    top: 0;
    color: #999;
    font-weight: bold;
    font-size: 22px;
    line-height: 1;
}

.excluded {
    opacity: 0.8;
}

.recommendation-box {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f0f0;
    border-left: 3px solid #999;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.service-meta-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-icon {
    font-size: 18px;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-meta-grid {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   Post-Construction Page Specific Styles
   ========================================= */
.two-column-list-container {
    column-count: 2;
    column-gap: 60px;
}

@media (max-width: 992px) {
    .two-column-list-container {
        column-count: 1;
    }
}
