/* Montebello Riviera - Home Page */

@font-face {
    font-family: 'Serena';
    src: url('/fonts/Serena.otf') format('opentype'),
         url('/fonts/Serena.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Manrope', sans-serif;
    color: #ffffff;
    background: #061c24;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 168px;
    background: linear-gradient(to bottom, #061c24 0%, rgba(6, 28, 36, 0.85) 40%, rgba(6, 28, 36, 0.4) 70%, rgba(255, 255, 255, 0) 100%);
    transition: background 0.3s ease, height 0.3s ease;
}

.site-header.header-scrolled {
    height: 80px;
    background: rgba(6, 28, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 60px;
}

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

.header-logo:hover {
    opacity: 0.85;
}

.header-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.site-header.header-scrolled .header-logo-img {
    height: 50px;
}

/* Dropdown */
.header-dropdown {
    position: relative;
}

.header-dropdown-trigger {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.3s ease;
}

.header-dropdown-trigger:hover {
    opacity: 0.85;
}

.header-dropdown-trigger svg {
    width: 10px;
    height: 6px;
    transition: transform 0.3s ease;
}

.header-dropdown:hover .header-dropdown-trigger svg {
    transform: rotate(180deg);
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 16px;
    background: rgba(6, 28, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.header-dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

.header-nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: opacity 0.3s ease;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.header-nav-link:hover {
    opacity: 0.85;
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-cta-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #382f2d;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.header-cta-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.header-lang-dropdown {
    position: relative;
    flex-shrink: 0;
}

.header-lang-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    cursor: pointer;
    background: none;
    border: none;
    transition: opacity 0.3s ease;
}

.header-lang-trigger:hover {
    opacity: 0.8;
}

.header-lang-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
}

.header-lang-arrow {
    width: 10px;
    height: 6px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.header-lang-dropdown:hover .header-lang-arrow {
    transform: rotate(180deg);
}

.header-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(6, 28, 36, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 70px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.header-lang-dropdown:hover .header-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-lang-option {
    display: block;
    padding: 8px 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-align: center;
    transition: color 0.2s ease;
}

.header-lang-option:hover,
.header-lang-option.active {
    color: #ffffff;
}

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

.header-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.header-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 56, 73, 0.2) 0%, rgba(7, 56, 73, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 56, 73, 0) 0%, rgba(7, 56, 73, 0.5) 97.33%);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 168px 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 68px;
}

/* Center Block: Title + CTA */
.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-title {
    font-family: 'Serena', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 64px;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    text-shadow: 6px 5px 11.6px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
}

.hero-cta-btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #382f2d;
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-cta-btn:hover {
    background: #f0eeeb;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* Bottom Row */
.hero-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-description {
    flex: 1;
    max-width: 416px;
}

.hero-description p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 120%;
    color: #ffffff;
    letter-spacing: -0.48px;
    width: 416px;
    max-width: 100%;
}

/* Price Badge */
.hero-badge {
    flex-shrink: 0;
}

.hero-badge-circle {
    width: 216px;
    height: 216px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.95);
}

.hero-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-badge-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #4d6170;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.hero-badge-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #4d6170;
    text-transform: uppercase;
}

/* ============================================
   PAGE HERO (internal pages)
   ============================================ */

.page-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 56, 73, 0.05) 0%, rgba(7, 56, 73, 0.5) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-bottom: 0;
    margin-bottom: 0;
    width: 100%;
    max-width: 1320px;
}

.page-hero-title {
    align-self: stretch;
    color: #ffffff;
    text-align: center;
    text-shadow: 6px 5px 11.6px rgba(0, 0, 0, 0.25);
    font-family: 'Serena', serif;
    font-size: 96px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease 0.2s forwards;
}

.page-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease 0.4s forwards;
}

.page-hero-line {
    width: 2px;
    height: 94px;
    background: #dfd8cf;
    opacity: 0;
    animation: heroFadeIn 0.8s ease 0.6s forwards;
}

/* Hero with badge variant */
.page-hero--with-badge .page-hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.page-hero-badge {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    z-index: 2;
    text-decoration: none;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease 0.6s forwards;
}

.page-hero-badge .hero-badge-circle {
    width: 216px;
    height: 216px;
}

.page-hero-badge .hero-badge-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.page-hero-badge .hero-badge-price {
    font-size: 22px;
    text-transform: uppercase;
    color: #073849;
    font-weight: 700;
}

.page-hero-badge:hover .hero-badge-circle {
    transform: scale(1.05);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.page-hero-badge .hero-badge-circle {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 1024px) {
    .page-hero-badge {
        top: 80px;
        right: 40px;
    }

    .page-hero-badge .hero-badge-circle {
        width: 180px;
        height: 180px;
    }

    .page-hero-title {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 44px;
    }

    .page-hero-line {
        height: 60px;
    }

    .page-hero-badge {
        top: auto;
        bottom: 24px;
        right: 24px;
    }

    .page-hero-badge .hero-badge-circle {
        width: 150px;
        height: 150px;
    }

    .page-hero-badge .hero-badge-label {
        font-size: 12px;
    }

    .page-hero-badge .hero-badge-price {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 36px;
    }
}

/* ============================================
   OUR PHILOSOPHY SECTION
   ============================================ */

.section-philosophy {
    background: #dfd8cf;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 100px 60px;
}

.philosophy-top {
    display: flex;
    gap: 235px;
    align-items: flex-start;
    width: 100%;
}

.philosophy-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.philosophy-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2.8px;
    color: #c49e81;
}

.philosophy-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #073849;
    width: 644px;
    max-width: 100%;
}

.philosophy-heading-light {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    line-height: 49px;
}

.philosophy-right {
    width: 417px;
    flex-shrink: 0;
    color: #073849;
}

.philosophy-right p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 16px;
}

.philosophy-right p:last-child {
    margin-bottom: 0;
}

.philosophy-right strong {
    font-weight: 700;
    font-size: 16px;
}

.philosophy-image {
    width: 100%;
    height: 438px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1280px) {
    .philosophy-top {
        gap: 80px;
    }

    .philosophy-heading {
        font-size: 30px;
        width: 500px;
    }

    .philosophy-right {
        width: 360px;
    }
}

@media (max-width: 1024px) {
    .section-philosophy {
        padding: 60px 40px;
    }

    .philosophy-top {
        gap: 40px;
    }

    .philosophy-heading {
        font-size: 28px;
        width: 420px;
    }

    .philosophy-right {
        width: 300px;
    }

    .philosophy-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-philosophy {
        padding: 40px 24px;
    }

    .philosophy-top {
        flex-direction: column;
        gap: 24px;
    }

    .philosophy-heading {
        font-size: 26px;
        width: 100%;
    }

    .philosophy-right {
        width: 100%;
    }

    .philosophy-image {
        height: 250px;
    }
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */

.section-founders {
    background: #dfd8cf;
    padding: 49px 60px;
    position: relative;
}

.founders-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Images grid */
.founders-images {
    position: relative;
    flex-shrink: 0;
    width: 644px;
    height: 688px;
}

.founders-img-main {
    position: absolute;
    left: 113px;
    top: 0;
    width: 531px;
    height: 688px;
    overflow: hidden;
}

.founders-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founders-img-small {
    position: absolute;
    left: 0;
    top: 363px;
    width: 193px;
    height: 261px;
    overflow: hidden;
}

.founders-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small image top-right */
.founders-img-topright {
    position: absolute;
    top: 49px;
    right: 60px;
    width: 164px;
    height: 205px;
    padding: 10px;
    overflow: hidden;
    z-index: 2;
}

.founders-img-topright img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.founders-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 644px;
    flex-shrink: 0;
}

.founders-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2.8px;
    color: #c49e81;
}

.founders-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #073849;
    width: 100%;
}

.founders-heading-light {
    font-weight: 200;
}

.founders-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    width: 100%;
}

.founders-credit {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
}

.founders-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.founders-btn:hover {
    background: #0a4d63;
    transform: translateY(-1px);
}

@media (max-width: 1280px) {
    .founders-images {
        width: 500px;
        height: 550px;
    }

    .founders-img-main {
        left: 80px;
        width: 420px;
        height: 550px;
    }

    .founders-img-small {
        top: 290px;
        width: 160px;
        height: 220px;
    }

    .founders-text {
        width: 500px;
    }

    .founders-heading {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .section-founders {
        padding: 40px;
    }

    .founders-row {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .founders-images {
        width: 100%;
        height: 450px;
    }

    .founders-img-main {
        left: 60px;
        width: 70%;
        height: 450px;
    }

    .founders-img-small {
        top: 200px;
        width: 140px;
        height: 200px;
    }

    .founders-text {
        width: 100%;
    }

    .founders-img-topright {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-founders {
        padding: 32px 24px;
    }

    .founders-images {
        height: 350px;
    }

    .founders-img-main {
        left: 0;
        width: 100%;
        height: 350px;
    }

    .founders-img-small {
        display: none;
    }

    .founders-heading {
        font-size: 26px;
    }
}

/* ============================================
   DESIGN & MATERIALS SECTION
   ============================================ */

.section-materials {
    background: #dfd8cf;
    padding: 174px 0 100px;
}

.materials-text {
    display: flex;
    gap: 70px;
    align-items: center;
    padding: 0 62px;
    margin-bottom: 60px;
}

.materials-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 679px;
    flex-shrink: 0;
}

.materials-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2.8px;
    color: #c49e81;
}

.materials-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.72px;
    color: #073849;
    max-width: 603px;
}

