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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #232831;
    overflow-x: hidden;
}

/* Contact Links Styles */
a[href^="tel:"], a[href^="mailto:"] {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a[href^="tel:"]:hover, a[href^="mailto:"]:hover {
    color: #F4583D;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.navbar {
    padding: 16px 0;
}

.nav-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-link {
    outline: 0;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-icon-btn {
    background: none;
    border: 1px solid rgb(255 255 255);
    border-radius: 50px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.nav-icon-btn:hover {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.2);
}

.nav-icon-btn:hover img {
    filter: brightness(0) saturate(100%);
}

.nav-icon-btn img {
    width: 20px;
    height: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}
.p10 {
    padding-top: 10px;
}
/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: url('images/bg_slide.png'), url('images/slide1.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Hero Slider Styles */
.hero-slider-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/bg_slide.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('images/slide_down.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

/* Vertical Pagination */
.hero-pagination {
    left: auto!important;
    position: absolute;
    right: 30px;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto!important;
    height: auto;
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    pointer-events: auto;
    justify-content: center;
    align-items: flex-end;
    padding-right: 20px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.hero-pagination .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #F4583D;
    border-color: #F4583D;
    transform: scale(1.3);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('images/slide_down.svg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    border-radius: 20px;
    opacity: 0.03;
}

.bg-pattern-1 {
    top: 15%;
    left: 10%;
    width: 200px;
    height: 120px;
    background: #007AFF;
    transform: rotate(-10deg);
}

.bg-pattern-2 {
    top: 50%;
    right: 15%;
    width: 150px;
    height: 100px;
    background: #007AFF;
    transform: rotate(15deg);
}

.bg-pattern-3 {
    bottom: 25%;
    left: 20%;
    width: 120px;
    height: 80px;
    background: #007AFF;
    transform: rotate(-5deg);
}

.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.circle {
    position: absolute;
    border: 1px solid rgba(0, 122, 255, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.circle-1 {
    top: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.circle-2 {
    top: 40%;
    right: 25%;
    width: 40px;
    height: 40px;
    animation-delay: 1s;
}

.circle-3 {
    bottom: 30%;
    left: 30%;
    width: 80px;
    height: 80px;
    animation-delay: 2s;
}

.circle-4 {
    top: 60%;
    left: 60%;
    width: 50px;
    height: 50px;
    animation-delay: 3s;
}

.circle-5 {
    bottom: 40%;
    right: 40%;
    width: 70px;
    height: 70px;
    animation-delay: 4s;
}

.circle-6 {
    top: 80%;
    right: 15%;
    width: 45px;
    height: 45px;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1920px;

    padding: 0 100px;
}

.hero-text {
    text-align: left;
    margin-bottom: 0;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.title-line-1 {
    font-family: 'RF Dewi Expanded', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 60px);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: left;
    color: #FFFFFF;
    letter-spacing: 0.05em;
}

.title-line-2 {
    font-family: 'Inter Display', sans-serif;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.01em;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.btn {
    border: none;
    border-radius: 48px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    z-index: 102;
    pointer-events: auto !important;
}

.btn-primary {
    background: #F4583D;
    color: white;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(244, 88, 61, 0.3);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.btn-primary:hover {
    background: #e04832;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 88, 61, 0.4);
}

.btn-secondary {
    background: white;
    color: #333;
    padding: 16px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.hero-subtitle {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-subtitle p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
}

/* Section Styles */
section {
    background: #232831;
}

/* Gallery Section */
.gallery {
    padding: 100px 0 120px 0;
    background: #232831;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 100px;
}

.gallery-header {
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    align-content: center;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: absolute;
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SF Pro', sans-serif;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
}

.gallery-btn-prev {
    padding: 24px;
    background: transparent;
    color: white;
    margin-right: 5px;
     border: 1.5px solid #F4583D;
}

.gallery-btn-next {
    padding: 24px;
    background: transparent;
    color: white;
    border: 1.5px solid #F4583D;
}

.gallery-btn-prev:hover {
    background: #F4583D;
    width: 97px;
    height: 50px;
    transform: none;
}

.gallery-btn-next:hover {
    background: #F4583D;
    width: 97px;
    height: 50px;
    transform: none;
}

.gallery-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.gallery-arrow-left {
    transform: rotate(0deg);
}

.gallery-arrow-right {
    transform: rotate(180deg);
}

/* Отключение стандартных стилей Swiper для стрелок */
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none !important;
    content: none !important;
}

.gallery-info {
    text-align: center;
    order: 1;
}

.gallery-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.gallery-subtitle {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.21em;
    color: #FFFFFF;
}

.gallery-content {
    position: relative;
    width: 100%;
    height: auto;
}

.gallery-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gallery-swiper .swiper-wrapper {
    align-items: flex-start;
}

.gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.gallery-slide-layout {
    position: relative;
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}

.gallery-image {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-image-left {
    left: 80px;
    top: 35px;
    width: 380px;
    height: 300px;
    z-index: 2;
    opacity: 0.7;
    -webkit-mask-image: url('images/gallery/left.svg');
    mask-image: url('images/gallery/left.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.gallery-image-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 500px;
    height: 380px;
    z-index: 3;
    opacity: 1;
}

.gallery-image-center.active {
    transform: translateX(-50%) scale(1.05);
  
}

.gallery-image-right {
    right: 80px;
    top: 35px;
    width: 380px;
    height: 300px;
    z-index: 2;
    opacity: 0.7;
    -webkit-mask-image: url('images/gallery/right.svg');
    mask-image: url('images/gallery/right.svg');
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}



.gallery-image:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.gallery-image-center:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.gallery-image-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 40px;
}

.gallery-image-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 40px;
}

.gallery-info-section {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    width: 100%;
    max-width: 360px;
}

.gallery-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.21em;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.gallery-section-description {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.21em;
    color: #FFFFFF;
    max-width: 609px;
    margin: 0;
}


/* Hero Banner Section */
.hero-banner {
    background-image: url('/images/hero-bg-3eeabf.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 1032px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 29, 35, 0.3);
    z-index: 1;
}

.hero-banner-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 5;
}

.hero-banner-content {
    text-align: center;
}

.hero-banner-title {
    padding-bottom: 100px;
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.hero-banner-line {
    /* padding-top: 10px; */
    display: block;
    margin: 29px auto -29px;
    max-width: 100%;
    height: auto;
}

.hero-banner-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-banner-decoration {
    position: absolute;
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.hero-banner-decoration-top {
    top: -1px;
    left: 0;
}

.hero-banner-decoration-bottom {
    bottom: -1px;
    left: 0;
}

/* Model Section */
.model-section {
    background-color: #232831;
    padding: 80px 0;
}

.model-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 50px;
}

.model-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.model-info {
    flex: 1;
    max-width: 415px;
}

.model-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 60px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 50px 0;
}

.model-features {
    margin-bottom: 50px;
}

.model-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-marker {
    width: 12px;
    height: 12px;
    background-color: #484B51;
    border-radius: 3px;
    flex-shrink: 0;
}

.feature-text {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.54;
    color: #FFFFFF;
}

.model-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-buy-btn {
    background-color: #F4583D;
    border: none;
    border-radius: 48px;
    padding: 16px 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.56;
    color: #FFFFFF;
    cursor: pointer;
    backdrop-filter: blur(14px);
    transition: all 0.3s ease;
}

.model-buy-btn:hover {
    background-color: #e04832;
    transform: translateY(-2px);
}

.model-icon-btn {
    width: 60px;
    height: 60px;
    background-color: #484B51;
    border: none;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.model-icon-btn:hover {
    background-color: #5a5d63;
    transform: translateY(-2px);
}

.icon-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.model-image {
    flex: 1;
    max-width: 848px;
}

.model-img {
    width: 100%;
    height: 460x;
    object-fit: cover;
    border-radius: 14px;
    background-color: #121821;
    margin-bottom: 15px;
}
.model-header .nav-container {
    padding: 0 120px;
}
/* Responsive Design for Gallery Section */
@media (max-width: 1500px) {
    .gallery-slide-layout {
        height: 400px;
    }
    
    .gallery-image-left {
        width: 300px;
        height: 240px;
        left: 60px;
    }
    
    .gallery-image-center {
        width: 400px;
        height: 320px;
    }
    
    .gallery-image-right {
        width: 300px;
        height: 240px;
        right: 60px;
    }
}

@media (max-width: 1300px) {
    .gallery-slide-layout {
        height: 350px;
    }
    
    .gallery-image-left {
        width: 250px;
        height: 200px;
        left: 50px;
    }
    
    .gallery-image-center {
        width: 350px;
        height: 280px;
    }
    
    .gallery-image-right {
        width: 250px;
        height: 200px;
        right: 50px;
    }
}

@media (max-width: 1100px) {
    .gallery-slide-layout {
        height: 300px;
    }
    
    .gallery-image-left {
        width: 200px;
        height: 160px;
        left: 60px;
    }
    
    .gallery-image-center {
        width: 300px;
        height: 240px;
    }
    
    .gallery-image-right {
        width: 200px;
        height: 160px;
        right: 60px;
    }
}

/* Responsive Design for Model Section */
@media (max-width: 1400px) {
    .model-content {
        gap: 100px;
    }
    
    .model-title {
        font-size: 50px;
    }
    
    .feature-text {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .model-content {
        gap: 80px;
    }
    
    .model-title {
        font-size: 45px;
    }
    
    .feature-text {
        font-size: 20px;
    }
    
    .model-img {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .model-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .model-info {
        max-width: 100%;
        order: 1;
    }
    
    .model-image {
        max-width: 100%;
        order: 2;
    }
    
    .model-title {
        margin-bottom: 30px;
    }
    
    .model-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .model-section {
        margin-top: 50px;
        padding: 0;
    }
    
    .model-container {
        padding: 0 20px;
    }
    
    .model-info {
        width: 100%;
        background-color: #121821;
        padding: 10px;
        border-radius: 20px;
    }

    .model-title {
        font-size: 18px;
        margin-bottom: 0;
    }
    .model-features {
    margin-bottom: 20px;
}
    .feature-text {
        font-size: 16px;
    }
    
    .model-feature {
        margin-bottom: 20px;
    }
    
    .model-actions {
        justify-content: start;
        margin-bottom: 30px;
    }
    
.model-img {
        padding: 10px 35px;
        background: #232831;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .model-title {
        font-size: 28px;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .model-buy-btn {
        font-size: 14px;
        padding: 14px 25px;
    }
    
    .model-icon-btn {
        width: 50px;
        height: 50px;
    }
    
    .icon-arrow {
        width: 16px;
        height: 16px;
    }
    .model-actions {

    gap: 5px;
}
    .model-img {
        height: auto;
    }
}

/* Functional Modules Section */
.functional-section {
    background: #232831;
    padding: 80px 0;
    color: white;
}

.functional-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

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

.functional-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.functional-controls {
    display: flex;
    gap: 5px;
}

.functional-btn {
    width: 60px;
    height: 60px;
    border-radius: 48px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'SF Pro', sans-serif;
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
}

.functional-prev {
    background: #F4583D;
    color: white;
    margin-right: 5px;
}

.functional-next {
    background: transparent;
    color: white;
    border: 1.5px solid #F4583D;
}

.functional-btn:hover {
    transform: scale(1.05);
}

.functional-arrow {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.functional-arrow-left {
    transform: rotate(180deg);
}

.functional-arrow-right {
    transform: rotate(0deg);
}

.functional-content {
    position: relative;
}

.functional-image {
    width: 100%;
    height: 630px;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.functional-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}

.functional-image-label {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.functional-label-icon {
    width: 40px;
    height: 40px;
    max-width: 40px;
    filter: brightness(0) invert(1);
}

.functional-label-text {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 34px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.functional-description {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.25;
    color: white;
    margin: 0;
    max-width: 1588px;
    transition: opacity 0.5s ease-in-out;
}

.functional-equipment {
    margin-top: 40px;
    transition: opacity 0.5s ease-in-out;
}

.equipment-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 0.9375;
    color: white;
    margin-bottom: 20px;
}

.equipment-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.equipment-column {
    flex: 1;
}

.equipment-column p {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: white;
    margin-bottom: 8px;
}

.equipment-column ul {
    list-style-type: square;
    padding-left: 20px;
    margin: 0;
}

.equipment-column li {
    font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.75;
    color: white;
    margin-bottom: 8px;
}

/* Hide show-more button on desktop */
.show-more-btn {
    display: none;
}

/* Responsive styles for Functional Modules */
@media (max-width: 768px) {
    .functional-section {
      padding: 30px 0 0 0;
    }
    

    .functional-header {
        margin-bottom: 20px;
    }
    
    .functional-title {
        margin: 0 auto;
        font-size: 18px;
        text-align: center;
    }
    
    .functional-content .functional-controls {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
    }
    
    .functional-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .functional-arrow {
        width: 20px;
        height: 20px;
    }
    
    .functional-image {
        height: 300px;
        margin-bottom: 0;
    }
    
    .functional-image-label {
        gap: 5px;
        display: flex!important;
        position: static;
        justify-content: center!important;
        margin-bottom: 0;
          padding: 8px 0px 0 0px;
        background: none;
        backdrop-filter: none;
    }
        /* .functional-image-label {
       left: 0;
        top: 0;
        display: flex !important;
        position: relative;
        justify-content: center;
        margin-bottom: 0;
        padding: 8px 8px 0 8px;
        background: none;
        backdrop-filter: none;
        align-items: center;
        align-content: center;
    } */
    .functional-label-icon {
        width: 40px;
        height: 40px;
        max-width: 20px;
    }
    
    .functional-label-text {
        letter-spacing: -0.18px;
        font-size: 13px;
    }
    
    .functional-description {
        text-align: center;
        font-size: 14px;
        line-height: 1.3;
    }
    
    .functional-equipment {
        margin-top: 20px;
    }
    
    .equipment-title {
        font-size: 18px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .equipment-content {
        flex-direction: column;
        gap: 0;
    }
    
    .equipment-column p {
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 6px;
    }
    
    .equipment-column ul {
        padding-left: 15px;
        text-align: left;
    }
    
    .equipment-column li {
        font-weight: 300;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    .equipment-column ul li:nth-child(n+4) {
        display: none;
    }
    
    .equipment-column ul.expanded li:nth-child(n+4) {
        display: list-item;
    }
    
    .show-more-btn {
        background: none;
        border: none;
        color: #F4583D;
        font-family: 'Inter Display', sans-serif;
        font-size: 12px;
        font-weight: 400;
        cursor: pointer;
        text-decoration: underline;
        margin: 15px auto 0 auto;
        padding: 0;
        display: block;
        text-align: center;
    }
    
    .show-more-btn:hover {
        color: #e04832;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: #232831;
    padding: 80px 0;
    color: white;
}

.contact-form-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-form-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    color: white;
    margin-bottom: 30px;
}

.contact-form-subtitle {
    font-family: 'Inter Display', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.21;
    color: white;
    margin-bottom: 60px;
}

.contact-form-wrapper {
    background: #2E333B;
    border-radius: 30px;
    padding: 40px;
    max-width: 770px;
    margin: 0 auto;
}

.form-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.21;
    color: white;
    margin-bottom: 40px;
}

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

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    background: #232831;
    border: none;
    border-radius: 15px;
    padding: 18px 20px;
    font-family: 'Inter Display', sans-serif;
    font-size: 20px;
    color: #919191;
    outline: none;
    box-sizing: border-box;
}

.form-input {
    height: 60px;
}

.form-textarea {
    height: 120px;
    resize: vertical;
    min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #919191;
}

.form-input:focus,
.form-textarea:focus {
    background: #2A2F37;
    color: white;
}

.form-submit-btn {
    background: #F4583D;
    border: none;
    border-radius: 18px;
    padding: 16px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 155px;
    height: 60px;
    margin: 20px auto 0;
    backdrop-filter: blur(14px);
}

.form-submit-btn:hover {
    background: #E04A35;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
    text-align: left;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: #F4583D;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-text {
    font-family: 'Inter Display', sans-serif;
    font-size: 16px;
    color: #919191;
    line-height: 1.4;
    cursor: pointer;
}

.privacy-link {
    color: #F4583D;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #E04A35;
    text-decoration: none;
}

/* Responsive styles for Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 30px 0;
    }
    
    .contact-form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-form-subtitle {
        font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 300;
        margin: 0 auto;
        max-width: 70%;
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 18px;
        padding: 15px 18px;
    }
    
    .form-input {
        height: 50px;
    }
    
    .form-textarea {
        height: 100px;
        min-height: 100px;
    }
    
    .form-submit-btn {
        font-size: 16px;
        padding: 14px 25px;
        width: 100%;
        height: 50px;
      margin: auto;
    }
    
    .checkbox-group {
        margin: 15px 0;
        gap: 10px;
    }
    
    .checkbox-text {
        font-size: 14px;
    }
    
    .checkbox-input {
        width: 18px;
        height: 18px;
    }
}

/* Delivery Section */
.delivery-section {
    background: #232831;
    padding: 50px 0;
    color: white;
}

.delivery-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.delivery-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.12;
    text-transform: uppercase;
    text-align: center;
    color: white;
    margin: 0;
}

.delivery-subtitle {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.21;
    text-align: center;
    color: white;
    margin: 0;
    max-width: 800px;
}

.delivery-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 33px;
    width: 100%;
}

.delivery-services {
    display: flex;
    flex-direction: column;
    gap: 31px;
    width: 847px;
}

.service-card {
    position: relative;
    min-height: 159px;
    padding: 0;
    border-radius: 16px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1.5px solid #F4583D;
    border-radius: 10px;
    flex-shrink: 0;
    margin-left: 14px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 0;
}

.service-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    color: white;
    margin: 0 0 10px 0;
    padding: 0 20px;
}

.service-description {
   font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.11;
    color: white;
    margin: 0;
    padding: 0 20px;
}

.delivery-image {
    width: 840px;
    height: 729px;
    border-radius: 50px;
    overflow: hidden;
}

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

/* Responsive styles for delivery section */
@media (min-width: 768px) and (max-width: 1366px) {
    .service-card {
        gap: 5px;
    }
}

@media (max-width: 1400px) {
    .delivery-content {
        gap: 20px;
    }
    
    .delivery-services {
        width: 600px;
    }
    
    .delivery-image {
        width: 600px;
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .delivery-content {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .delivery-services {
        width: 100%;
        max-width: 600px;
    }
    
    .delivery-image {
        width: 100%;
        max-width: 600px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .delivery-section {
        padding: 40px 0;
    }
    
    .delivery-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .delivery-title {
        font-size: 24px;
        order: 1;
    }
    
    .delivery-subtitle {
        font-size: 14px;
        order: 2;
    }
    
    .delivery-image {
        height: 300px;
        order: 2;
    }
    
    .delivery-services {
        gap: 20px;
        order: 3;
    }
        .delivery-content {
order: 3;
        }
    .service-card {
        height: auto;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        gap: 10px 5px;
        padding: 0;
        align-items: center;
        min-height: auto;
    }
    .w100  {
        width: 100%;
    }
    .service-icon {
        position: static;
        margin: 0;
        grid-column: 1;
        grid-row: 1;
    }
    
    .service-content {
        grid-column: 2;
        grid-row: 1;
        display: flex;
       align-items: flex-start;
    }
    
    .service-title {
        padding: 0;
        font-size: 18px;
        position: static;
        margin: 0;
    }
    
    .service-description {
        font-size: 14px;
        position: static;
        margin: 2px 0 0 0;
        padding: 0;
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    .service-icon {
        max-height: 40px;
        max-width: 40px;
    }
    
    .service-icon img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
}

/* Contact Section */
.contact-section {
    background: #232831;
    padding: 50px 0;
    color: white;
}

.contact-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.contact-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1.12;
    text-transform: uppercase;
    text-align: center;
    color: white;
    margin: 0;
}

.contact-content {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 559px;
}

.contact-subtitle {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.56;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.72;
    color: white;
}

.contact-map {
    width: 840px;
    height: 340px;
    border-radius: 25px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive styles for contact section */
@media (max-width: 1400px) {
    .contact-content {
        gap: 200px;
    }
    
    .contact-map {
        width: 600px;
        height: 300px;
    }
}

@media (max-width: 1200px) {
    .contact-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .contact-info {
        width: 100%;
        max-width: 559px;
    }
    
    .contact-map {
        width: 100%;
        max-width: 600px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .contact-section {
       padding: 0 0 40px 0;
    }
    
    .contact-container {
        padding: 0 20px;
        gap: 15px;
    }
    
    .contact-title {
        font-size: 24px;
        order: 1;
    }
    
    .contact-content {
        order: 2;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-map {
        height: 200px;
        order: 1;
    }
    
    .contact-subtitle {
        margin: 0 auto;
        font-size: 24px;
    }
    
    .contact-text {
        font-size: 14px;
    }
    .contact-item {

    align-items: center;
    gap: 5px;
    flex-direction: column;
}
}

/* Footer */
.footer {
    background: #343640;
    color: white;
}

.footer-main {
    padding: 40px 100px;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
   
}

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

.footer-brand {
    flex: 1;
    max-width: 492px;
}

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

.footer-logo img {
    height: 70px;
}

.footer-description {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.29;
    color: #FFFFFF;
    margin: 0;
}

.footer-divider {
    width: 1px;
    height: 213px;
    background: #6F7078;
    margin: 8px 0;
}

.footer-navigation {
    flex-shrink: 0;
    width: 120px;
    margin-left: 40px;
}

.footer-contacts {
    flex-shrink: 0;
    width: 264px;
    margin-left: 40px;
}

.footer-title {
    font-family: 'Inter Display', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.29;
    color: #FFFFFF;
    margin: 0 0 31px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.55;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F4583D;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-phone,
.footer-email {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.55;
    color: #FFFFFF;
    margin: 0;
}

.footer-address {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
}

.footer-hours {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.72;
    color: #FFFFFF;
    margin: 0;
}

.footer-bottom {
    background: #272933;
    padding: 22px 0;
}

.footer-bottom-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

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

.footer-copyright {
    font-family: 'Inter Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.footer-privacy {
    font-family: 'Inter Display', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.33;
    letter-spacing: -0.6%;
    text-transform: uppercase;
    color: #EAE9EE;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #FFFFFF;
}

.social-link:hover img {
    filter: brightness(0) saturate(100%);
}

.social-link img {
    width: auto;
    height: auto;
    max-width: 20px;
    max-height: 20px;
}

/* Mobile Menu - Hidden by default on desktop */
.mobile-menu-overlay {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Utility Classes */
.d-pc-none {
    display: none;
}

@media (max-width: 768px) {
    .d-pc-none {
        display: block;
    }
    
    .d-mob-none {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-banner {
        height: 600px;
        background-image: url('/images/frame_163.png');
    }
    
    .hero-banner-title {
        font-size: 28px;
        line-height: 1.3;
        margin-top: 80px;
    }
    
    .hero-banner-decoration {
        object-fit: contain;
    }
    
    .hero-banner-decoration-top {
        content: url('/images/mob-up.svg');
        object-position: top;
    }
    
    .hero-banner-decoration-bottom {
        content: url('/images/mob-down.svg');
        object-position: bottom;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100dvh;
        background: #232831;
        z-index: 9999;
        transition: left 0.3s ease;
        flex-direction: column;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay.active {
        left: 0;
    }
    
    
    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        height: 50px;
    }
    
    .mobile-logo img {
        width: 97px;
        height: 30px;
    }
    
    .mobile-logo a {
        display: flex;
        align-items: center;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }
    
    .mobile-logo a:hover {
        opacity: 0.8;
    }
    
    .mobile-menu-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-back-btn,
    .mobile-close-btn {
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 6px;
    }
    
    .mobile-back-btn img,
    .mobile-close-btn img {
        width: 17px;
        height: 17px;
    }
    
    /* Mobile Menu Navigation */
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 60px 0;
        flex: 1;
    }
    
    .mobile-nav-link {
        font-family: 'Inter Display', sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.21;
        color: #FFFFFF;
        text-decoration: none;
        text-align: center;
        transition: opacity 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        opacity: 0.7;
    }
    
    /* Mobile Menu Contact */
    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 0 35px;
        margin-bottom: 40px;
    }
    
    .mobile-contact-phone span {
        font-family: 'Jost', sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.94;
        color: #FFFFFF;
    }
    
    .mobile-contact-email span {
        font-family: 'Jost', sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.94;
        color: #FFFFFF;
    }
    
    .mobile-contact-address span {
        font-family: 'Jost', sans-serif;
        font-weight: 300;
        font-size: 16px;
        line-height: 1.19;
        color: #FFFFFF;
        text-align: center;
    }
    
    /* Mobile Menu Social */
    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 50px;
        padding: 0 110px;
        margin-bottom: 32px;
    }
    
    .mobile-social-link {
        width: 40px;
        height: 40px;
        border: 1px solid #FFFFFF;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .mobile-social-link:hover {
        background: #FFFFFF;
    }
    
    .mobile-social-link:hover img {
        filter: brightness(0) saturate(100%);
    }
    
    .mobile-social-link img {
        width: auto;
        height: auto;
        max-width: 22px;
        max-height: 22px;
    }
    
    .hero-actions {
      justify-content: center;
        gap: 10px;
    }
    
    .gallery-content {
        height: auto;
        min-height: 400px;
        overflow: hidden;
        padding: 0;
    }
    
    .gallery-slide-layout {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 380px;
        position: relative;
        overflow: hidden;
    }
    .gallery-controls {
        bottom: 5%;
    }
    .gallery-image {
        position: absolute;
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .gallery {
    padding: 0;
    }
    .gallery-image-left {
        left: -40%;
        width: 50%;
        height: 200px;
        z-index: 1;
        opacity: 0.6;
        transform: scale(0.8);
        -webkit-mask-image: url('images/slider-left.svg');
        mask-image: url('images/slider-left.svg');
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
    
    .gallery-image-center {
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 250px;
        z-index: 3;
        opacity: 1;
    }
    
    .gallery-image-right {
        right: -40%;
        width: 50%;
        height: 200px;
        z-index: 1;
        opacity: 0.6;
        transform: scale(0.8);
        -webkit-mask-image: url('images/slider-right.svg');
        mask-image: url('images/slider-right.svg');
        -webkit-mask-size: cover;
        mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
    
    .gallery-header {
        margin-bottom: 20px;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .gallery-info {
        text-align: center;
        order: 1;
    }
    
    .gallery-controls {
        order: 2;
        justify-content: center;
    }
    
    .gallery-info-section {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 230px;
    }
    
    .gallery-title {
        font-size: 24px;
    }
    
    .gallery-subtitle {
        font-size: 14px;
    }
    
    .gallery-section-title {
        font-size: 18px;
    }
    
    .gallery-section-description {
        font-size: 13px;
    }
    
    .footer-container {
        padding: 0 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-divider {
        width: 100%;
        height: 1px;
        margin: 0;
        background: #F4583D;
    }
    
    .footer-navigation,
    .footer-contacts {
        display: none;
    }
    
    .footer-divider:last-of-type {
        display: none;
    }
    
    .footer-bottom-container {
        padding: 0 100px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Hero Slider Mobile Styles */
    .hero-slider-section {
        height: 100vh;
    }
    
    .hero-content {
        padding: 20px;
        max-width: 90%;
    }
    
    /* Mobile video source */
    .hero-image[src*="video_pc2.mp4"] {
        content: url('images/hero-slider/video_pc2-mob.mov');
    }
    
    .hero-title {
        margin-bottom: 15px;
        gap: 5px;
        font-size: 28px;
        line-height: 1.2;
    }
    
    .hero-text {
        font-size: 14px;
        margin: 15px 0;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 15px;
        align-items: center;
    }
    .btn-primary {

    padding: 6px 32px;
    }
    .btn-secondary {
        width: 40px;
        height: 40px;
    }
    .hero-pagination {
        right: 20px;
        gap: 8px;
    }
    
    .hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0;
        background: rgba(255, 255, 255, 0.5);
        border: 2px solid rgba(255, 255, 255, 0.7);
    }
    
    .hero-pagination .swiper-pagination-bullet-active {
        transform: scale(1.2);
    }
    
    .footer-main {
    padding: 40px 20px;
}
.footer-social {
    order: 1;
}
.footer-copyright {
    order: 2;
}
.footer-privacy {
    order: 3;
}
}

@media (max-width: 480px) {
    .hero-banner {
        height: 400px;
    }
    
    .hero-banner-title {
        margin: 0px auto -111px;
        text-align: center;
        width: 90%;
        font-size: 14px;
        line-height: 1.4;
        position: relative;
        z-index: 10;
    }
    
    .hero-banner-container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    .model-header .nav-container {
    padding: 0 16px;
}
    .hero {
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 100px;
        background: url('images/bg-mob.png'), url('images/slide1.jpg');
        background-size: cover, cover;
        background-position: center, center;
        background-repeat: no-repeat, no-repeat;
    }
.d-mob-none-imp {
    display: none!important;
}
    .hero-content {
        transform: translateY(-35%) !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0 16px;
    }
    .hero-text {
        padding-top: 30px;
        text-align: center;
    }
    .hero-subtitle {
        bottom: 40px;
        padding: 0 16px;
    }
    
    .hero::after {
        background: url('images/bg-mob_down.svg');
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
    
    .hero-slide-bg::after {
        background: url('images/bg-mob_down.svg');
        background-size: contain;
        background-position: center bottom;
        background-repeat: no-repeat;
    }
    
    .gallery-container,
    .footer-container {
        padding: 0;
    }
    
    .footer-bottom-container {
        padding: 0 16px;
    }
    
    .footer-description {
        font-size: 20px;
    }
    
    .footer-title {
        font-size: 20px;
    }
    
    .footer-phone,
    .footer-email,
    .footer-address {
        font-size: 18px;
    }
    
    .footer-hours {
        font-size: 16px;
    }
    
    .footer-copyright,
    .footer-privacy {
        font-size: 14px;
    }
    .footer-bottom-content {
        gap: 10px;
    }
    .gallery-thumbnails {
        justify-content: center;
    }
    .delivery-img {
        border-radius: 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loaded {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .circle {
        animation: none;
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.nav-icon-btn:focus {
    outline: none;
    outline-offset: 2px;
}

/* Model RYS Page Styles */

/* Breadcrumbs Styles */
.breadcrumbs-section {
   
    padding: 80px 0 0 0;
}

.breadcrumbs-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
}

.breadcrumbs {
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    font-family: 'Inter Display', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.21;
    color: #DCDCDC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #F4583D;
}

.breadcrumb-separator {
    font-family: 'Inter Display', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    color: #F4583D;
}

.breadcrumb-current {
    font-family: 'Inter Display', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.21;
    color: #DCDCDC;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding-left: 0;
    }
    .breadcrumbs-section {
       padding: 65px 0 0 0;
    }
    .breadcrumbs-container {
    text-align: left;
   
    margin: 0;
    padding: 0 20px;
}
    .breadcrumb-link,
    .breadcrumb-current {
        font-size: 18px;
    }
    
    .breadcrumb-separator {
        font-size: 14px;
    }
}

/* Model Info Section Styles */
.model-info-section {
   
    padding: 40px 100px;
    color: #FFFFFF;
}

.model-info-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
}

.model-title-wrapper {
    text-align: left;
    margin-bottom: 20px;
}

.model-main-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.02em;
}

.model-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.model-image-background {
    background-color: #1A1F2A;
    border-radius: 50px;
    padding: 40px;
    width: 100%;
    max-width: 1720px;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.model-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
 
}

.benefit-background {
    background-color: #1A1F2A;
    border-radius: 30px;
    padding: 30px;
    height: 100%;
}

.benefit-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.4;
}

/* Interactive Model Section Styles */
.interactive-model-section {
  
    padding: 0;
    color: #FFFFFF;
}

.interactive-model-container {
    max-width: 1720px;
    margin: 0 auto;
    padding: 0 20px;
}

.model-diagram-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
   
    border-radius: 50px;
    padding: 40px;
    min-height: 640px;
}

.model-diagram-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.tooltip-point {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.tooltip-point:hover {
    transform: scale(1.1);
}

.tooltip-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tooltip-point::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #232831;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Inter Display', sans-serif;
    font-size: 14px;
    font-weight: 300;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border: 2px solid #F4583D;
    z-index: 1000;
}

.tooltip-point:hover::after {
    opacity: 1;
    visibility: visible;
}

.tooltip-point:hover {
    z-index: 999;
}

@media (max-width: 1024px) {
    .tooltip-point {
        transform: scale(0.8);
    }
    
    .model-diagram-wrapper {
        padding: 30px;
    }
    
    .tooltip-point::after {
        font-size: 13px;
        padding: 7px 11px;
        bottom: 45px;
    }
}

@media (max-width: 768px) {
    .model-info-section {
        padding: 30px 0;
    }
    
    .model-main-title {
        font-size: 24px;
    }
    
    .model-image-background {
        height: 400px;
        padding: 20px;
        border-radius: 30px;
    }
    
    .model-benefits {
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .benefit-item {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .benefit-item:nth-child(3) {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .benefit-background {
        padding: 20px;
    }
    
    .benefit-content {
        gap: 15px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
    .benefit-icon img {
        width: 25px;
        height: 25px;
    }
    .benefit-background {
        padding: 10px;
        border-radius: 15px;
    }
        .benefit-content {
        gap: 10px;
    }
        .model-benefits {
        gap: 10px;
        }
        .model-image-wrapper {
            margin-bottom: 10px;
        }
    .interactive-model-section {
        padding: 0;
    }
    
    .model-diagram-wrapper {
        min-height: 400px;
        padding: 20px;
        border-radius: 30px;
    }
    
    .tooltip-point {
        width: 30px;
        height: 30px;
        transform: scale(0.75);
        position: absolute;
    }
    
    .tooltip-point::after {
        font-size: 12px;
        padding: 6px 10px;
        bottom: 40px;
        transform: translateX(-50%) scale(1.33);
        white-space: normal;
        max-width: 200px;
        word-wrap: break-word;
        text-align: center;
        left: 50%;
        right: auto;
        z-index: 1000;
    }
    
    .tooltip-point.active {
        z-index: 999;
    }
    
    .tooltip-point.active::after {
        z-index: 1000;
    }
    
    .tooltip-point[data-tooltip="Надёжная рессорная подвеска и колеса радиусом 16 дюймов"] {
        left: 23.1% !important;
        top: 66.4% !important;
    }
    
    .tooltip-point[data-tooltip="Отсеки для хранения (справа) и душа (слева)"] {
        left: 13.7% !important;
        top: 27.8% !important;
    }
}

@media (max-width: 480px) {
    .model-main-title {
        font-size: 28px;
    }
    
    .model-image-background {
        height: 300px;
    }
    
    .model-diagram-wrapper {
        min-height: 300px;
    }
    
    .tooltip-point {
        width: 25px;
        height: 25px;
    }
    
    .tooltip-point::after {
        width: 115px;
        font-size: 11px;
        padding: 4px 8px;
        bottom: 35px;
        white-space: normal;
        max-width: 150px;
        word-wrap: break-word;
        text-align: center;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
    }
    
    .tooltip-point.active {
        z-index: 999;
    }
    
    .tooltip-point.active::after {
        z-index: 1000;
    }
}

/* Base Model Section */
.base-model-section {
    padding: 80px 0;
   
}

.base-model-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 100px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-direction: column;
}

.base-model-content {
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.base-model-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.base-model-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.base-model-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.21;
    color: #ffffff;
    margin: 0;
}

.base-model-divider {
    width: 100%;
    height: 1px;
    background-color: #ffffff;
}

.base-model-specs {
    display: flex;
    gap: 216px;
}

.spec-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-column:first-child {
    width: 654px;
}

.spec-column:last-child {
    width: 851px;
}

.spec-title {
    font-family: 'RF Dewi Expanded', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.spec-list {
   
    padding: 0;
    margin: 0;
   font-family: 'Inter Display', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    color: #ffffff;
}

.spec-list li {
    margin-left: 18px;
    margin-bottom: 0;
}

.base-model-photo {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: stretch;
}

.photo-placeholder {
    max-width: 100%;
    width: 1720px;
    height: 640px;
    background-color: #121821;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-text {
    font-family: 'SF Pro', sans-serif;
    font-weight: 400;
    font-size: 112px;
    line-height: 0.56;
    color: #ffffff;
}

.base-model-image {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 60px;
}

.photo-description {
    font-family: 'Inter Display', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 1.21;
    color: #ffffff;
    margin: 0;
}

/* Responsive adjustments for Base Model Section */
@media (max-width: 1400px) {
    .base-model-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .base-model-specs {
        gap: 40px;
    }
    
    .spec-column:first-child,
    .spec-column:last-child {
        width: 100%;
    }
    
    .photo-placeholder {
        width: 100%;
        max-width: 800px;
        height: 400px;
        margin: 0 auto;
    }
    
    .photo-text {
        font-size: 80px;
    }
}

/* Mobile-only elements */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .base-model-content {
        gap: 20px;
    }
    .mobile-only {
        display: block;
        margin-top: 15px;
    }
    
    .base-model-container {
        padding: 0 20px;
        gap: 15px;
    }
    .functional-section {
        margin: 0 20px;
    }
    .functional-container {
     padding: 20px;
        background: #121821;
        border-radius: 25px;
    }
    
    .base-model-section {
        padding: 60px 0;
    }
        .gallery-controls {
        bottom: 7%;
    }
    .base-model-title {
        font-size: 36px;
    }
    
    .base-model-description {
        font-size: 24px;
    }
    
    .base-model-specs {
        flex-direction: column;
        gap: 30px;
    }
    
    .spec-title {
        font-size: 24px;
    }
    
    .spec-list {
        font-size: 14px;
    }
    
    .photo-placeholder {
        height: 300px;
    }
    
    .photo-text {
        font-size: 60px;
    }
    
    .photo-description {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 32px;
        font-weight: 900;
        text-align: center;
    }
        .title-line-2 {
        font-size: 12px;
    }
    .base-model-section {
        padding: 30px 0;
    }
    
    .base-model-title {
        font-size: 24px;
    }
    
    .base-model-description {
        font-size: 12px;
    }
    
    .spec-title {
        font-size: 18px;
    }
    
    .spec-list {
        font-size: 12px;
    }
    
    .photo-placeholder {
        border-radius: 20px;
        height: 250px;
    }
    .base-model-photo {
        gap: 10px;
    }
    
    .photo-text {
        font-size: 40px;
    }
    
    .photo-description {
        font-size: 16px;
    }
}

.model-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.model-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.model-hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.model-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .model-hero {
        padding: 100px 0 60px;
    }
    
    .model-hero-title {
        font-size: 2.5rem;
    }
    
    .model-hero-subtitle {
        font-size: 1rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #232831;
    margin: 5% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Gallery smooth animations */
@keyframes gallerySlideInLeft {
    0% {
        transform: translateX(-50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes gallerySlideInCenter {
    0% {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes gallerySlideInRight {
    0% {
        transform: translateX(50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes galleryFadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes gallerySlideOut {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

/* Gallery transition classes */
.gallery-slide-layout {
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide-entering {
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: forwards;
}

.gallery-slide-leaving {
    animation: gallerySlideOut 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.gallery-image {
    transition: all 1.0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.gallery-title, .gallery-description {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #484B51;
}

.modal-header h2 {
    font-family: 'Inter Display', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

.modal-close {
    font-size: 32px;
    font-weight: 300;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #F4583D;
}

.modal-body {
    padding: 30px 40px 40px;
    color: #FFFFFF;
}

.modal-body h3 {
    font-family: 'Inter Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #F4583D;
    margin: 30px 0 15px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-family: 'Inter Display', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.modal-body ul {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.modal-body li {
    font-family: 'Inter Display', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 8px;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .mobile-social-link {
        padding: 10px;
    }
    .mobile-menu-contact {
        font-family: 'Jost', sans-serif;
        color: #fff
    }
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 20px;
    }
    
    .modal-close {
        font-size: 28px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-body h3 {
        font-size: 18px;
    }
    
    .modal-body p,
    .modal-body li {
        font-size: 14px;
    }
    .btn-icon {
    width: 16px;
    height: 16px;
}
    .hero-actions {

        gap: 5px;

    }
}

/* Print Styles */
@media print {
    .header,
    .hamburger,
    .nav-actions,
    .hero-actions,
    .gallery-controls,
    .modal {
        display: none;
    }
    
    .hero {
        padding-top: 0;
        min-height: auto;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}