/* Reset & Basic Setup */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

:root {
    --primary: #FF3801;
    --dark: #101010;
    --dark-alt: #353535;
    --light: #F9F9F7;
    --text-muted: rgba(255, 255, 255, 0.7);
    --bg-overlay: rgba(249, 249, 247, 0.20);
    
    --font-primary: 'Manrope', -apple-system, sans-serif;
    --font-heading: 'Helvetica Neue', 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section {
    padding: 100px 0;
    scroll-margin-top: 110px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--dark);
}

/* Base Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 12px 25px;
    border-radius: 32px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: #e63200;
}

.btn-large {
    padding: 14px 25px;
    font-size: 16px;
    background-color: var(--primary);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--light);
}
.btn-dark:hover {
    background-color: #222;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
}
.btn-dark .btn-icon {
    background-color: var(--primary);
}
.btn-primary .btn-icon {
    background-color: var(--dark);
}

/* Mobile-only elements hidden by default on desktop */
.mobile-only {
    display: none !important;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.header.header--hidden {
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05); /* very transparent base */
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none; /* remove shadow at top */
    border-radius: 40px;
    padding: 10px 20px 10px 200px;
    height: 75px;
    position: relative;
    max-width: 1400px;
    transition: all 0.3s ease;
}

.header-container.scrolled {
    background: rgba(20, 20, 20, 0.45); /* Darkened glass for readability */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.logo-img {
    width: 80px;
    height: auto;
    position: absolute;
    top: 2px;
    left: 30px;
    z-index: 10;
}

.header.with-promo {
    top: 60px;
}

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

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    opacity: 0.8;
}
.phone-numbers a:hover {
    opacity: 1;
}
.social-icon, .lang-switcher {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.social-icon:hover, .lang-switcher:hover {
    opacity: 1;
    transform: scale(1.05);
    background: rgba(255,255,255,0.1);
}

.mobile-controls {
    display: none;
    align-items: center;
    gap: 15px;
}

.btn-mobile-header {
    display: none;
}


.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 160px;
}
.header.with-promo ~ .hero-section {
    padding-top: 200px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.7) 0%, rgba(16, 16, 16, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 45px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
}

/* Glass Calculator */
.glass-calculator {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 30px;
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.glass-top-wrapper {
    display: contents;
}

.glass-taxis {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    height: 100%;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.glass-taxi {
    background: rgba(16, 16, 16, 0.4);
    border-radius: 20px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    border: 1px solid transparent;
}
@media (min-width: 769px) {
    .glass-taxi[data-partner="bolt"] {
        padding: 10.5px 25px;
    }
}
.glass-taxi img {
    height: 24px;
    width: auto;
}
.glass-taxi:hover, .glass-taxi.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255,255,255,0.4);
}

.glass-map {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2) url('images_exact/map-grid.svg') center/cover no-repeat;
    border-radius: 20px;
}