.materials-heading-light {
    font-weight: 200;
}

.materials-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    width: 529px;
    flex-shrink: 0;
}

/* Carousel */
.materials-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 0 0 62px;
}

.materials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.materials-slide {
    flex-shrink: 0;
    width: 643px;
}

.materials-slide-img {
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 20px;
}

.materials-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.materials-slide-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: normal;
    color: #073849;
}

/* Navigation arrows */
.materials-nav {
    position: absolute;
    top: 190px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.materials-nav:hover {
    opacity: 1;
    transform: none;
    box-shadow: none;
}

.materials-nav-prev {
    left: 20px;
}

.materials-nav-next {
    right: 20px;
}

@media (max-width: 1280px) {
    .section-materials {
        padding: 100px 0 80px;
    }

    .materials-text {
        gap: 40px;
    }

    .materials-left {
        width: 500px;
    }

    .materials-heading {
        font-size: 30px;
    }

    .materials-body {
        width: auto;
        flex: 1;
    }

    .materials-slide {
        width: 500px;
    }

    .materials-slide-img {
        height: 300px;
    }

    .materials-slide-title {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .materials-text {
        flex-direction: column;
        gap: 24px;
        padding: 0 40px;
    }

    .materials-left {
        width: 100%;
    }

    .materials-body {
        width: 100%;
    }

    .materials-carousel {
        padding: 0 0 0 40px;
    }

    .materials-slide {
        width: 420px;
    }

    .materials-slide-img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .section-materials {
        padding: 60px 0 60px;
    }

    .materials-text {
        padding: 0 24px;
    }

    .materials-heading {
        font-size: 26px;
    }

    .materials-carousel {
        padding: 0 0 0 24px;
    }

    .materials-slide {
        width: 300px;
    }

    .materials-slide-img {
        height: 200px;
    }

    .materials-slide-title {
        font-size: 22px;
    }

    .materials-nav {
        width: 40px;
        height: 40px;
        top: 100px;
    }

    .materials-nav svg {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   DOWNLOADS HERO
   ============================================ */

.downloads-hero {
    background: #4d6170;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 339px;
    padding: 100px 60px;
    padding-top: 268px;
}

.downloads-hero-inner {
    display: flex;
    gap: 115px;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
}

.downloads-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
    width: 450px;
    flex-shrink: 0;
}

.downloads-hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.downloads-hero-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #ffffff;
    width: 524px;
    max-width: 100%;
}

.downloads-hero-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #ffffff;
    color: #4d6170;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.downloads-hero-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
}

.downloads-hero-btn svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .downloads-hero {
        padding: 80px 40px;
        padding-top: 228px;
    }

    .downloads-hero-inner {
        gap: 60px;
    }

    .downloads-hero-title {
        font-size: 30px;
        width: 300px;
    }
}

@media (max-width: 768px) {
    .downloads-hero {
        padding: 60px 24px;
        padding-top: 140px;
    }

    .downloads-hero-inner {
        flex-direction: column;
        gap: 24px;
    }

    .downloads-hero-title {
        width: 100%;
        font-size: 28px;
    }

    .downloads-hero-desc {
        width: 100%;
    }

    .downloads-hero-btn {
        font-size: 18px;
    }
}

/* ============================================
   CONTACT HERO
   ============================================ */

.contact-hero {
    background: #4d6170;
    padding: 100px 172px;
    padding-top: 268px;
}

.contact-hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 532px;
    flex-shrink: 0;
    color: #ffffff;
}

.contact-info-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.96px;
}

.contact-info-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    width: 419px;
    max-width: 100%;
}

.contact-info-phone {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-phone:hover {
    opacity: 0.8;
}

.contact-info-email {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-email:hover {
    opacity: 0.8;
}

/* Contact Form (dark variant) */
.contact-form-wrap {
    width: 532px;
    flex-shrink: 0;
}

.contact-form-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.96px;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-input-group input,
.contact-input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    padding: 12px 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    outline: none;
    resize: none;
    transition: border-color 0.3s ease;
}

.contact-input-group input::placeholder,
.contact-input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-input-group input:focus,
.contact-input-group textarea:focus {
    border-bottom-color: #c49e81;
    outline: none !important;
    box-shadow: none !important;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 0;
}

.contact-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
    background: transparent;
}

.contact-checkbox input[type="checkbox"]:checked {
    background: #ffffff;
}

.contact-checkbox span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.contact-submit-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: #4d6170;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
}

@media (max-width: 1280px) {
    .contact-hero {
        padding: 80px 60px;
        padding-top: 248px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 38px;
    }

    .contact-info-phone {
        font-size: 30px;
    }

    .contact-info,
    .contact-form-wrap {
        width: 460px;
    }
}

@media (max-width: 1024px) {
    .contact-hero {
        padding: 60px 40px;
        padding-top: 228px;
    }

    .contact-hero-inner {
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrap {
        width: auto;
        flex: 1;
        flex-shrink: 1;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 34px;
    }

    .contact-info-phone {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 24px;
        padding-top: 132px;
    }

    .contact-hero-inner {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-wrap {
        width: 100%;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 30px;
    }

    .contact-info-phone {
        font-size: 24px;
    }

    .contact-info-email {
        font-size: 20px;
    }
}

/* ============================================
   DOWNLOADS LIST SECTION
   ============================================ */

.section-downloads-list {
    background: #ffffff;
    padding: 100px 60px;
}

.downloads-list-inner {
    display: flex;
    gap: 147px;
    align-items: flex-start;
    max-width: 1317px;
    margin: 0 auto;
}

.downloads-list-image {
    width: 528px;
    height: 505px;
    flex-shrink: 0;
    overflow: hidden;
}

.downloads-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.downloads-list-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 531px;
    flex-shrink: 0;
    height: 505px;
}

.downloads-list-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.downloads-list-item:hover {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.downloads-list-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.downloads-list-item-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.downloads-list-item-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #4d6170;
    text-transform: uppercase;
}

.downloads-list-item-line {
    width: 100%;
    height: 1px;
    background: rgba(77, 97, 112, 0.3);
}

@media (max-width: 1280px) {
    .downloads-list-inner {
        gap: 60px;
    }

    .downloads-list-image {
        width: 400px;
        height: 450px;
    }

    .downloads-list-items {
        width: auto;
        flex: 1;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .section-downloads-list {
        padding: 60px 40px;
    }

    .downloads-list-inner {
        flex-direction: column;
        gap: 40px;
    }

    .downloads-list-image {
        width: 100%;
        height: 350px;
    }

    .downloads-list-items {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-downloads-list {
        padding: 40px 24px;
    }

    .downloads-list-image {
        height: 280px;
    }

    .downloads-list-item-name {
        font-size: 18px;
    }
}

/* ============================================
   VILLA SCHEDA TECNICA
   ============================================ */

.villa-scheda {
    background: #dfd8cf;
    display: flex;
    position: relative;
    min-height: 100vh;
}

/* Vertical lines */
.villa-scheda-line-left,
.villa-scheda-line-center {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #c49e81;
    z-index: 1;
}

.villa-scheda-line-left {
    left: 60px;
}

.villa-scheda-line-center {
    left: 50%;
}

/* Left Column */
.villa-scheda-left {
    width: 50%;
    position: relative;
    padding-left: 60px;
}

.villa-scheda-sticky {
    position: sticky;
    top: 50px;
    height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 100px 0 100px 112px;
    max-width: 419px;
    z-index: 1;
}

.villa-scheda-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 3.2px;
    color: #c49e81;
}

.villa-scheda-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.villa-scheda-desc {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #073849;
}

.villa-scheda-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.8px;
}

.villa-scheda-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.villa-scheda-price {
    display: flex;
    flex-direction: column;
    color: #073849;
}

.villa-scheda-price span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.villa-scheda-price strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: normal;
}

.villa-scheda-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.villa-scheda-btn:hover {
    background: #0a4d63;
}

/* Decorative M */
.villa-scheda-graphic {
    position: absolute;
    left: -155px;
    bottom: 19px;
    width: 618px;
    height: 204px;
    pointer-events: none;
    z-index: 0;
}

.villa-scheda-graphic svg {
    width: 100%;
    height: 100%;
}

/* Right Column */
.villa-scheda-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 100px 60px 100px 60px;
    align-items: flex-end;
}

.villa-scheda-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 602px;
    max-width: 100%;
}

.villa-scheda-card-img {
    width: 100%;
    overflow: hidden;
}

.villa-scheda-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.villa-scheda-card-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.72px;
    color: #073849;
}

/* Details card */
.villa-scheda-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.villa-scheda-specs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #073849;
}

.villa-scheda-specs-row {
    display: flex;
    gap: 48px;
}

.villa-scheda-spec {
    display: flex;
    flex-direction: column;
}

.villa-scheda-spec strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
}

.villa-scheda-spec span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.villa-scheda-details-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.villa-scheda-details-btn:hover {
    background: #0a4d63;
}

/* Location */
.villa-scheda-location {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: #073849;
}

/* ROI */
.villa-scheda-roi {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #073849;
}

.villa-scheda-roi-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.villa-scheda-roi-item strong {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: normal;
}

.villa-scheda-roi-item span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

@media (max-width: 1024px) {
    .villa-scheda {
        flex-direction: column;
    }

    .villa-scheda-left {
        width: 100%;
        padding-left: 40px;
    }

    .villa-scheda-sticky {
        position: relative;
        height: auto;
        padding: 60px 40px 60px 80px;
    }

    .villa-scheda-right {
        width: 100%;
        padding: 0 40px 60px;
        align-items: flex-start;
    }

    .villa-scheda-line-left {
        left: 40px;
    }

    .villa-scheda-line-center {
        display: none;
    }

    .villa-scheda-graphic {
        display: none;
    }

    .villa-scheda-title {
        font-size: 34px;
    }

    .villa-scheda-price strong {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .villa-scheda-left {
        padding-left: 24px;
        padding-bottom: 60px;
    }

    .villa-scheda-sticky {
        padding: 40px 24px 40px 0;
    }

    .villa-scheda-line-left {
        display: none;
    }

    .villa-scheda-right {
        padding: 0 24px 40px;
    }

    .villa-scheda-card-heading {
        font-size: 28px;
    }

    .villa-scheda-spec strong {
        font-size: 26px;
    }

    .villa-scheda-roi-item strong {
        font-size: 26px;
    }

    .villa-scheda-card-img {
        height: auto !important;
        aspect-ratio: 16/10;
    }

    .villa-scheda-card {
        gap: 24px;
    }
}

/* ============================================
   VILLA INVESTING
   ============================================ */

.villa-investing {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.villa-investing-inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 62px 0 100px;
    width: 100%;
    max-width: 1440px;
}

.villa-investing-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    align-self: stretch;
}

.villa-investing-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.8px;
    color: #073849;
    max-width: 650px;
}

.villa-investing-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    max-width: 470px;
}

.villa-investing-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #073849;
    background: transparent;
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    width: 300px;
    transition: background 0.3s ease;
}

.villa-investing-btn:hover {
    background: rgba(7, 56, 73, 0.08);
}

.villa-investing-image {
    width: 600px;
    height: 596px;
    flex-shrink: 0;
    overflow: hidden;
}

.villa-investing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1280px) {
    .villa-investing-inner {
        padding: 0 60px;
        gap: 40px;
    }

    .villa-investing-image {
        width: 50%;
        height: 480px;
    }

    .villa-investing-heading {
        font-size: 34px;
    }
}

@media (max-width: 1024px) {
    .villa-investing-inner {
        flex-direction: column;
        padding: 0 40px;
        gap: 40px;
    }

    .villa-investing-image {
        width: 100%;
        height: 400px;
    }

    .villa-investing-heading {
        font-size: 30px;
    }

    .villa-investing-btn {
        width: auto;
    }
}

@media (max-width: 768px) {
    .villa-investing {
        padding: 60px 0;
    }

    .villa-investing-inner {
        padding: 0 24px;
    }

    .villa-investing-image {
        height: 300px;
    }

    .villa-investing-heading {
        font-size: 26px;
    }
}

/* ============================================
   VILLA TERRITORIO
   ============================================ */

.villa-territorio {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.villa-territorio-bg {
    position: absolute;
    inset: 0;
}

.villa-territorio-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-territorio-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.villa-territorio-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
    padding: 103px 117px;
}

.villa-territorio-location {
    display: flex;
    gap: 8px;
    align-items: center;
}

.villa-territorio-location svg {
    width: 40px;
    height: 41px;
    flex-shrink: 0;
}

.villa-territorio-location span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: normal;
    color: #ffffff;
    text-transform: uppercase;
}

.villa-territorio-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
    width: 450px;
    max-width: 100%;
}

.villa-territorio-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #ffffff;
    width: 423px;
    max-width: 100%;
}

.villa-territorio-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 423px;
    max-width: 100%;
}

.villa-territorio-item {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: normal;
    color: #ffffff;
    text-transform: uppercase;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .villa-territorio-content {
        padding: 80px 40px;
    }

    .villa-territorio-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .villa-territorio {
        min-height: 80vh;
    }

    .villa-territorio-content {
        padding: 60px 24px;
    }

    .villa-territorio-heading {
        font-size: 26px;
        width: 100%;
    }

    .villa-territorio-body {
        width: 100%;
    }

    .villa-territorio-list {
        width: 100%;
    }

    .villa-territorio-item {
        font-size: 18px;
    }
}

/* ============================================
   VILLA OPTIONALS
   ============================================ */

.villa-optionals {
    background: #4d6170;
    padding: 100px 60px 140px;
}

.villa-optionals-inner {
    display: flex;
    gap: 80px;
    max-width: 1320px;
    margin: 0 auto;
}

.villa-optionals-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 400px;
    flex-shrink: 0;
}

.villa-optionals-logo {
    margin-bottom: 8px;
}

.villa-optionals-logo svg {
    width: 117px;
    height: 54px;
}

.villa-optionals-line {
    width: 2px;
    height: 60px;
    background: #ffffff;
}

.villa-optionals-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: #ffffff;
}

.villa-optionals-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
}

.villa-optionals-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.villa-optionals-item {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #ffffff;
    text-transform: uppercase;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.villa-optionals-item:first-child {
    padding-top: 0;
}

@media (max-width: 1024px) {
    .villa-optionals-inner {
        flex-direction: column;
        gap: 48px;
    }

    .villa-optionals-left {
        width: 100%;
    }

    .villa-optionals-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .villa-optionals {
        padding: 60px 24px 80px;
    }

    .villa-optionals-heading {
        font-size: 26px;
    }

    .villa-optionals-item {
        font-size: 18px;
        padding: 20px 0;
    }
}

/* ============================================
   VILLA GALLERY SLIDER
   ============================================ */

.villa-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #073849;
}

.villa-gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.villa-gallery-slide {
    min-width: 100%;
    height: 80vh;
    flex-shrink: 0;
}

.villa-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.villa-gallery-controls {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.villa-gallery-pagination {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    font-style: normal;
    line-height: normal;
    letter-spacing: 7.2px;
    color: #ffffff;
}

.villa-gallery-nav {
    display: flex;
    gap: 16px;
}

.villa-gallery-prev,
.villa-gallery-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.villa-gallery-prev:hover,
.villa-gallery-next:hover {
    opacity: 1;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .villa-gallery-slide {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

    .villa-gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .villa-gallery-controls {
        bottom: 24px;
        left: 24px;
        right: 24px;
    }

    .villa-gallery-prev,
    .villa-gallery-next {
        width: 40px;
        height: 40px;
    }

    .villa-gallery-prev svg,
    .villa-gallery-next svg {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   VILLA HERO
   ============================================ */

.villa-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.villa-hero-bg {
    position: absolute;
    inset: 0;
}

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

.villa-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.1) 45%, #073849 100%);
}

.villa-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.villa-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.villa-hero-title {
    font-family: 'Serena', serif;
    font-weight: 400;
    font-size: 96px;
    line-height: normal;
    color: #ffffff;
    text-shadow: 6px 5px 11.6px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease 0.2s forwards;
}

.villa-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease 0.4s forwards;
}

@media (max-width: 1024px) {
    .villa-hero-title {
        font-size: 64px;
    }

    .villa-hero-subtitle {
        font-size: 20px;
    }

    .villa-hero-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .villa-hero-title {
        font-size: 44px;
    }

    .villa-hero-subtitle {
        font-size: 18px;
        padding: 0 24px;
    }

    .villa-hero-content {
        gap: 40px;
    }
}

/* ============================================
   INVEST IN ITALY SECTION
   ============================================ */

.section-invest-italy {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 173px;
}

.invest-italy-inner {
    display: flex;
    gap: 190px;
    align-items: center;
}

.invest-italy-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    flex-shrink: 0;
    color: #073849;
}

.invest-italy-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2.4px;
}

.invest-italy-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
}

.invest-italy-subheading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    width: 475px;
    max-width: 100%;
}

.invest-italy-body {
    width: 475px;
    max-width: 100%;
}