.glass-actions {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Benefits Section */
.section-benefits {
    background: var(--light);
    padding-bottom: 50px;
}

.section-benefits .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.benefits-title-wrapper {
    width: 35%;
}

.benefits-title-wrapper .section-title {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 0;
}

.benefits-grid {
    width: 65%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    min-height: auto;
}

.benefit-card.bg-dark {
    background-color: var(--dark-alt);
    color: #fff;
}

.benefit-card.bg-primary {
    background-color: var(--primary);
    color: #fff;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.bg-dark .benefit-icon { background: var(--primary); }
.bg-primary .benefit-icon { background: var(--dark-alt); }

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-content p {
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}

/* Why Us Section */
.section-why-us {
    background: var(--light);
    padding-top: 50px;
    overflow: hidden;
}

.why-us-header {
    position: relative;
    margin-bottom: 60px;
    min-height: 150px;
    display: flex;
    align-items: center;
}

.section-why-us .section-title {
    margin-bottom: 0;
    max-width: 550px;
    position: relative;
    z-index: 10;
    font-size: 45px;
}

.why-us-img {
    position: absolute;
    right: -100px;
    top: -300px;
    width: 850px;
    object-fit: contain;
    pointer-events: none;
    z-index: 5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 10;
}

.why-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.why-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #EAEAEA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    min-height: 44px;
}

.why-card p {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

/* Conditions Section */
.section-conditions {
    background-color: var(--dark-alt);
    color: var(--light);
}

.text-light {
    color: var(--light) !important;
}

.conditions-wrapper {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.conditions-image-col {
    flex: 1; /* equal width with calculator */
    display: flex;
    flex-direction: column;
}

.conditions-img-wrapper {
    border-radius: 20px;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.conditions-cards-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    align-items: stretch;
}

.glass-card {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 24px 20px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.glass-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    min-height: 50px; /* Align content below */
}

.glass-card p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.zus-card {
    background: rgba(255, 56, 1, 0.65);
    grid-column: span 2;
    height: auto;
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.zus-card h4 {
    margin: 0;
    transform: translateY(13px);
}

.vat-card, .info-card {
    background: rgba(16, 16, 16, 0.65);
}

.conditions-calculator {
    flex: 1;
    background: #3F3F3F;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.calc-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 25px;
}

.mobile-only {
    display: none;
}

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

.calc-label {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 5px;
}

.calc-value {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--light);
}

.custom-range {
    width: 100%;
    appearance: none;
    height: 8px;
    background: #7D7D7D;
    border-radius: 4px;
    outline: none;
    margin-top: 15px;
}

.custom-range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

.calc-result {
    background: rgba(63, 63, 63, 0.69);
    border-radius: 20px;
    padding: 20px;
    box-shadow: inset -8px 1px 13px 0 var(--primary);
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.calc-result::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
}

.calc-result-label {
    color: var(--text-muted);
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.calc-result-value {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.calc-disclaimer {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
}

/* Partners */
.section-partners {
    padding-bottom: 150px;
}

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

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

.mt-4 {
    margin-top: 30px;
}

.partners-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.partners-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.partners-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto -60px;
    padding: 0 calc(50vw - min(600px, 42.5vw));
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.partners-tabs::-webkit-scrollbar {
    display: none !important;
}

.partner-tab {
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 10px;
    flex-shrink: 0;
    user-select: none;
    -webkit-user-drag: none;
}

.partner-tab svg {
    pointer-events: none;
}

.partner-tab.active, .partner-tab:hover {
    opacity: 1;
    transform: scale(1.05);
}

.partners-carousel-dots {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 40, 40, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.partner-dot.active {
    width: 28px;
    background: #fff;
}

.partners-wrapper {
    position: relative;
    padding-bottom: 90px; /* makes space for the dots at the bottom */
}

.partners-carousel-wrapper {
    width: 100%;
    padding: 0 calc(50vw - min(700px, 45vw));
    padding-bottom: 20px;
    gap: 40px;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.partners-carousel-wrapper::-webkit-scrollbar {
    display: none !important;
}

.partner-slide {
    flex: 0 0 min(1400px, 90vw);
    scroll-snap-align: center;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 40px;
}

.partner-slide img, .partner-bg {
    user-select: none;
    -webkit-user-drag: none;
}

.partner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 16, 16, 0.7);
    z-index: 1;
}

.partner-info {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 1000px;
    color: var(--light);
}

.partner-info h3 {
    font-family: var(--font-heading);
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 30px;
}

.partner-info p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Fleet Section */
.section-fleet {
    background-color: #F9F9F7;
    color: var(--dark);
}

.section-about {
    padding: 20px 0 60px 0;
    scroll-margin-top: 180px;
}

.section-about p {
    font-size: 18px;
    color: #101010;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fleet-wrapper {
    position: relative;
    padding-bottom: 90px;
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto -20px;
    padding: 0 calc(50vw - min(600px, 42.5vw));
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.fleet-tabs::-webkit-scrollbar {
    display: none !important;
}

.fleet-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    opacity: 0.3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 10px;
    flex-shrink: 0;
    user-select: none;
}

.fleet-tab.active, .fleet-tab:hover {
    opacity: 1;
    transform: scale(1.05);
}

.fleet-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(220, 220, 220, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.partners-carousel-dots {
    display: none !important;
}

/* Styles for dots already exist below */

.fleet-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(16, 16, 16, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fleet-dot.active {
    width: 28px;
    background: var(--primary);
}

/* Custom styled scrollbar removed as per user request */
.fleet-carousel-wrapper::-webkit-scrollbar {
    display: none !important;
}

.fleet-carousel-wrapper {
    width: 100%;
    /* Padding ensures the first and last slides can be centered in the viewport */
    padding: 20px calc(50vw - min(190px, 42.5vw));
    padding-bottom: 40px;
    gap: 30px;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

/* Scrollbar is now enabled and styled above */

.fleet-slide {
    width: min(380px, 85vw);
    height: 500px;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.fleet-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% center;
    z-index: 1;
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

.fleet-badge-carousel {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
    background-color: var(--primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
}

.fleet-info-carousel {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    color: var(--light);
    max-width: 100%;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

.fleet-info-carousel h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.2;
}

.fleet-features-carousel {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.fleet-features-carousel .feature {
    color: #fff;
    font-size: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-muted);
}

.feature img {
    width: 20px;
    height: 20px;
}

.w-100 {
    width: 100%;
}

/* Blog Section */
.section-blog {
    background-color: var(--light);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    color: var(--dark);
}

.blog-more-btn {
    border-radius: 40px;
    padding: 10px 10px 10px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #E73A1F;
    border-radius: 50%;
}

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

.blog-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.blog-img {
    height: 180px;
    width: 100%;
}

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

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-badge {
    background: #F5F5F5;
    color: #666;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--dark);
}

.blog-content p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    font-size: 13px;
    color: #CCC;
    font-weight: 500;
}

/* Footer */
.footer {
    padding: 40px 0 30px;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 0;
    max-width: 300px;
}

.footer-col:first-child {
    max-width: 180px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: var(--light);
    font-size: 16px;
    margin-bottom: 12px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--light);
    border-radius: 20px;
    padding: 50px;
    width: calc(100% - 40px);
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s;
}

@media (max-width: 575px) {
    .modal-content {
        padding: 30px 20px;
        width: calc(100% - 30px);
    }
    .modal-title {
        font-size: 26px;
    }
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 30px; cursor: pointer;
    color: var(--text-muted);
}

.modal-title {
    font-size: 32px; font-weight: 700;
    margin-bottom: 10px; color: var(--dark);
}

.modal-desc {
    font-size: 16px; color: #555;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 16px;
    background: #fff;
    outline: none;
}

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

/* Responsive Overrides */
@media (max-width: 1200px) {
    .nav-menu { display: none; }
    .header-actions { display: none; }
    .mobile-controls { display: flex; }
    .btn-mobile-header {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 24px;
        font-weight: 600;
        white-space: nowrap;
        height: 48px;
        line-height: 1;
        background-color: var(--primary);
        color: #fff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(255, 56, 1, 0.25);
        text-decoration: none;
        z-index: 100;
    }
    .btn-mobile-header:hover {
        background-color: #e63200;
        transform: translate(-50%, -52%) scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 56, 1, 0.35);
        color: #fff;
    }
    .btn-mobile-header:active {
        transform: translate(-50%, -48%);
    }
    .logo-img { left: 10px; width: 68px; height: auto; top: 7px; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 30px; }
    .why-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .conditions-wrapper { flex-direction: column; }
    .conditions-cards-container { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; gap: 15px; }
    .vat-card, .info-card, .zus-card { margin: 0; position: static; width: 100%; height: 100%; }
    .zus-card { grid-column: span 2; }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-info h3 { font-size: 45px; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .hero-section { 
        min-height: 100vh; 
        padding: 135px 20px 30px !important; 
        text-align: center; 
        overflow: hidden; 
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
    }
    .header.with-promo ~ .hero-section {
        padding-top: 175px !important;
    }
    .hero-content { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .section { padding-top: 40px; padding-bottom: 40px; }
    .section-benefits { padding-bottom: 30px !important; }
    .section-why-us { padding-top: 30px !important; margin-top: -1px; }
    .section-partners { margin-top: -1px; }
    .section-partners .section-title { font-size: 24px !important; line-height: 1.25 !important; }
    .section-map-area, .section-stages, .section-fleet, .section-about, .contact-section { margin-top: -1px; }
    .section-stages { padding: 45px 0 35px !important; }
    .partners-carousel-dots { display: none !important; }
    .section-title { font-size: 24px !important; line-height: 1.25 !important; margin-bottom: 20px !important; text-align: center; }
    .section-stages .section-title { font-size: 24px !important; line-height: 1.25 !important; margin-bottom: 20px !important; }
    .section-subtitle { font-size: 16px; margin-bottom: 25px; text-align: center; }
    .mobile-only {
        display: block !important;
    }
    .glass-card {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        min-height: 130px; 
        padding: 16px;
    }
    .glass-card h4 {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 6px;
    }
    .glass-card p {
        font-size: 12px;
        line-height: 1.3;
    }
    .zus-card { 
        grid-column: span 2; 
        min-height: auto !important; 
        height: auto !important; 
        padding: 12px 20px !important;
        margin-top: 5px;
    }
    .zus-card h4 { 
        transform: none !important; 
        margin: 0 !important; 
        min-height: auto !important;
        font-size: 15px !important;
        text-align: center;
        width: 100%;
    }
    .hero-title { 
        font-size: 24px !important; 
        line-height: 1.2; 
        margin: 0 auto 15px !important;
        max-width: 100%;
        word-wrap: break-word;
    }
    .hero-subtitle { 
        font-size: 16px; 
        margin-top: 15px !important; 
        margin-bottom: 15px !important; 
    }
    .hero-desc { 
        font-size: 13px; 
        margin-top: 15px !important; 
        margin-bottom: 30px !important; 
        opacity: 0.8; 
    }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; margin-top: 25px; }

    .fab-container {
        position: fixed;
        bottom: 25px;
        right: 20px;
        z-index: 9999;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .fab-container.fab-hidden {
        opacity: 0;
        pointer-events: none;
        transform: scale(0.8);
    }
    .fab-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(255, 56, 1, 0.4);
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        text-decoration: none;
    }
    .fab-btn:active { transform: scale(0.9); }

    .glass-calculator {
        display: flex;
        flex-direction: column;
        background: transparent;
        border: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 0;
        box-shadow: none;
        gap: 12px;
        width: 100%;
    }
    .glass-top-wrapper {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 30px;
        overflow: hidden;
        width: 100%;
    }
    .glass-map {
        order: 1;
        grid-column: unset; grid-row: unset;
        min-height: 130px !important;
        border-radius: 0;
    }
    .glass-taxis {
        order: 2;
        flex-direction: row;
        grid-column: unset; grid-row: unset;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        background: rgba(255, 255, 255, 0.1);
    }
    .glass-taxi {
        flex: 1;
        padding: 10px 5px !important;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 13px;
        gap: 6px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 80px; /* Фиксированная минимальная высота для симметрии */
    }
    /* Немного увеличиваем высоту Bolt для компенсации визуальной разницы */
    .glass-taxi[data-partner="bolt"] {
        padding: 11px 5px !important;
    }
    .glass-taxi img, 
    .glass-taxi svg {
        width: 32px !important;
        height: 32px !important;
        margin-left: 0 !important;
    }
    /* Индивидуально уменьшаем Free Now для баланса на мобильных */
    .glass-taxi[data-partner="freenow"] img {
        width: 28px !important;
        height: 28px !important;
    }
    .glass-actions {
        display: flex;
        flex-direction: column;
        grid-column: unset; grid-row: unset;
        gap: 15px;
        width: 100%;
    }
    .glass-actions .btn {
        width: 100%;
        border-radius: 30px;
        white-space: nowrap !important;
        padding: 16px 24px !important;
        font-size: 15px !important;
    }
    .glass-actions .btn-primary {
        box-shadow: 0 8px 25px rgba(255, 56, 1, 0.4);
    }
    .glass-actions .btn-dark {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
    
    .partners-wrapper {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .partners-tabs {
        padding: 0 15px;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .section-benefits .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .benefits-title-wrapper, .benefits-grid {
        width: 100%;
    }
    .benefits-title-wrapper .section-title {
        font-size: 24px !important;
        font-weight: 800;
        line-height: 1.25 !important;
        text-transform: uppercase;
        margin-bottom: 0 !important;
    }
    .benefits-grid { 
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .benefit-card {
        display: grid;
        grid-template-areas: 
            "icon title"
            "desc desc";
        grid-template-columns: auto 1fr;
        align-items: center;
        align-content: start;
        gap: 8px 15px;
        padding: 20px;
        border-radius: 20px;
        min-height: 135px;
    }
    .benefit-icon {
        grid-area: icon;
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    .benefit-content {
        display: contents;
    }
    .benefit-content h3 {
        grid-area: title;
        font-size: 18px;
        margin-bottom: 0;
    }
    .benefit-content p {
        grid-area: desc;
        font-size: 13px;
        line-height: 1.4;
        opacity: 0.85;
        margin-top: 5px;
    }
    .why-grid { grid-template-columns: 1fr; }
    
    /* Why Us Carousel Mobile */
    .section-why-us .container {
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
    }
    .why-us-header {
        position: static;
        min-height: auto;
        margin-bottom: 30px;
        order: 1;
    }
    .section-why-us .section-title {
        font-size: 24px !important;
        font-weight: 800;
        line-height: 1.15;
        text-transform: uppercase;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .why-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 10px 0 40px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
        order: 2;
    }
    .why-grid::-webkit-scrollbar { display: none; }
    .why-card {
        flex: 0 0 70%;
        scroll-snap-align: center;
        min-height: 220px; 
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border-radius: 18px;
    }
    .why-card h3 {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 8px;
    }
    .why-card p {
        font-size: 13px;
        line-height: 1.4;
    }
    .why-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
    .why-icon svg {
        width: 24px;
        height: 24px;
    }
    .why-us-header {
        display: contents; /* Allows image to be reordered via flex */
    }

    .why-us-header .section-title {
        order: 1;
        font-size: 24px !important;
        font-weight: 800;
        line-height: 1.25 !important;
        text-transform: uppercase;
        max-width: 100%;
        margin-bottom: 20px !important;
        position: static;
    }

    .why-pagination {
        order: 3;
        display: none !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        background: rgba(240, 240, 240, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: 50px;
        width: fit-content;
        margin: -10px auto 25px;
        z-index: 10;
        position: relative;
    }

    .why-dot {
        width: 8px;
        height: 8px;
        background: #CCCCCC;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .why-dot.active {
        width: 24px;
        height: 8px;
        background: #FF3801;
        border-radius: 4px;
    }

    .why-us-img {
        position: static;
        width: 140%;
        margin-left: -20%;
        margin-top: -350px; 
        margin-bottom: -130px; /* Adjusted to lift car another 20px */
        order: 4;
        transform: none;
        pointer-events: auto;
    }
    
    .fleet-grid { grid-template-columns: 1fr; }
    .calc-value { font-size: 32px; }
    .calc-result-value { font-size: 36px; }
    .calc-title { font-size: 22px; }
    .partner-info { 
        padding: 40px 25px; 
        width: 100%; 
        display: flex; 
        flex-direction: column; 
        height: 100%; 
        justify-content: space-between; /* Push elements to edges */
    }
    .partner-info h3 { font-size: 34px; font-weight: 500; margin-bottom: 0; line-height: 1; }
    .partner-info p { font-size: 14px; line-height: 1.4; opacity: 0.9; margin-top: auto; margin-bottom: auto; }
    .partner-slide { min-height: 520px; border-radius: 40px; margin: 0 10px; width: calc(100% - 20px) !important; flex: 0 0 calc(100% - 20px); }
    .partner-info .btn { margin-top: 0 !important; } 
    .partner-overlay { background: rgba(0, 0, 0, 0.75); }
    
    .btn-full-width { width: 100%; justify-content: center; padding: 16px 20px !important; border-radius: 40px !important; font-size: 15px !important; display: flex !important; justify-content: space-between !important; white-space: nowrap !important; }
    .btn-full-width .btn-text { flex-grow: 1; text-align: center; margin-left: 28px; white-space: nowrap; }
    .btn-full-width .btn-icon { background: #101010; width: 40px; height: 40px; flex-shrink: 0; }
    
    .partners-carousel-dots { display: none !important; }
    .partner-dot { display: none !important; }
    .partner-dot.active { display: none !important; }
    .partners-tabs { 
        flex-direction: row; 
        padding: 15px; 
        align-items: center; 
        justify-content: space-between; 
        gap: 10px;
    }
    .partner-tab { padding: 0; min-width: 0; flex: 1; display: flex; justify-content: center; }
    .partner-tab svg { transform: scale(0.7); transform-origin: center; max-width: 100%; height: auto !important; }
    .partner-tab[data-partner="freenow"] svg { transform: scale(1.1); }
    .partner-tab[data-partner="xtaksometr"] svg { transform: scale(1.1); }
    .partner-tab .tab-text { font-size: 14px !important; }
    .partners-carousel-wrapper { padding-bottom: 0; }
    .fleet-wrapper { padding-bottom: 20px !important; }
    .section-about { padding-top: 20px !important; }
    .section-about p {
        font-size: 14px !important;
    }
    .contact-text-wrapper .section-title {
        font-size: 24px !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
    }
    .reviews-section { 
        margin-top: 40px !important; 
        padding: 40px 0 30px !important;
    }

    /* Fleet Slide Adjustments */
    .fleet-slide {
        width: 300px;
        height: 420px;
    }
    .fleet-info-carousel {
        bottom: 20px;
        left: 20px;
        padding-right: 20px;
    }
    .fleet-info-carousel h3 {
        font-size: 24px;
    }
    .fleet-features-carousel {
        gap: 10px;
        margin-bottom: 15px;
    }
    .fleet-features-carousel .feature {
        font-size: 13px;
    }
    
    /* Fleet Scrollbar for Mobile - Hidden in favor of styled dots */
    .fleet-carousel-wrapper::-webkit-scrollbar {
        display: none !important;
    }
    
    /* Styled Pagination Dots */
    .why-pagination, .fleet-carousel-dots {
        display: flex !important;
        position: relative !important;
        bottom: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin: 20px auto 0 !important;
        background: #F0F0F0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 10px 18px !important;
        border-radius: 50px !important;
        width: fit-content !important;
        border: none !important;
        gap: 8px !important;
        z-index: 10;
        box-shadow: none !important;
    }
    .why-dot, .fleet-dot {
        width: 8px !important;
        height: 8px !important;
        background: #CCCCCC !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
        border: none !important;
        padding: 0 !important;
    }
    .why-dot.active, .fleet-dot.active {
        width: 24px !important;
        height: 8px !important;
        background: #FF3801 !important;
        border-radius: 4px !important;
    }
}

/* --- Mobile Menu Drawer --- */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10001;
    visibility: hidden;
    display: none; /* Hide by default on desktop */
    transition: visibility 0.4s;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block; /* Show on mobile */
    }
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.mobile-menu-close:hover { opacity: 1; }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: all 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary);
    opacity: 1;
    transform: translateX(5px);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contacts a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.6;
}

/* Responsive fixes for existing header */
@media (max-width: 768px) {
    .header-container {
        padding-left: 20px !important; /* Fix logo offset on mobile */
    }
    .logo-img {
        width: 67px !important;
        height: auto !important;
        top: 7px !important;
        left: 10px !important;
    }
    .blog-grid { grid-template-columns: 1fr; }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0 50px;
    background: #F9F9F7;
    overflow: hidden;
}

.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.reviews-score {
    display: flex;
    flex-direction: column;
}

.score-number {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
}

.score-stars {
    color: #FFB800;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.reviews-more-btn {
    border-radius: 40px;
    padding: 10px 10px 10px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.reviews-more-btn .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
}

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

.review-card {
    background: #FFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.review-card.active-card, .review-card:hover {
    border-color: #2196F3;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.review-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.review-avatar img, .review-avatar .avatar-letters {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-letters {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.review-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #FF7B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.review-badge svg {
    width: 10px;
    height: 10px;
}

.review-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--dark);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.review-meta .stars {
    color: #FFB800;
    font-size: 15px;
    letter-spacing: 2px;
    margin: 0;
}

.review-date {
    font-size: 13px;
    color: #999;
}

.review-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* Sections */
.stages-section, .map-section {
    background: #F9F9F7;
    padding-bottom: 40px;
}

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

@media (max-width: 768px) {
    .reviews-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .reviews-title-wrap {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .review-card {
        padding: 15px;
    }
    .review-header {
        gap: 8px;
    }
    .review-header h4 {
        font-size: 14px;
    }
    .review-avatar {
        width: 36px;
        height: 36px;
    }
    .review-meta {
        gap: 5px;
        margin-bottom: 10px;
    }
    .review-meta .stars {
        font-size: 12px;
        letter-spacing: 1px;
    }
    .review-card p {
        font-size: 12px;
    }
}

/* Stages Section */
.section-stages {
    padding: 80px 0 50px;
    background-color: var(--light);
}

.stages-header h2 {
    font-size: 55px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 70px;
    line-height: 1.1;
}

.stages-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background-color: var(--dark);
    z-index: 1;
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
}

.stage-wheel-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stage-wheel {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.stage-number {
    position: relative;
    z-index: 3;
    font-size: 34px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
                 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}

.stage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.stage-desc {
    font-size: 15px;
    color: rgba(16, 16, 16, 0.7);
    line-height: 1.4;
    max-width: 250px;
}

.stage-link {
    color: #1a0dab;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.stage-link:hover {
    color: #110870;
}

@media (max-width: 991px) {
    .stages-header h2 { font-size: 40px; }
    .stages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .timeline-line { display: none; }
}

@media (max-width: 575px) {
    .stages-header h2 { font-size: 32px; }
    .stages-grid { grid-template-columns: 1fr; gap: 36px; }
    .stage-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 24px;
    }
    .stage-wheel-container {
        margin-bottom: 0;
        width: 112px;
        height: 112px;
        flex-shrink: 0;
    }
    .stage-number {
        font-size: 36px !important;
    }
    .stage-title {
        margin-bottom: 0;
        font-size: 18px;
        white-space: normal;
        line-height: 1.25;
    }
}

/* Map Section */
.section-map-area {
    padding: 0;
    width: 100%;
    background-color: #353535;
}

.map-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    min-height: 800px;
    background: url('images_exact/map-bg.svg') right center/cover no-repeat;
    display: flex;
    align-items: center;
}

.map-content {
    width: 45%;
    padding: 100px 0 100px 85px;
    background: linear-gradient(90deg, #353535 80%, transparent 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.map-title {
    font-size: 55px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.map-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 350px;
}

.map-btn {
    padding: 16px 40px;
    font-size: 16px;
    width: fit-content;
}

@media (max-width: 991px) {
    .map-container {
        flex-direction: column;
        background: none !important; /* Hide background image on mobile */
        min-height: auto;
    }
    .map-content {
        width: 100%;
        position: relative;
        padding: 80px 20px;
        background: #353535;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        overflow: hidden;
        z-index: 1;
    }
    .map-title {
        font-size: 36px;
        margin-bottom: 30px;
        text-align: left;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    .map-image-mobile {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 160%;
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
    }
    .map-image-mobile img {
        width: 100%;
        height: auto;
        display: block;
    }
    .map-bottom-block {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        width: 100%;
        position: relative;
        z-index: 2;
        margin-top: 100px;
    }
    .map-desc {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .map-btn {
        width: 100%;
        text-align: center;
        display: block;
    }
}
@media (max-width: 575px) {
    .map-title { font-size: 32px; }
}

.contact-text-wrapper {
    flex: 1 1 350px;
    padding-right: 40px;
    margin-bottom: 30px;
}

.contact-text-wrapper p {
    font-size: 18px !important;
}

.contact-text-wrapper .section-title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #101010;
}

/* Contacts Grid */
.contact-grid {
    flex: 1 1 650px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: #EAEAEA;
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF3801;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text {
    font-weight: 500;
    color: #101010;
    font-size: 13px;
}

.contact-phones-wrap {
    display: flex;
    flex-direction: column;
}

.contact-phones-wrap span {
    font-weight: 500;
    color: #101010;
    font-size: 13px;
}

.contact-address {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .contact-text-wrapper {
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-text-wrapper p {
        font-size: 14px !important;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin: 0 auto;
        gap: 8px;
    }
    
    .contact-card {
        padding: 10px 8px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
    
    .contact-icon {
        margin-right: 8px;
        margin-bottom: 0;
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .contact-text {
        text-align: left;
        font-size: 11px;
        line-height: 1.3;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .contact-phones {
        display: none !important; /* Hiding phones on mobile to match screenshot */
    }
    
    .contact-address {
        grid-column: span 1; 
    }
}



/* Promotional Banner Styles */
.promo-banner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
}

.promo-banner-container.active-popup {
    background: rgba(0,0,0,0.5);
    pointer-events: auto;
}

.promo-popup {
    background: #fff;
    width: 90%;
    max-width: 650px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    pointer-events: auto;
    animation: popupFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.promo-content {
    display: flex;
    flex-wrap: wrap;
}

.promo-left {
    flex: 1 1 250px;
    background: #FF3801;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.promo-car-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transform: scale(1.1);
}

.promo-right {
    flex: 1.5 1 300px;
    padding: 40px;
    background: #F9F9F7;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.promo-close:hover { color: #000; }

.promo-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #101010;
}

.promo-title span { color: #FF3801; }

.promo-code {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.badge-orange {
    background: #FF3801;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 800;
    margin-left: 5px;
}

.promo-bonus {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.promo-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.promo-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 56px;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding: 0 40px;
    border-radius: 28px; /* Circular ends for the new height */
}

.promo-actions .btn svg {
    position: absolute;
    right: 20px;
    margin-left: 0; /* Override any previous margins */
}

/* Sticky Bar Styles */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #101010;
    color: #fff;
    z-index: 10001;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    pointer-events: auto;
    animation: barSlideDown 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes barSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.promo-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-bar-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-bar-car {
    height: 40px;
    width: auto;
    aspect-ratio: 335 / 289;
    overflow: visible;
}

.promo-bar-text {
    line-height: 1.2;
}

.promo-bar-text strong { display: block; font-size: 14px; color: #FF3801; }
.promo-bar-text span { font-size: 12px; opacity: 0.8; }

.promo-bar-timer {
    font-size: 18px;
    font-weight: 800;
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 10px;
    color: #FF3801;
}

.promo-bar-actions .btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .promo-right { padding: 30px 20px; }
    .promo-actions { flex-direction: column; }
    .promo-bar-content { 
        display: grid; 
        grid-template-columns: 1fr auto 1fr; 
        gap: 5px; 
        padding: 0 10px;
    }
    .promo-bar-info { gap: 4px; justify-content: flex-start; }
    .promo-bar-text { line-height: 1.1; }
    .promo-bar-text strong { font-size: 9.5px; white-space: nowrap; }
    .promo-bar-text span { font-size: 8px; white-space: nowrap; }
    .promo-bar-car { height: 18px; aspect-ratio: 335 / 289; flex-shrink: 0; }
    .promo-bar-timer { font-size: 11px; padding: 4px 6px; text-align: center; }
    .promo-bar-actions { display: flex; justify-content: flex-end; }
    .promo-bar-actions .btn-sm { padding: 5px 10px; font-size: 11px; white-space: nowrap; }
}

/* Language Switcher Styles */
.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}
.lang-link {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.header-actions .lang-switcher { margin: 0 15px; }

.mobile-lang { 
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.mobile-lang .lang-link { color: #fff; }
.mobile-lang:hover { 
    background: rgba(255, 255, 255, 0.2); 
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) and (max-height: 740px) {
    .hero-section {
        padding-top: 135px !important;
        padding-bottom: 10px !important;
        justify-content: flex-start !important;
    }
    .header.with-promo ~ .hero-section {
        padding-top: 175px !important;
    }
    .hero-title {
        font-size: 24px !important;
        line-height: 1.15 !important;
        margin: 0 auto 12px !important;
    }
    .hero-subtitle {
        font-size: 13.5px !important;
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }
    .hero-desc {
        font-size: 11px !important;
        margin-top: 12px !important;
        margin-bottom: 22px !important;
        line-height: 1.2 !important;
    }
    .glass-calculator {
        gap: 8px !important;
    }
    .glass-map {
        min-height: 95px !important;
    }
    .glass-taxis {
        padding: 8px 12px !important;
        gap: 8px !important;
    }
    .glass-taxi {
        min-height: 60px !important;
        padding: 6px 4px !important;
        border-radius: 12px !important;
        font-size: 11px !important;
        gap: 4px !important;
    }
    .glass-taxi img, 
    .glass-taxi svg {
        width: 24px !important;
        height: 24px !important;
    }
    .glass-taxi[data-partner="bolt"] {
        padding: 6px 4px !important;
    }
    .glass-taxi[data-partner="freenow"] img {
        width: 22px !important;
        height: 22px !important;
    }
    .glass-actions {
        gap: 8px !important;
        margin-top: 0 !important;
    }
    .glass-actions .btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
        height: 40px !important;
        white-space: nowrap !important;
    }
    .glass-actions .btn .btn-icon {
        right: 12px !important;
        width: 24px !important;
        height: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .glass-actions .btn .btn-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Benefits Section - Small Height */
    .section-benefits {
        padding-top: 25px !important;
        padding-bottom: 20px !important;
    }
    .benefits-title-wrapper .section-title {
        font-size: 24px !important;
        line-height: 1.15 !important;
        margin-bottom: 0 !important;
    }
    .benefits-grid {
        gap: 10px !important;
    }
    .benefit-card {
        padding: 14px 18px !important;
        border-radius: 16px !important;
        gap: 6px 12px !important;
        min-height: 116px !important;
        align-content: start !important;
    }
    .benefit-icon {
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }
    .benefit-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .benefit-content h3 {
        font-size: 16px !important;
    }
    .benefit-content p {
        font-size: 12px !important;
        line-height: 1.35 !important;
        margin-top: 3px !important;
    }
    
    /* Stages Section - Small Height */
    .section-stages {
        padding: 35px 0 30px !important;
    }
    .section-stages .section-title {
        margin-bottom: 15px !important;
    }
    .stages-grid {
        gap: 26px !important;
    }
    .stage-wheel-container {
        width: 100px !important;
        height: 100px !important;
    }
    .stage-number {
        font-size: 32px !important;
    }
    .stage-title {
        font-size: 18px !important;
    }
}

@media (max-width: 575px) {
    .btn-mobile-header {
        padding: 10px 20px !important;
        font-size: 14.5px !important;
        height: 44px !important;
        border-radius: 22px !important;
    }
}

@media (max-width: 400px) {
    .mobile-controls {
        gap: 8px !important;
    }
    .btn-mobile-header {
        padding: 8px 16px !important;
        font-size: 13.5px !important;
        height: 40px !important;
        border-radius: 20px !important;
    }
}
/* --- Telegram Channels (Variant 2) --- */
.section-tg-channels {
    position: relative;
    background: #F9F9F7; /* Match other light sections */
    padding: 15px 0 30px;
    overflow: hidden;
}

/* Neon glow backgrounds */
.section-tg-channels .tg-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 158, 217, 0.08) 0%, rgba(34, 158, 217, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.section-tg-channels .container {
    position: relative;
    z-index: 2;
}

.tg-section-title {
    color: #101010 !important; /* Dark title */
    text-align: center;
    margin-bottom: 30px;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tg-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tg-card-item {
    background: rgba(16, 16, 16, 0.02); /* Light glassmorphic background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 16, 16, 0.06);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

/* Glowing border hover effect */
.tg-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 158, 217, 0.15), rgba(34, 158, 217, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.tg-card-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(34, 158, 217, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 30px rgba(34, 158, 217, 0.08);
}

.tg-card-item:hover::before {
    opacity: 1;
}

.tg-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.tg-card-flag {
    font-size: 32px;
}

.tg-card-title {
    color: #101010; /* Dark card title */
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tg-card-desc {
    color: #444444; /* Muted dark text */
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
    min-height: 48px;
}

.btn-tg-card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #229ED9;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    width: auto;
}

.btn-tg-card-action:hover {
    background: #2cb2f2;
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
    transform: translateX(2px);
}

.tg-arrow-icon {
    transition: transform 0.3s ease;
}

.btn-tg-card-action:hover .tg-arrow-icon {
    transform: translateX(4px);
}

/* Responsiveness */
@media (max-width: 768px) {
    .section-tg-channels {
        padding: 10px 0 20px;
    }
    .tg-section-title {
        font-size: 26px;
        margin-bottom: 20px;
    }
    .tg-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    .tg-card-item {
        padding: 30px;
    }
    .tg-card-title {
        font-size: 18px;
    }
    .tg-card-desc {
        font-size: 14px;
        margin-bottom: 25px;
        min-height: auto;
    }
    .btn-tg-card-action {
        width: 100%;
        justify-content: center;
        padding: 12px 14px;
        font-size: 13px;
        white-space: nowrap;
        gap: 7px;
    }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px) saturate(160%);
    -webkit-backdrop-filter: blur(15px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    z-index: 100000;
    color: #fff;
    font-family: var(--font-primary);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.cookie-content p a {
    color: var(--primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie-content p a:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-accept {
    background-color: var(--primary) !important;
    color: #fff !important;
    flex: 1;
    height: 44px;
    padding: 0 20px !important;
    font-size: 14px !important;
    border-radius: 22px !important;
    font-weight: 600 !important;
}

.btn-cookie-accept:hover {
    background-color: #e63200 !important;
    transform: scale(1.02);
}

.btn-cookie-decline {
    background-color: transparent !important;
    color: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    flex: 1;
    height: 44px;
    padding: 0 20px !important;
    font-size: 14px !important;
    border-radius: 22px !important;
    font-weight: 500 !important;
}

.btn-cookie-decline:hover {
    color: #fff !important;
    border-color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 20px;
        border-radius: 20px;
    }
    
    .cookie-content h3 {
        font-size: 16px;
    }
    
    .cookie-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        gap: 10px;
    }
    
    .btn-cookie-accept, .btn-cookie-decline {
        height: 40px;
        font-size: 13.5px !important;
        border-radius: 20px !important;
    }
}