.invest-italy-body p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.invest-italy-body strong {
    font-weight: 400;
}

.invest-italy-source {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #073849;
    width: 475px;
    max-width: 100%;
}

.invest-italy-map {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.invest-italy-map img {
    width: 432px;
    height: auto;
    display: block;
}

@media (max-width: 1280px) {
    .section-invest-italy {
        padding: 80px 60px;
    }

    .invest-italy-inner {
        gap: 80px;
    }

    .invest-italy-map img {
        width: 350px;
    }
}

@media (max-width: 1024px) {
    .invest-italy-inner {
        gap: 48px;
    }

    .invest-italy-heading {
        font-size: 30px;
    }

    .invest-italy-subheading {
        font-size: 20px;
    }

    .invest-italy-map img {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .section-invest-italy {
        padding: 40px 24px;
    }

    .invest-italy-inner {
        flex-direction: column;
        gap: 40px;
    }

    .invest-italy-subheading,
    .invest-italy-body,
    .invest-italy-source {
        width: 100%;
    }

    .invest-italy-heading {
        font-size: 26px;
    }

    .invest-italy-map img {
        width: 100%;
        max-width: 350px;
    }
}

/* ============================================
   VILLA CARDS SECTION
   ============================================ */

.section-villa-cards {
    background: #ffffff;
    padding: 100px 60px;
}

.villa-cards-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.villa-card-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 391px;
    height: 614px;
}

.villa-card-img {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.villa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.villa-card-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.villa-card-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 100%;
    color: #4d6170;
}

.villa-card-spec {
    display: flex;
    gap: 16px;
    align-items: center;
}

.villa-card-spec svg {
    flex-shrink: 0;
}

.villa-card-spec span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #4d6170;
}

.villa-card-btn {
    display: inline-flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    background: #073849;
    border: 1px solid #2c2c2c;
    color: #f5f5f5;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.villa-card-btn:hover {
    background: #0a4d63;
}

@media (max-width: 1280px) {
    .villa-card-item {
        width: auto;
        flex: 1;
        height: 550px;
    }

    .villa-card-name {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .section-villa-cards {
        padding: 60px 40px;
    }

    .villa-card-item {
        height: 480px;
    }

    .villa-card-name {
        font-size: 26px;
    }

    .villa-card-spec span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-villa-cards {
        padding: 40px 24px;
    }

    .villa-cards-row {
        flex-direction: column;
        gap: 40px;
    }

    .villa-card-item {
        width: 100%;
        height: auto;
    }

    .villa-card-img {
        height: 280px;
        flex: none;
    }
}

/* ============================================
   INVESTING CTA SECTION
   ============================================ */

.section-investing-cta {
    background: #4d6170;
    padding: 80px 100px;
}

.investing-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.investing-cta-text {
    max-width: 530px;
}

.investing-cta-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.investing-cta-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.investing-cta-note {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.6);
}

.investing-cta-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.2s ease;
}

.investing-cta-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .section-investing-cta {
        padding: 60px 40px;
    }

    .investing-cta-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section-investing-cta {
        padding: 40px 24px;
    }

    .investing-cta-inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .investing-cta-heading {
        font-size: 26px;
    }
}

/* ============================================
   CONFIGURATOR SECTION
   ============================================ */

.section-configurator {
    background: #ffffff;
    padding: 47px 120px 60px;
    position: relative;
}

.configurator-title {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 0;
    max-width: 646px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    align-items: center;
}

.configurator-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: -0.96px;
    color: #073849;
}

.configurator-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
}

.configurator-disclaimer {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: rgba(0, 0, 0, 0.25);
}

.configurator-showcase {
    position: relative;
    width: 900px;
    max-width: 100%;
    height: 640px;
    margin: 0 auto;
}

/* Card */
.configurator-card {
    width: 434px;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 24px 23px;
    display: flex;
    flex-direction: column;
    gap: 23px;
    box-shadow: 0 16px 16px -8px rgba(12, 12, 13, 0.1), 0 4px 4px -4px rgba(12, 12, 13, 0.05);
    z-index: 2;
    position: absolute;
    left: 0;
    top: 80px;
}

.configurator-card-img {
    width: 100%;
    aspect-ratio: 387 / 235;
    border-radius: 24px;
    overflow: hidden;
}

.configurator-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.configurator-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.configurator-card-details {
    width: 217px;
}

.configurator-card-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #073849;
    margin-bottom: 4px;
}

.configurator-card-features {
    list-style: disc;
    padding-left: 21px;
    margin: 0;
}

.configurator-card-features li {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: #4d6170;
}

.configurator-card-roi {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #5da900;
}

.configurator-card-roi-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
}

.configurator-card-roi-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    text-align: center;
}

.configurator-card-btn {
    display: flex;
    height: 54px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    background: #4d6170;
    color: #f5f5f5;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: background 0.3s ease;
}

.configurator-card-btn:hover {
    background: #3d5060;
}

/* Calculator - centered/right, behind card & badge */
.configurator-calculator {
    position: absolute;
    left: 180px;
    top: -50px;
    width: 780px;
    z-index: 1;
}

.configurator-calculator img {
    width: 100%;
    height: 830px;
    object-fit: contain;
    object-position: top;
    display: block;
}

/* Badge - overlaps calculator */
.configurator-badge {
    position: absolute;
    right: 20px;
    top: 340px;
    text-decoration: none;
    z-index: 3;
}

/* Proof points */
.configurator-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 24px 60px 0;
}

.configurator-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.configurator-proof-item svg {
    flex-shrink: 0;
}

.configurator-proof-item span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    color: #073849;
    white-space: nowrap;
}

.configurator-badge-circle {
    width: 216px;
    height: 216px;
    border-radius: 50%;
    background: #4d6170;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.configurator-badge-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

.configurator-badge-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 1280px) {
    .section-configurator {
        padding: 40px 60px 80px;
    }

    .configurator-showcase {
        width: 780px;
        height: 620px;
    }

    .configurator-card {
        width: 380px;
        top: 140px;
    }

    .configurator-card-roi-number {
        font-size: 48px;
    }

    .configurator-calculator {
        left: 140px;
        width: 680px;
    }

    .configurator-calculator img {
        height: 720px;
    }

    .configurator-badge {
        right: 0;
        top: 360px;
    }

    .configurator-proof-item span {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .section-configurator {
        padding: 40px 40px 60px;
    }

    .configurator-heading {
        font-size: 36px;
    }

    .configurator-showcase {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .configurator-card {
        position: relative;
        width: 100%;
        max-width: 500px;
        left: auto;
        top: auto;
        z-index: 2;
    }

    .configurator-calculator {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 500px;
        margin-top: -40px;
        z-index: 1;
    }

    .configurator-calculator img {
        height: auto;
        max-height: 500px;
        object-position: center;
    }

    .configurator-badge {
        position: relative;
        right: auto;
        top: auto;
        margin-top: -80px;
        z-index: 3;
        align-self: flex-end;
    }

    .configurator-proof {
        flex-wrap: wrap;
        padding: 40px 40px 0;
    }
}

@media (max-width: 768px) {
    .section-configurator {
        padding: 32px 24px 40px;
    }

    .configurator-heading {
        font-size: 30px;
    }

    .configurator-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .configurator-calculator {
        position: relative;
        order: 1;
        margin-bottom: -80px;
    }

    .configurator-calculator img {
        max-height: 320px;
    }

    .configurator-badge {
        position: relative;
        order: 2;
        right: auto;
        top: auto;
        margin-top: -80px;
        margin-bottom: 32px;
        align-self: flex-end;
        margin-right: 10px;
        z-index: 3;
    }

    .configurator-card {
        position: relative;
        order: 3;
        left: auto;
        top: auto;
    }

    .configurator-card-roi-number {
        font-size: 40px;
    }

    .configurator-badge-circle {
        width: 160px;
        height: 160px;
    }

    .configurator-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 32px 24px 0;
    }

    .configurator-proof-item span {
        font-size: 18px;
        white-space: normal;
    }
}

/* ============================================
   TAX BENEFITS SECTION
   ============================================ */

.section-tax-benefits {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 173px;
}

.tax-benefits-inner {
    display: flex;
    gap: 72px;
    align-items: center;
    width: 1093px;
    max-width: 100%;
    height: 582px;
}

.tax-benefits-image {
    width: 490px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.tax-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tax-benefits-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.tax-benefits-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4d6170;
}

.tax-benefits-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    max-width: 537px;
}

.tax-benefits-intro {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.tax-benefits-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.tax-benefits-item-title {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.tax-benefits-item-title svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.tax-benefits-item-title span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #4d6170;
    text-transform: uppercase;
}

.tax-benefits-item-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #4d6170;
}

.tax-benefits-item-desc strong {
    font-weight: 700;
}

.tax-benefits-divider {
    width: 531px;
    max-width: 100%;
    height: 1px;
    background: rgba(77, 97, 112, 0.3);
}

@media (max-width: 1280px) {
    .section-tax-benefits {
        padding: 80px 60px;
    }

    .tax-benefits-inner {
        gap: 48px;
        height: auto;
    }

    .tax-benefits-image {
        width: 400px;
        height: 500px;
    }

    .tax-benefits-heading {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .tax-benefits-inner {
        flex-direction: column;
        gap: 40px;
    }

    .tax-benefits-image {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .section-tax-benefits {
        padding: 40px 24px;
    }

    .tax-benefits-inner {
        width: 100%;
        height: auto;
    }

    .tax-benefits-image {
        height: 280px;
    }

    .tax-benefits-image img {
        object-position: bottom;
    }

    .tax-benefits-content {
        width: 100%;
        overflow: hidden;
    }

    .tax-benefits-heading {
        font-size: 26px;
    }

    .tax-benefits-item-title span {
        font-size: 18px;
    }

    .tax-benefits-divider {
        width: 100%;
    }
}

/* ============================================
   DATA SECTION
   ============================================ */

.section-data {
    background: #4d6170;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;
    gap: 67px;
}

.data-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
    text-align: center;
}

.data-heading-light {
    font-weight: 200;
}

.data-cards {
    display: flex;
    width: 100%;
    height: 378px;
}

.data-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    border: 1px solid #ffffff;
    text-align: center;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    overflow: hidden;
}

.data-card-label {
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    width: 100%;
}

.data-card-number {
    font-weight: 400;
    font-size: 96px;
    line-height: 100%;
    width: 100%;
}

.data-card-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    width: 100%;
}

@media (max-width: 1024px) {
    .section-data {
        padding: 60px 0;
        gap: 40px;
    }

    .data-heading {
        font-size: 30px;
        padding: 0 40px;
    }

    .data-cards {
        height: auto;
    }

    .data-card {
        padding: 40px 20px;
    }

    .data-card-number {
        font-size: 64px;
    }

    .data-card-label {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-data {
        padding: 40px 0;
    }

    .data-heading {
        font-size: 26px;
        padding: 0 24px;
    }

    .data-cards {
        flex-direction: column;
    }

    .data-card {
        padding: 40px 24px;
        border-left: none;
        border-right: none;
    }

    .data-card-number {
        font-size: 56px;
    }
}

/* ============================================
   INVEST IN MOLISE SECTION
   ============================================ */

.section-invest-molise {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 173px;
}

.invest-molise-inner {
    display: flex;
    gap: 132px;
    align-items: center;
    width: 100%;
    height: 443px;
}

.invest-molise-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 473px;
    flex-shrink: 0;
    color: #073849;
    height: 100%;
}

.invest-molise-light {
    font-weight: 200;
}

.invest-molise-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    width: 468px;
    max-width: 100%;
}

.invest-molise-map {
    flex: 1;
    display: flex;
    align-items: center;
    height: 100%;
}

.invest-molise-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1280px) {
    .section-invest-molise {
        padding: 80px 60px;
    }

    .invest-molise-inner {
        gap: 60px;
        height: auto;
    }

    .invest-molise-text {
        width: 420px;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .invest-molise-inner {
        gap: 40px;
    }

    .invest-molise-text {
        width: 380px;
    }
}

@media (max-width: 768px) {
    .section-invest-molise {
        padding: 40px 24px;
    }

    .invest-molise-inner {
        flex-direction: column;
        gap: 40px;
    }

    .invest-molise-text {
        width: 100%;
    }

    .invest-molise-body {
        width: 100%;
    }

    .invest-molise-map {
        max-width: 400px;
    }
}

/* ============================================
   TERRITORY INTRO SECTION
   ============================================ */

.section-territory-intro {
    background: #a1b7b9;
    position: relative;
    padding: 148px 0;
    overflow: hidden;
    min-height: 1024px;
}

.territory-intro-graphic {
    position: absolute;
    top: 220px;
    right: 60px;
    width: 505px;
    height: 180px;
    pointer-events: none;
    z-index: 0;
}

.territory-intro-graphic svg {
    width: 100%;
    height: 100%;
}

.territory-intro-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 42px;
    align-items: flex-start;
    max-width: 1208px;
    margin: 0 auto;
    padding: 0 60px;
}

.territory-intro-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 548px;
    max-width: 100%;
}

.territory-intro-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2.4px;
    color: rgba(255, 255, 255, 0.8);
}

.territory-intro-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #ffffff;
    width: 529px;
    max-width: 100%;
}

.territory-intro-light {
    font-weight: 200;
}

.territory-intro-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
    width: 418px;
    max-width: 100%;
}

.territory-intro-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.territory-intro-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
}

.territory-intro-images {
    display: flex;
    gap: 19px;
    align-items: center;
    width: 100%;
}

.territory-intro-img-small {
    width: 418px;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
}

.territory-intro-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.territory-intro-img-large {
    width: 771px;
    height: 420px;
    flex-shrink: 0;
    overflow: hidden;
}

.territory-intro-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1280px) {
    .section-territory-intro {
        min-height: auto;
        padding: 100px 0;
    }

    .territory-intro-content {
        padding: 0 40px;
    }

    .territory-intro-img-small {
        width: 35%;
        height: 350px;
    }

    .territory-intro-img-large {
        width: 65%;
        height: 350px;
    }

    .territory-intro-graphic {
        right: 20px;
    }
}

@media (max-width: 1024px) {
    .territory-intro-heading {
        font-size: 30px;
    }

    .territory-intro-img-small {
        height: 280px;
    }

    .territory-intro-img-large {
        height: 280px;
    }

    .territory-intro-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-territory-intro {
        padding: 60px 0;
    }

    .territory-intro-content {
        padding: 0 24px;
    }

    .territory-intro-text {
        width: 100%;
    }

    .territory-intro-heading {
        font-size: 26px;
        width: 100%;
    }

    .territory-intro-body {
        width: 100%;
    }

    .territory-intro-images {
        flex-direction: column;
    }

    .territory-intro-img-small,
    .territory-intro-img-large {
        width: 100%;
        height: 250px;
    }
}

/* ============================================
   TERRITORY INVESTING SECTION
   ============================================ */

.section-territory-investing {
    background: #a1b7b9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 78px;
    padding: 100px 140px;
    position: relative;
    height: 534px;
    overflow: hidden;
}

.territory-investing-graphic {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 828px;
    height: 274px;
    pointer-events: none;
    z-index: 0;
}

.territory-investing-graphic svg {
    width: 100%;
    height: 100%;
}

.territory-investing-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.territory-investing-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 566px;
}

.territory-investing-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2.4px;
    color: #ffffff;
}

.territory-investing-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 200;
    font-size: 32px;
    line-height: normal;
    color: #ffffff;
    text-transform: uppercase;
}

.territory-investing-heading strong {
    font-weight: 500;
}

.territory-investing-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: #ffffff;
}

.territory-investing-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #ffffff;
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.territory-investing-btn:hover {
    background: #f0eeeb;
    transform: translateY(-1px);
}

@media (max-width: 1280px) {
    .section-territory-investing {
        padding: 80px 60px;
        gap: 40px;
    }

    .territory-investing-text {
        width: 480px;
    }
}

@media (max-width: 1024px) {
    .section-territory-investing {
        height: auto;
        padding: 60px 40px;
        justify-content: center;
    }

    .territory-investing-graphic {
        left: -200px;
    }

    .territory-investing-text {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-territory-investing {
        padding: 60px 24px;
    }

    .territory-investing-heading {
        font-size: 26px;
    }

    .territory-investing-body {
        font-size: 18px;
    }

    .territory-investing-graphic {
        display: none;
    }
}

/* ============================================
   MAP + DISTANCES SECTION
   ============================================ */

.section-map-distances {
    display: flex;
    flex-direction: column;
}

/* Map Preview */
.map-preview {
    position: relative;
    width: 100%;
    height: 432px;
    overflow: hidden;
}

.map-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-preview-btn {
    position: absolute;
    right: 99px;
    bottom: 52px;
    display: flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.map-preview-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Distances */
.map-distances {
    background: #dfd8cf;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 100px;
}

.map-distances-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 369px;
    flex-shrink: 0;
}

.map-distances-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #073849;
}

.map-distances-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
}

.map-distances-cards {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}

.map-distance-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    width: 260px;
    height: 200px;
    padding: 24px 48px;
    background: rgba(255, 255, 255, 0.3);
}

.map-distance-data {
    display: flex;
    flex-direction: column;
    color: #4d6170;
}

.map-distance-time {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.8px;
}

.map-distance-mode {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.map-distance-details {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.map-distance-city,
.map-distance-airport {
    display: flex;
    gap: 8px;
    align-items: center;
}

.map-distance-city span,
.map-distance-airport span {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #4d6170;
    white-space: nowrap;
}

.map-distance-city svg,
.map-distance-airport svg {
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .map-distances {
        padding: 60px;
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .map-distances-cards {
        width: 100%;
    }

    .map-distance-card {
        flex: 1;
        width: auto;
        padding: 20px 24px;
    }

    .map-distance-time {
        font-size: 32px;
    }
}

@media (max-width: 1024px) {
    .map-preview {
        height: 350px;
    }

    .map-preview-btn {
        right: 40px;
        bottom: 30px;
    }

    .map-distances {
        padding: 40px;
    }

    .map-distances-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .map-preview {
        height: 280px;
    }

    .map-preview-btn {
        right: 24px;
        bottom: 24px;
        font-size: 16px;
    }

    .map-distances {
        padding: 40px 24px;
    }

    .map-distances-cards {
        flex-direction: column;
    }

    .map-distance-card {
        width: 100%;
        height: auto;
    }

    .map-distances-heading {
        font-size: 26px;
    }

    .map-distances-text {
        width: 100%;
    }
}

/* ============================================
   SLOW LIVING SECTION
   ============================================ */

.section-slow-living {
    background: #dfd8cf;
    display: flex;
    gap: 32px;
    align-items: flex-end;
    padding: 50px 60px 100px;
    overflow: hidden;
}

.slow-living-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-end;
    flex: 1;
    height: 832px;
}

.slow-living-img {
    flex: 1;
    width: 100%;
    min-height: 0;
    overflow: hidden;
}

.slow-living-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slow-living-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.slow-living-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #4d6170;
}

.slow-living-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #4d6170;
    max-width: 423px;
}

@media (max-width: 1280px) {
    .slow-living-card {
        height: 700px;
    }

    .slow-living-title {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .section-slow-living {
        padding: 40px 40px 60px;
        gap: 24px;
    }

    .slow-living-card {
        height: 550px;
    }

    .slow-living-title {
        font-size: 26px;
    }

    .slow-living-body {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-slow-living {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .slow-living-card {
        height: auto;
    }

    .slow-living-img {
        height: 300px;
        flex: none;
    }
}

/* ============================================
   ACTIVITY SECTION
   ============================================ */

.section-activity {
    background: #dfd8cf;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 123px 173px;
    overflow: hidden;
}

.activity-inner {
    display: flex;
    gap: 72px;
    align-items: center;
}

.activity-image {
    width: 490px;
    height: 505px;
    flex-shrink: 0;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.activity-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 531px;
    flex-shrink: 0;
    height: 505px;
}

.activity-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #4d6170;
}

.activity-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.activity-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    white-space: nowrap;
}

.activity-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    width: 528px;
    max-width: 100%;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.activity-list-item {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: normal;
    color: #4d6170;
    text-transform: uppercase;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(77, 97, 112, 0.3);
}

.activity-list-item:last-child {
    border-bottom: 1px solid rgba(77, 97, 112, 0.3);
}

@media (max-width: 1280px) {
    .section-activity {
        padding: 80px 60px;
    }

    .activity-inner {
        gap: 48px;
    }

    .activity-image {
        width: 400px;
        height: 420px;
    }

    .activity-content {
        width: auto;
        flex: 1;
        height: auto;
    }

    .activity-heading {
        font-size: 30px;
        white-space: normal;
    }
}

@media (max-width: 1024px) {
    .section-activity {
        padding: 60px 40px;
    }

    .activity-inner {
        flex-direction: column;
        gap: 40px;
    }

    .activity-image {
        width: 100%;
        height: 350px;
    }

    .activity-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-activity {
        padding: 40px 24px;
    }

    .activity-inner {
        flex-direction: column;
        gap: 32px;
        overflow: hidden;
    }

    .activity-image {
        width: 100%;
        height: 280px;
    }

    .activity-image img {
        object-position: top;
    }

    .activity-heading {
        font-size: 26px;
    }

    .activity-content {
        width: 100%;
        height: auto;
        flex-shrink: 1;
    }

    .activity-list-item {
        font-size: 18px;
    }
}

/* ============================================
   VILLAS SLIDER SECTION
   ============================================ */

.section-villas-slider {
    position: relative;
    width: 100%;
    height: 1024px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 100px 0;
}

.villas-slider-bg {
    position: absolute;
    inset: 0;
}

.villas-slider-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.villas-slider-bg-img.active {
    opacity: 1;
}

.villas-slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(77, 97, 112, 0.05) 0%, rgba(77, 97, 112, 0.5) 100%);
}

.villas-slider-tagline {
    position: absolute;
    bottom: 100px;
    left: 60px;
    font-family: 'Serena', serif;
    font-weight: 400;
    font-size: 40px;
    font-style: normal;
    line-height: normal;
    color: #ffffff;
    width: 414px;
    z-index: 1;
    text-transform: uppercase;
}

/* Nav */
.villas-slider-nav {
    position: relative;
    z-index: 1;
    display: flex;
    width: 479px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.villas-slider-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    padding: 0 60px;
    width: 100%;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.villas-slider-item.active,
.villas-slider-item:hover {
    opacity: 1;
}

.villas-slider-name {
    font-family: 'Serena', serif;
    font-weight: 400;
    font-size: 48px;
    font-style: normal;
    line-height: normal;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
    text-transform: uppercase;
}

.villas-slider-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.villas-slider-item.active .villas-slider-line {
    background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .section-villas-slider {
        height: 700px;
    }

    .villas-slider-tagline {
        font-size: 30px;
        width: 300px;
        bottom: 60px;
        left: 40px;
    }

    .villas-slider-nav {
        width: 380px;
    }

    .villas-slider-name {
        font-size: 36px;
    }

    .villas-slider-item {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .section-villas-slider {
        display: none;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 60px 24px;
        gap: 40px;
    }

    .villas-slider-tagline {
        position: relative;
        bottom: auto;
        left: auto;
        font-size: 26px;
        width: 100%;
    }

    .villas-slider-nav {
        width: 100%;
    }

    .villas-slider-item {
        padding: 0;
        align-items: flex-start;
    }

    .villas-slider-name {
        font-size: 32px;
        text-align: left;
    }
}

/* ============================================
   INVESTING SECTION (The Project page)
   ============================================ */

.section-investing {
    display: flex;
    padding: 159px 60px 128px 141px;
    justify-content: flex-end;
    align-items: center;
    gap: 61px;
    background: #dfd8cf;
}

.investing-left {
    display: flex;
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
    justify-content: center;
    width: 534px;
    flex-shrink: 0;
}

.investing-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.investing-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2.8px;
    color: #c49e81;
}

.investing-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: -0.72px;
    color: #073849;
    max-width: 603px;
}

.investing-body {
    width: 100%;
}

.investing-body p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    margin-bottom: 16px;
}

.investing-body p:last-child {
    margin-bottom: 0;
}

.investing-price {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.48px;
    color: #073849;
}

.investing-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.investing-btn:hover {
    background: #0a4d63;
    transform: translateY(-1px);
}

.investing-image {
    width: 644px;
    height: 737px;
    flex-shrink: 0;
    overflow: hidden;
}

.investing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1280px) {
    .section-investing {
        padding: 100px 60px;
        gap: 40px;
    }

    .investing-left {
        width: 460px;
    }

    .investing-image {
        width: 50%;
        height: 600px;
    }

    .investing-heading {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .section-investing {
        padding: 60px 40px;
        gap: 32px;
    }

    .investing-left {
        width: auto;
        flex: 1;
    }

    .investing-image {
        width: 45%;
        height: 500px;
    }

    .investing-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section-investing {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .investing-image {
        width: 100%;
        height: 350px;
        order: -1;
    }

    .investing-heading {
        font-size: 26px;
    }

    .investing-price {
        font-size: 20px;
    }
}

/* ============================================
   TERRITORY SECTION
   ============================================ */

.section-territory {
    position: relative;
    width: 100%;
    padding: 188px 60px;
    overflow: hidden;
}

.territory-bg {
    position: absolute;
    inset: 0;
}

.territory-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.territory-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.territory-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 2.8px;
    color: rgba(255, 255, 255, 0.8);
}

.territory-heading {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
    width: 757px;
    max-width: 100%;
}

.territory-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.territory-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .section-territory {
        padding: 120px 40px;
    }

    .territory-heading {
        font-size: 30px;
        width: 600px;
    }
}

@media (max-width: 768px) {
    .section-territory {
        padding: 80px 24px;
    }

    .territory-heading {
        font-size: 26px;
        width: 100%;
    }

    .territory-btn {
        font-size: 18px;
    }
}

/* ============================================
   THE VILLAS SECTION
   ============================================ */

.section-villas {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 876;
    background: #073849;
    overflow: hidden;
}

.villas-bg {
    position: absolute;
    inset: 0;
}

.villas-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.villas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 97, 112, 0.14);
}

/* Intro Text */
.villas-intro {
    position: absolute;
    top: 71px;
    left: 60px;
    width: 419px;
    z-index: 3;
}

.villas-intro p {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.8);
}

.villas-intro strong {
    font-weight: 700;
}

/* SVG Overlay */
.villas-svg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.villa-svg-link {
    cursor: pointer;
    text-decoration: none;
}

.villa-outline {
    fill: transparent;
    stroke: transparent;
    stroke-width: 2px;
    transition: fill 0.4s ease, stroke 0.4s ease;
}

.villa-svg-link:hover .villa-outline {
    fill: rgba(196, 158, 129, 0.6);
    stroke: #ffffff;
}

.villa-label-prefix {
    fill: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-anchor: middle;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.villa-label-name {
    fill: #ffffff;
    font-family: 'Serena', serif;
    font-size: 44px;
    font-weight: 400;
    text-anchor: middle;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.villa-svg-link:hover .villa-label-prefix,
.villa-svg-link:hover .villa-label-name {
    opacity: 1;
}

@media (max-width: 1024px) {
    .section-villas {
        height: auto;
        aspect-ratio: 1440 / 876;
    }

    .villas-bg-img {
        object-fit: contain;
    }

    .villas-intro {
        left: 40px;
        width: 360px;
    }

    .villas-intro p {
        font-size: 20px;
    }

    .villa-hotspot-prefix {
        font-size: 32px;
    }

    .villa-hotspot-name {
        font-size: 48px;
    }

}

@media (max-width: 768px) {
    .section-villas {
        height: auto;
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
    }

    .villas-bg {
        position: relative;
        aspect-ratio: 1440 / 876;
    }

    .villas-bg-img {
        object-fit: contain;
    }

    .villas-intro {
        position: static;
        width: 100%;
        padding: 48px 24px;
        background: rgb(77, 97, 112);
        order: -1;
    }

    .villas-intro p {
        font-size: 16px;
    }

    .villa-hotspot-prefix {
        font-size: 24px;
    }

    .villa-hotspot-name {
        font-size: 36px;
    }

}

/* ============================================
   CTA SECTION
   ============================================ */

.section-cta {
    background: #4d6170;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    position: relative;
    height: 534px;
    overflow: hidden;
}

.cta-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 100px;
    width: 100%;
    max-width: 1440px;
    height: 242px;
    position: relative;
    z-index: 1;
}

/* Stat */
.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    width: 406px;
    flex-shrink: 0;
    height: 100%;
}

.cta-stat-number {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 96px;
    line-height: 100%;
}

.cta-stat-label {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

/* Text column */
.cta-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 516px;
    flex-shrink: 0;
    height: 100%;
}

.cta-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -0.8px;
    color: #ffffff;
}

.cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: #ffffff;
}

.cta-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #ffffff;
}

.cta-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

/* Decorative graphic */
.cta-graphic {
    position: absolute;
    left: -100px;
    bottom: 4px;
    width: 828px;
    height: 274px;
    z-index: 0;
    pointer-events: none;
}

.cta-graphic svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1280px) {
    .cta-inner {
        padding: 0 60px;
        gap: 32px;
    }

    .cta-stat {
        width: 320px;
    }

    .cta-stat-number {
        font-size: 72px;
    }

    .cta-text {
        width: auto;
        flex: 1;
    }

    .cta-title {
        font-size: 34px;
    }
}

@media (max-width: 1024px) {
    .section-cta {
        height: auto;
        padding: 60px 0;
    }

    .cta-inner {
        padding: 0 40px;
        height: auto;
        flex-direction: column;
        gap: 40px;
    }

    .cta-stat {
        width: 100%;
    }

    .cta-text {
        width: 100%;
    }

    .cta-graphic {
        left: -400px;
    }
}

@media (max-width: 768px) {
    .cta-inner {
        padding: 0 24px;
    }

    .cta-stat-number {
        font-size: 56px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-body {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 18px;
    }

    .cta-graphic {
        display: none;
    }
}

/* ============================================
   THE VISION SECTION
   ============================================ */

.section-vision {
    background: #dfd8cf;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 140px 0 140px;
    overflow: hidden;
}

.vision-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    width: 574px;
    height: 397px;
    flex-shrink: 0;
}

.vision-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.vision-label {
    color: #c49e81;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.2px;
}

.vision-heading {
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.64px;
    width: 100%;
}

.vision-founders {
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.32px;
}

.vision-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    transition: background 0.3s ease, transform 0.2s ease;
}

.vision-btn:hover {
    background: #0a4d63;
    transform: translateY(-1px);
}

.vision-portrait {
    width: 451px;
    height: 625px;
    flex-shrink: 0;
    align-self: flex-end;
}

.vision-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

@media (max-width: 1280px) {
    .section-vision {
        padding: 80px 60px 0 60px;
    }

    .vision-content {
        width: 480px;
    }

    .vision-heading {
        font-size: 28px;
    }

    .vision-portrait {
        width: 380px;
        height: 530px;
    }
}

@media (max-width: 1024px) {
    .section-vision {
        padding: 60px 40px 0 40px;
    }

    .vision-content {
        width: auto;
        flex: 1;
        height: auto;
    }

    .vision-heading {
        font-size: 26px;
    }

    .vision-portrait {
        width: 320px;
        height: 450px;
    }

    .vision-btn {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .section-vision {
        flex-direction: column;
        padding: 40px 24px 0 24px;
        gap: 32px;
    }

    .vision-content {
        width: 100%;
    }

    .vision-heading {
        font-size: 24px;
    }

    .vision-portrait {
        width: 100%;
        max-width: 400px;
        height: auto;
        align-self: center;
    }
}

/* ============================================
   INVESTMENT SECTION
   ============================================ */

.section-investment-slider {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.investment-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.investment-slide {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 61px 0 60px;
    align-items: center;
    gap: 37px;
    flex-shrink: 0;
}

.investment-slide--dark {
    background: #4d6170;
}

.investment-slide--dark .investment-title,
.investment-slide--dark .investment-subtitle,
.investment-slide--dark .investment-body {
    color: #ffffff;
}

.investment-slide--dark .investment-divider {
    background: rgba(255, 255, 255, 0.3);
}

.investment-slide--light {
    background: #D0BBA8;
}

.investment-slide--light .investment-title,
.investment-slide--light .investment-subtitle,
.investment-slide--light .investment-body {
    color: #073849;
}

.investment-slide--light .investment-divider {
    background: rgba(7, 56, 73, 0.3);
}

.investment-slider-nav {
    position: absolute;
    bottom: 40px;
    right: 60px;
    display: flex;
    gap: 16px;
    z-index: 2;
}

.investment-slider-prev,
.investment-slider-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.investment-slider-prev:hover,
.investment-slider-next:hover {
    opacity: 1;
    transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .section-investment-slider {
        height: auto;
    }

    .investment-slide {
        flex-direction: column;
        padding: 40px 24px 80px;
        gap: 24px;
        height: auto;
    }

    .investment-content {
        order: -1;
        width: 100%;
        height: auto;
    }

    .investment-text {
        width: 100%;
    }

    .investment-image {
        width: 100%;
        height: 250px;
    }

    .investment-title {
        font-size: 24px;
    }

    .investment-subtitle {
        font-size: 16px;
    }

    .investment-body {
        font-size: 15px;
    }

    .investment-divider {
        width: 100%;
    }

    .investment-slider-nav {
        bottom: 20px;
        right: 24px;
    }

    .investment-slider-prev,
    .investment-slider-next {
        width: 40px;
        height: 40px;
    }

    .investment-slider-prev svg,
    .investment-slider-next svg {
        width: 40px;
        height: 40px;
    }
}

.section-investment {
    display: flex;
    width: 100%;
    height: 900px;
    padding: 0 61px 0 60px;
    align-items: center;
    gap: 37px;
    background: #4d6170;
    overflow: hidden;
}

.investment-image {
    width: 642px;
    height: 626px;
    flex-shrink: 0;
    overflow: hidden;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.investment-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    width: 638px;
    flex-shrink: 0;
    height: 100%;
}

.investment-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 512px;
    color: #ffffff;
}

.investment-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 32px;
    font-style: normal;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
}

.investment-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    font-style: normal;
    line-height: normal;
    width: 100%;
}

.investment-body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    width: 100%;
}

.investment-divider {
    width: 512px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1280px) {
    .section-investment {
        padding: 0 40px;
        gap: 30px;
        height: 750px;
    }

    .investment-image {
        width: 50%;
        height: 520px;
    }

    .investment-content {
        width: auto;
        flex: 1;
    }

    .investment-text {
        width: 100%;
    }

    .investment-divider {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .section-investment {
        height: auto;
        padding: 60px 40px;
    }

    .investment-image {
        width: 45%;
        height: 450px;
    }

    .investment-title {
        font-size: 28px;
    }

    .investment-subtitle {
        font-size: 18px;
    }

    .investment-body {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .section-investment {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
        height: auto;
    }

    .investment-image {
        width: 100%;
        height: 300px;
    }

    .investment-content {
        width: 100%;
    }

    .investment-text {
        width: 100%;
    }

    .investment-title {
        font-size: 26px;
    }

    .investment-divider {
        width: 100%;
    }
}

/* ============================================
   THE PROJECT SECTION
   ============================================ */

.section-project {
    background: #dfd8cf;
    display: flex;
    flex-direction: column;
    gap: 120px;
    align-items: flex-start;
    padding: 60px 0 140px;
    overflow: hidden;
}

.project-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 109px 40px;
    padding: 0 100px;
    width: 100%;
}

.project-col1 {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-label {
    align-self: stretch;
    color: #c49e81;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
    letter-spacing: 3.2px;
}

.project-heading {
    align-self: stretch;
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.project-col2 {
    width: 306px;
    flex-shrink: 0;
    padding-top: 8px;
}

.project-body {
    color: #073849;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}

.project-media {
    width: 100%;
    aspect-ratio: 1441 / 462;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.project-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .section-project {
        gap: 80px;
    }

    .project-text {
        padding: 0 40px;
    }

    .project-heading {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .section-project {
        gap: 48px;
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .project-text {
        padding: 0 24px;
        flex-direction: column;
        gap: 24px;
    }

    .project-col2 {
        width: 100%;
        padding-top: 0;
    }

    .project-heading {
        font-size: 26px;
    }

    .project-body {
        font-size: 16px;
    }

    .project-media {
        aspect-ratio: 16 / 9;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

/* Hero - plays on load */
.hero-title,
.hero-cta-btn,
.hero-description,
.hero-badge {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.8s ease forwards;
}

.hero-title { animation-delay: 0.2s; }
.hero-cta-btn { animation-delay: 0.4s; }
.hero-description { animation-delay: 0.6s; }
.hero-badge { animation-delay: 0.7s; }

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

/* Scroll reveal - hidden by default, revealed on scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children - delay increments */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1280px) {
    .hero-content {
        padding: 0 60px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description p {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 10px 30px;
    }

    .header-nav {
        gap: 16px;
    }

    .header-nav-link {
        font-size: 15px;
    }

    .header-cta-btn {
        font-size: 15px;
        padding: 12px 20px;
        height: 42px;
    }

    .header-lang-label {
        font-size: 16px;
    }

    .hero-content {
        padding: 0 40px;
        gap: 48px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description p {
        font-size: 18px;
    }

    .hero-badge-circle {
        width: 180px;
        height: 180px;
    }

    .hero-badge-label {
        font-size: 14px;
    }

    .hero-badge-price {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 72px;
        background: rgba(6, 28, 36, 0.95);
    }

    .site-header.mobile-menu-open {
        height: 100vh;
        height: 100dvh;
        background: #061c24;
        overflow-y: auto;
    }

    .header-inner {
        padding: 10px 20px;
        height: 52px;
        flex-wrap: wrap;
        align-content: flex-start;
    }

    .header-logo-img {
        height: 40px;
    }

    .site-header.header-scrolled .header-logo-img {
        height: 36px;
    }

    .header-logo {
        height: 52px;
    }

    .header-mobile-toggle {
        display: flex;
    }

    .header-lang-dropdown {
        display: none;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 24px 0 40px;
        gap: 0;
        width: 100%;
        flex-basis: 100%;
        order: 3;
    }

    .header-nav.mobile-open {
        display: flex;
    }

    .header-nav-link {
        font-size: 22px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .header-nav-link::after {
        display: none;
    }

    .header-dropdown {
        width: 100%;
    }

    .header-dropdown-trigger {
        font-size: 22px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        justify-content: space-between;
    }

    .header-dropdown:hover .header-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: none;
    }

    .header-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        min-width: auto;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease, padding 0.3s ease;
    }

    .header-dropdown.open .header-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
        padding: 0 0 8px 16px;
    }

    .header-dropdown.open .header-dropdown-trigger svg {
        transform: rotate(180deg);
    }

    .header-dropdown-trigger svg {
        transition: transform 0.3s ease;
    }

    .header-dropdown-menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 18px;
    }

    .header-dropdown-menu a:hover {
        background: transparent;
    }

    .header-nav .header-cta-btn {
        margin-top: 24px;
        width: 100%;
        justify-content: center;
        font-size: 22px;
        height: 56px;
    }

    .header-mobile-lang {
        display: flex;
        gap: 16px;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: center;
    }

    .header-mobile-lang-option {
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        padding: 8px 16px;
        border-radius: 6px;
        transition: color 0.3s ease, background 0.3s ease;
    }

    .header-mobile-lang-option.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .header-mobile-lang-option:hover {
        color: #ffffff;
    }

    /* Hero mobile */
    .hero {
        height: 100vh;
        height: 100dvh;
    }

    .hero-content {
        padding: 0 24px;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta-btn {
        font-size: 18px;
        padding: 14px 20px;
        height: 44px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-description p {
        font-size: 18px;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-badge-circle {
        width: 180px;
        height: 180px;
    }

    .hero-badge-label {
        font-size: 12px;
        max-width: 120px;
    }

    .hero-badge-price {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-description p {
        font-size: 16px;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: white;
}

/* Contact Form Area */
.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px 100px;
    overflow: hidden;
    background: white;
}

.footer-contact-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    flex-shrink: 0;
}

.footer-contact-line {
    width: 2px;
    height: 62px;
    background: #073849;
}

.footer-contact-tagline {
    width: 530px;
}

.footer-contact-tagline p {
    font-family: 'Serena', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    color: #073849;
    text-transform: uppercase;
}

.footer-contact-tagline-sub {
    color: #4d6170 !important;
}

.footer-contact-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 532px;
    flex-shrink: 0;
}

.footer-contact-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: normal;
    color: #073849;
    margin-bottom: 16px;
}

.footer-contact-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #073849;
    width: 419px;
    max-width: 100%;
    margin-bottom: 16px;
}

/* Form */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.footer-input-group input,
.footer-input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #073849;
    padding: 12px 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #073849;
    outline: none;
    resize: none;
    transition: border-color 0.3s ease;
}

.footer-input-group input::placeholder,
.footer-input-group textarea::placeholder {
    color: #073849;
    opacity: 0.7;
}

.footer-input-group input:focus,
.footer-input-group textarea:focus {
    border-bottom-color: #c49e81;
    outline: none !important;
    box-shadow: none !important;
}

.footer-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 5px 0;
}

.footer-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border: 1px solid #073849;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    flex-shrink: 0;
}

.footer-checkbox input[type="checkbox"]:checked {
    background: #073849;
}

.footer-checkbox span {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #073849;
}

.footer-submit-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-submit-btn:hover {
    background: #0a4d63;
    transform: translateY(-1px);
}

.form-feedback {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 6px;
    margin: 8px 0;
}

.form-feedback-success {
    background: rgba(93, 169, 0, 0.1);
    color: #5da900;
    border: 1px solid rgba(93, 169, 0, 0.2);
}

.form-feedback-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 100px 60px 50px;
    background: white;
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 120px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 238px;
}

.footer-logo {
    width: 135px;
    height: auto;
    margin-bottom: 4px;
}

.footer-phone {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    color: #4d6170;
    text-decoration: none;
}

.footer-phone:hover {
    color: #073849;
}

.footer-email {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #4d6170;
    text-decoration: none;
}

.footer-email:hover {
    color: #073849;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #0a142f;
    opacity: 0.65;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer-location-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
    color: #4d6170;
    text-align: center;
    white-space: nowrap;
}

.footer-contact-btn {
    display: inline-flex;
    height: 48px;
    padding: 16px 24px;
    align-items: center;
    border-radius: 8px;
    background: #073849;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.footer-contact-btn:hover {
    background: #0a4d63;
    transform: translateY(-1px);
}

/* Copyright */
.footer-copyright-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(10, 20, 47, 0.15);
}

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

.footer-social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    opacity: 0.65;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-copyright-text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #4d6170;
}

/* Footer Responsive */
@media (max-width: 1280px) {
    .footer-contact {
        padding: 50px 60px;
    }

    .footer-contact-tagline {
        width: 400px;
    }

    .footer-contact-title {
        font-size: 34px;
    }

    .footer-links-row {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .footer-contact {
        padding: 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-contact-right {
        width: 100%;
    }

    .footer-contact-tagline {
        width: 100%;
    }

    .footer-links-row {
        gap: 40px;
    }

    .footer-bottom {
        padding: 60px 40px 40px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-contact {
        padding: 32px 24px;
    }

    .footer-contact-tagline p {
        font-size: 26px;
    }

    .footer-contact-title {
        font-size: 28px;
    }

    .footer-contact-desc {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 40px 24px 30px;
        gap: 40px;
    }

    .footer-links-row {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .footer-location {
        align-items: flex-start;
    }

    .footer-copyright-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero-title,
    .hero-cta-btn,
    .hero-description,
    .hero-badge {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
