/* Font Face Declarations */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueThin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica Neue';
    src: url('assets/font/Helvetica/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/font/Helvetica/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

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

:root {
    --primary-color: #b6613c;
    --secondary-color: #a16140;
    --accent-color: #a16140;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f7f2dc;
    --bg-white: #ffffff;
    --border-color: #e8ddd0;
    --transition: all 0.3s ease;
    --font-serif: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-text: 'Manrope', sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-text);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* Ensure main wrapper doesn't overflow */
#root, .main-wrapper, main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent horizontal scroll */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    table-layout: auto;
}

/* Ensure containers don't overflow */
section, div, article, aside, header, footer, nav, main {
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Splash Page */
body.splash-visible {
    overflow: hidden;
    height: 100vh;
}

body.splash-visible .header .logo {
    opacity: 0;
    pointer-events: none;
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-backdrop {
    position: absolute;
    inset: 0;
    background: var(--bg-light);
    z-index: 0;
    transition: opacity 0.75s ease;
}

.splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    animation: splashFadeIn 1s ease-out;
}

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

.splash-logo {
    max-width: min(280px, 70vw);
    height: auto;
    display: block;
    margin: 0 auto 0.2rem;
}

.splash-tagline {
    font-family: var(--font-sans);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0;
    animation: splashTaglineFromTop 0.6s ease-out 0.45s forwards;
}

@keyframes splashTaglineFromTop {
    from {
        opacity: 0;
        transform: translateY(-28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Splash: logo fly to nav */
.splash--exiting .splash-tagline {
    opacity: 0;
    visibility: hidden;
    transition: none;
}

.splash--exiting .splash-inner {
    pointer-events: none;
}

.splash--exiting .splash-backdrop {
    opacity: 0;
}

.splash--exiting .splash-logo {
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1), top 0.7s cubic-bezier(0.4, 0, 0.2, 1), width 0.7s cubic-bezier(0.4, 0, 0.2, 1), height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-light);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    transform: translateY(0);
}

/* Header trasparente solo nella homepage */
.home-page .header {
    background: transparent;
}

.header.hidden {
    transform: translateY(-100%);
}

.nav-container {
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    height: 80px;
    color: var(--primary-color);
    position: relative;
}

.logo {
    margin-left: 10px;
    padding-left: 0;
    flex-shrink: 0;
    z-index: 1;
    width: 150px;
    height: 150px;
    margin-top: 60px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.logo a {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo a img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.home-page .nav-menu a {
    color: var(--bg-light);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-dropdown > a:hover::after {
    width: 0;
}

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

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
    z-index: 999;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-light);
    min-width: 220px;
    padding: 6px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin-top: 0;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

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

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu li a {
    display: block;
    padding: 5px 25px;
    color: var(--text-dark) !important;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: none;
    transition: all 0.2s ease;
}

.nav-dropdown-menu li a::after {
    display: none;
}

.nav-dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color) !important;
    padding-left: 30px;
}

.nav-dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 25px;
}

/* Dropdown arrow indicator */
.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    position: relative;
    bottom: auto;
    left: auto;
    background: none;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 10px;
    margin-right: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    display: block;
}

.home-page .nav-toggle span {
    background: var(--bg-white);
}

/* Language selector - dropdown with hover */
.lang-selector {
    display: flex;
    align-items: center;
    margin-right: 16px;
    z-index: 1001;
    position: relative;
}
.lang-selector .lang-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    padding: 6px 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}
.home-page .lang-selector .lang-trigger {
    color: rgba(255, 255, 255, 0.85);
}
.lang-selector .lang-trigger:hover {
    color: var(--secondary-color);
    opacity: 1;
}
.home-page .lang-selector .lang-trigger:hover {
    color: var(--bg-white);
}
.lang-selector .lang-arrow {
    font-size: 8px;
    opacity: 0.8;
    transition: transform var(--transition);
}
.lang-selector:hover .lang-arrow {
    transform: rotate(180deg);
}
.lang-selector .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    min-width: 120px;
    padding: 6px 0;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1002;
}
.lang-selector:hover .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-selector .lang-menu a {
    display: block;
    padding: 8px 14px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.lang-selector .lang-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary-color);
}
.lang-selector .lang-menu a.active {
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(0, 0, 0, 0.04);
}
.home-page .lang-selector .lang-menu {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.home-page .lang-selector .lang-menu a {
    color: var(--primary-color);
}
.home-page .lang-selector .lang-menu a:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--secondary-color);
}
.home-page .lang-selector .lang-menu a.active {
    background: var(--primary-color);
    color: #ffffff;
}

/* Mobile language selector inside nav menu - hidden on desktop */
.nav-lang-mobile {
    display: none !important;
}

.nav-lang-mobile-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.nav-lang-mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-light) !important;
    text-decoration: none;
    transition: var(--transition);
}

.nav-lang-mobile-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
}

.nav-lang-mobile-item.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.nav-lang-mobile-item::after {
    display: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0px;
    overflow: hidden;
    background: var(--bg-light);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 30px;
    width: 100%;
    color: rgba(44, 44, 44, 1);
}

.hero-title {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.hero-subtitle {
    display: block;
    font-size: 0.4em;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--bg-white);
}

.hero-main {
    display: block;
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-size: 60px;
    font-weight: 500;
    color: var(--bg-white);
    letter-spacing: +0.04em;
}

.hero-italic {
    font-style: italic;
}

.hero-tagline {
    font-size: 20px;
    display: block;
    font-weight: 300;
    font-style: bold;
    color: var(--bg-white);
    letter-spacing: 4px;
    margin-bottom: 1.2em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 18px;
    color: var(--bg-light);
    max-width: 600px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-booking {
    text-align: center;
    margin-top: 40px;
}

.btn-booking {
    display: inline-block;
    background: transparent;
    color: var(--bg-white);
    padding: 10px 40px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-sans);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-color: #ffffff;
    border-width: 1px;
    border-style: solid;
    letter-spacing: 1px;
}

.btn-booking:hover {
    color: var(--secondary-color);
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/ESTERNO_12.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-image::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(182, 97, 60, 0.7) 0%, rgba(161, 97, 64, 0.5) 100%);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: inherit;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Properties Section */
.properties {
    padding: 100px 0;
    background: var(--bg-light);
}


.section-title {
    font-family: 'Helvetica Neue';
    font-style: normal;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 100;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: +0.1cm;
}

.section-title-helvetica {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}


.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #b6613c 0%, #a16140 100%);
    position: relative;
    overflow: hidden;
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23f0f0f0" width="400" height="300"/></svg>') center/cover;
    opacity: 0.3;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.property-content {
    padding: 30px;
}

.property-location {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.property-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.property-features i {
    margin-right: 6px;
    color: var(--primary-color);
}

.property-price {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.property-price-unit {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: var(--bg-white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.destination-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #b6613c 0%, #a16140 100%);
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><rect fill="%23e8e8e8" width="400" height="400"/></svg>') center/cover;
    opacity: 0.2;
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 2;
}

.destination-content h3 {
    font-family: var(--font-serif);
    font-size: 28px;
    margin-bottom: 10px;
}

.destination-content p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.destination-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.destination-link:hover {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.services-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.services-list {
    list-style: none;
    margin-bottom: 40px;
}

.services-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 15px;
    border-color: var(--primary-color);
    border-width: 1px;
    border-style: solid;
    letter-spacing: 1px;
}

.btn-primary:hover {
    color: var(--bg-light);
    border: none;
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.services-image {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.services-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #b6613c 0%, #a16140 100%);
    position: relative;
}

.services-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 500"><rect fill="%23f5f5f5" width="600" height="500"/></svg>') center/cover;
    opacity: 0.2;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 60px;
}

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

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: left;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 50%;
    color: var(--primary-color);
    flex-shrink: 0;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
}

.contact-link {
    color: var(--text-light);
    text-decoration: none;
}

.contact-link:hover,
.contact-link:visited {
    color: var(--text-light);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group:has(:required)::after {
    content: '*';
    color: var(--primary-color);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: 300;
    pointer-events: none;
    line-height: 1;
}

.form-group:has(textarea:required)::after {
    top: 16px;
    transform: none;
}

.form-group:has(select:required)::after {
    right: 40px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-text);
    transition: var(--transition);
    background: white;
    color: var(--text-dark, #333);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-group select:invalid {
    color: var(--text-light);
}

.form-group select option {
    color: var(--text-dark, #333);
}

.form-group select option[value=""][disabled] {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.form-required-note {
    font-size: 13px;
    color: var(--text-light);
    margin: 4px 0 0;
    font-family: var(--font-text);
    font-weight: 300;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

.footer-contatti-list .footer-contatti-item {
    white-space: nowrap;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: underline;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input, textarea, select {
        font-size: 16px !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 30px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }
    
    /* Header background quando menu è aperto */
    .header.menu-open,
    .home-page .header.menu-open {
        background: var(--bg-light) !important;
    }
    
    /* Overlay quando il menu è aperto */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    /* Colore testo menu quando è aperto sulla homepage */
    .home-page .nav-menu.active a {
        color: var(--primary-color) !important;
    }
    
    /* Toggle button color quando menu è aperto sulla homepage */
    .home-page .header.menu-open .nav-toggle span {
        background: var(--primary-color);
    }

    /* Hide header lang-selector on mobile, show in-menu version */
    .lang-selector {
        display: none !important;
    }

    .nav-lang-mobile {
        display: block !important;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
        margin-top: 10px;
    }

    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        order: 3;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-container {
        justify-content: space-between;
        padding: 0 20px;
    }
    
    .logo {
        z-index: 1001;
        position: relative;
        order: 1;
    }
    
    .nav-menu {
        order: 3;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 0;
        transform: none;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
        margin-top: 8px;
        margin-left: 0;
        padding: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu li a {
        text-align: center;
        padding: 8px 20px;
    }

    .nav-dropdown-menu li a:hover {
        padding-left: 20px;
    }

    .nav-dropdown > a::after {
        display: inline-block;
        margin-left: 8px;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 4px solid currentColor;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .hero-content {
        padding: 60px 20px;
    }

    .btn-booking {
        padding: 16px 40px;
        font-size: 16px;
    }
    
    /* Argentario section optimization for tablet */
    .argentario-section {
        padding: 80px 0;
        min-height: 500px;
        overflow: visible;
    }

    .argentario-content {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .argentario-content-box {
        justify-content: center;
        padding: 0 20px;
        width: 100%;
        margin-top: 250px;
    }

    .argentario-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        min-height: 800px;
    }

    /* Hero main text responsive */
    .hero-main {
        font-size: 42px;
    }

    /* Services section responsive */
    .services-owners .section-title {
        font-size: 36px;
    }

    .services-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        padding: 80px 20px 60px;
    }

    .hero {
        min-height: 80vh;
    }

    .btn-booking {
        padding: 14px 35px;
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .our-houses-section {
        padding: 60px 0;
    }

    .carousel-slide {
        height: 350px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .beautiful-houses,
    .argentario-section {
        padding: 80px 0;
        min-height: auto;
        overflow: visible;
    }

    .beautiful-houses-content,
    .argentario-content-box {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 200px;
    }

    .argentario-content {
        padding: 40px 30px;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    .argentario-content-box {
        justify-content: center;
        width: 100%;
    }

    .argentario-section .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        min-height: 600px;
    }

    .argentario-content .btn-primary {
        width: auto;
        display: inline-block;
    }

    /* Hero responsive */
    .hero-main {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 2px;
    }

    /* Services section responsive */
    .services-owners .section-title {
        font-size: 30px;
        text-align: center;
    }

    .services-owners .section-header {
        text-align: center;
    }

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

    /* Our houses centered on mobile */
    .home-page .our-houses-section .our-houses-content {
        text-align: center;
        margin-left: auto;
    }

    /* Team images responsive width */
    .team-member-image {
        width: min(300px, 80vw);
        height: min(300px, 80vw);
    }

    /* Team role tooltip always visible on mobile (no hover) */
    .team-member-role {
        opacity: 1;
        position: static;
        transform: none;
        background: var(--primary-color);
        display: inline-block;
        margin-top: 8px;
    }

    .services-owners {
        padding: 60px 0;
    }

    .services-owners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .proprietari-intro-section {
        overflow: visible;
    }

    .proprietari-intro-grid {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 20px;
        padding: 0 20px;
    }

    .proprietari-intro-content {
        grid-column: 1 / -1;
        order: -1;
        padding: 0;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .proprietari-intro-photo-left,
    .proprietari-intro-photo-right {
        min-height: 220px;
    }

    .service-owner-card {
        padding: 30px 20px;
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .team-member-image {
        width: 300px;
        height: 300px;
    }

    .reviews-section {
        padding: 60px 0 80px;
    }

    .reviews-carousel-wrapper {
        margin-top: 40px;
        padding: 20px 0;
        overflow: visible;
        position: relative;
    }

    .reviews-carousel {
        padding: 0 50px;
        flex: 1;
        min-width: 0;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
        z-index: 20;
        position: relative;
        flex-shrink: 0;
    }

    .reviews-nav-btn span {
        font-size: 18px;
    }

    .reviews-prev-btn {
        margin-right: 5px;
    }

    .reviews-next-btn {
        margin-left: 5px;
    }

    .review-card {
        min-width: 280px;
        padding: 30px 25px;
    }

    .contact {
        padding: 60px 0;
    }

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

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 50px 0 25px;
    }

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

    .footer-section h3 {
        font-size: 22px;
    }

    .footer-section h4 {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent zoom on input focus (iOS) */
    input, textarea, select {
        font-size: 16px !important;
    }
    
    /* Navbar mobile optimizations */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-toggle {
        padding: 8px;
        margin-right: 5px;
    }
    
    .nav-toggle span {
        width: 22px;
    }
    
    .logo a img {
        height: 70px;
    }
    
    .nav-menu {
        padding: 30px 0;
        gap: 25px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 10px 0;
        display: block;
    }
    
    .nav-dropdown-menu li a {
        font-size: 13px;
        padding: 6px 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        padding: 60px 15px 40px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-tagline {
        font-size: 0.4em;
    }

    .hero-main {
        font-size: 1em;
    }

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

    .section-title {
        font-size: 28px;
    }

    .our-houses-section {
        padding: 40px 0;
    }

    .argentario-section {
        padding: 40px 0;
        min-height: auto;
        overflow: visible;
    }

    .argentario-image {
        min-height: 300px;
    }

    .argentario-content {
        padding: 30px 20px;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .argentario-content-box {
        padding: 0 15px;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin-top: 120px;
    }

    .argentario-section .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-height: 450px;
    }

    .argentario-text {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .argentario-content .section-title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .argentario-content .btn-primary {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: block;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 13px;
    }

    .services-owners {
        padding: 40px 0;
    }

    .services-owners-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .proprietari-intro-section {
        padding: 50px 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .proprietari-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 100vw;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .proprietari-intro-photo-left,
    .proprietari-intro-photo-right {
        min-height: 200px;
    }

    .proprietari-intro-title {
        font-size: 24px;
    }

    .proprietari-intro-content {
        max-width: 100vw;
        width: 100%;
        margin: 0;
        box-sizing: border-box;
    }

    .proprietari-intro-text {
        font-size: 15px;
        line-height: 1.8;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .service-owner-card {
        padding: 25px 15px;
    }

    .service-owner-icon {
        font-size: 40px;
    }

    .service-owner-card h3 {
        font-size: 18px;
    }

    .service-owner-card p {
        font-size: 14px;
    }

    .team-section {
        padding: 40px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .team-member-image {
        width: min(250px, 75vw);
        height: min(250px, 75vw);
    }

    .team-member-name {
        font-size: 18px;
    }

    /* Hero responsive for small phones */
    .hero-main {
        font-size: 28px;
    }

    .hero-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero-booking {
        margin-top: 24px;
    }

    /* Services section centered on mobile */
    .services-owners .section-title {
        font-size: 24px;
        text-align: center;
    }

    .services-owners .section-header {
        text-align: center;
    }

    .team-section .section-header {
        text-align: center;
    }

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

    /* Our houses centered on small phones */
    .home-page .our-houses-section .our-houses-content {
        text-align: center;
        margin-left: auto;
    }

    .reviews-section .section-header {
        text-align: center;
    }

    .reviews-section {
        padding: 40px 0 60px;
    }

    .reviews-carousel-wrapper {
        margin-top: 30px;
        padding: 15px 0;
        overflow: visible;
        position: relative;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .reviews-carousel {
        padding: 0 50px;
        flex: 1;
        min-width: 0;
    }

    .reviews-nav-btn {
        width: 40px;
        height: 40px;
        z-index: 30;
        position: relative;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .reviews-nav-btn span {
        font-size: 18px;
    }

    .reviews-prev-btn {
        margin-right: 5px;
    }

    .reviews-next-btn {
        margin-left: 5px;
    }

    .review-card {
        min-width: 260px;
        padding: 25px 20px;
    }

    .review-text {
        font-size: 15px;
    }

    .review-author {
        font-size: 13px;
    }

    .contact {
        padding: 40px 0;
    }

    .contact .section-title {
        font-size: 24px;
        text-align: center;
    }

    .contact-description {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: left;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 15px;
    }

    .contact-icon {
        margin-bottom: 0;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .contact-details {
        gap: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 16px;
    }

    /* Touch-friendly buttons */
    .btn-check-availability,
    .btn-primary {
        padding: 16px 28px;
        font-size: 14px;
        min-height: 48px;
        width: 100%;
        text-align: center;
    }

    .btn-booking {
        min-height: 48px;
    }

    .btn-service-card {
        padding: 14px 24px;
        min-height: 44px;
    }

    .houses-section-button {
        margin-top: 40px !important;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

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

    .footer-section h3,
    .footer-section h4 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 14px;
    }

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

/* Our Houses Section */
.our-houses-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.our-houses-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.home-page .our-houses-section .our-houses-content {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.our-houses-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

/* Houses Carousel */
.houses-carousel {
    margin-top: 60px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Argentario Section */
.argentario-section {
    position: relative;
    padding: 150px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light);
}

.argentario-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    min-height: 1400px;
}

.argentario-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 800px;
    background-image: url('assets/images/DJI_20250907063621_0057_D-HDR\ 2.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    transform: translateY(0) scale(1);
}

/*.argentario-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(182, 97, 60, 0.7) 0%, rgba(161, 97, 64, 0.6) 100%);
}*/

.argentario-content-box {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0;
    overflow: visible;
    margin-top: 500px;
}

.argentario-content {
    background: var(--bg-white);
    padding: 50px 60px;
    max-width: 600px;
    color: var(--text-dark);
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-left: 0;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.argentario-content .section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: left;
}

.argentario-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Proprietari Hero Section */
.proprietari-hero-section {
    position: relative;
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light);
}

.proprietari-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/TORRETRICOSTO2.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Hero immagini specifiche per pagina servizio (assets/images/SERVICE/) */
.servizio-hero-amministrazione .proprietari-hero-image { background-image: url('assets/images/SERVICE/AMMINISTRAZIONE_HEADER.jpeg'); }
.servizio-hero-interior .proprietari-hero-image { background-image: url('assets/images/SERVICE/INTERIOR_HEADER.jpeg'); }
.servizio-hero-manutenzione .proprietari-hero-image { background-image: url('assets/images/SERVICE/MANUTENZIONE_HEADER.jpeg'); }
.servizio-hero-cleaning .proprietari-hero-image { background-image: url('assets/images/SERVICE/CLEANING_HEADER.jpeg'); }
.servizio-hero-accoglienza .proprietari-hero-image { background-image: url('assets/images/SERVICE/ACCOGLIENZA_HEADER.jpeg'); }
.servizio-hero-pricing .proprietari-hero-image { background-image: url('assets/images/SERVICE/PRICING_HEADER.jpeg'); }


.proprietari-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--bg-light);
    text-align: center;
    margin: 0 auto;
}

.proprietari-hero-content .section-title {
    font-family: 'Helvetica Neue';
    color: white;
    font-weight: 500;
    font-size: 65px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.proprietari-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Proprietari intro - tre colonne (foto | titolo+testo | foto) */
.proprietari-intro-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow-x: hidden;
}

.proprietari-intro-grid {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.6fr) minmax(220px, 1fr);
    gap: 40px 50px;
    max-width: 100%;
    margin: 0;
    padding: 0;
    align-items: stretch;
}

.proprietari-intro-photo-left {
    min-height: 320px;
    background: var(--bg-light) url('assets/images/PROPRIETARI/primameta.jpeg') center center / cover no-repeat;
}

.proprietari-intro-photo-right {
    min-height: 320px;
    background: var(--bg-light) url('assets/images/PROPRIETARI/secondameta.jpeg') center center / cover no-repeat;
}

.proprietari-intro-content {
    padding: 0 10px;
}

.proprietari-intro-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.proprietari-intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}

.proprietari-intro-text p {
    margin-bottom: 18px;
}

.proprietari-intro-text p:last-child {
    margin-bottom: 0;
}

/* Services for Owners Section */
.services-owners {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-owners .section-title {
    font-size: 46px;
    text-align: left;
}


.services-owners .section-header {
    text-align: left;
}

.services-owners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Show only first row of service cards on homepage */
.home-page .services-owners-grid .service-owner-card:nth-child(n+4) {
    display: none;
}

.service-owner-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
}

.service-owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-owner-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-owner-icon i {
    font-size: inherit;
}

.service-owner-card h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-owner-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.btn-service-card {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 2px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-service-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(166, 97, 60, 0.3);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-section .section-header {
    text-align: left;
}

.team-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0px;
    text-align: left;
}

.team-divider-container {
    width: 100%;
    height: 2px;
    background-color: transparent;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.team-divider {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    position: relative;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member-image {
    width: 380px;
    height: 380px;
    border-radius: 0;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #b6613c 0%, #a16140 100%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.team-member:hover .team-member-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member-info {
    min-height: 40px;
}

.team-member-image .team-member-name {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: auto;
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    text-align: right;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    z-index: 2;
    transition: var(--transition);
}

.team-member-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary-color);
    transition: var(--transition);
}

.team-member-role {
    color: white;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
    position: absolute;
    top: -20px;
    left: 98%;
    transform: translateX(-50%) translateY(-10px);
    white-space: nowrap;
    background: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 200;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    margin-top: 0;
    letter-spacing: 1px;
}

.team-member:hover .team-member-role {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Reviews Section */
.reviews-section {
    padding: 100px 0 140px 0;
    background: var(--bg-white);
}

.reviews-layout {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    align-items: center;
}

/* Reviews Sidebar (left) */
.reviews-sidebar {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.reviews-arrow-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    align-self: flex-start;
}

.reviews-arrow-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.reviews-names-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.review-name-item {
    display: flex;
    flex-direction: column;
    padding: 14px 20px 14px 16px;
    border-left: 2px solid transparent;
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
    cursor: pointer;
}

.review-name-item:hover {
    color: var(--text-dark);
    border-left-color: var(--border-color);
    background: var(--bg-light);
}

.review-name-item.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(182, 97, 60, 0.05);
}

.review-name-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.review-name-sub {
    font-size: 12px;
    font-weight: 300;
    margin-top: 3px;
    opacity: 0.7;
}

/* Reviews Display (right) */
.reviews-display {
    flex: 1;
    position: relative;
    margin-top: 24px;
}

.reviews-display-overflow {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.reviews-display-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-display-item {
    width: 100%;
    flex-shrink: 0;
    background: var(--bg-light);
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.review-display-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    line-height: 0.8;
    color: var(--primary-color);
    opacity: 0.25;
    margin-bottom: 24px;
    display: block;
}

.review-display-text {
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.85;
    color: var(--text-dark);
}

.review-display-footer {
    margin-top: 44px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.review-display-author {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.review-display-type {
    font-size: 11px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    padding: 3px 14px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}

@media (max-width: 968px) {
    .reviews-section {
        padding: 60px 0 80px;
    }
    .reviews-layout {
        gap: 30px;
    }
    .reviews-sidebar {
        width: 220px;
    }
    .review-display-item {
        padding: 50px 50px;
    }
    .review-display-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0 80px;
    }
    .reviews-section .section-header {
        text-align: center;
    }
    .reviews-layout {
        flex-direction: column;
        gap: 24px;
    }
    .reviews-sidebar {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .reviews-arrow-btn {
        display: none;
    }
    .reviews-names-list {
        flex-direction: row;
        overflow-x: auto;
        flex: 1;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }
    .reviews-names-list::-webkit-scrollbar {
        display: none;
    }
    .review-name-item {
        border-left: none;
        border-bottom: 2px solid transparent;
        flex-shrink: 0;
        padding: 10px 16px;
        min-width: fit-content;
    }
    .review-name-item:hover {
        border-left-color: transparent;
        border-bottom-color: var(--border-color);
    }
    .review-name-item.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-color);
    }
    .review-display-item {
        padding: 36px 24px;
    }
    .review-display-text {
        font-size: 16px;
        line-height: 1.75;
    }
    .review-display-quote {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .review-display-footer {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0 60px;
    }
    .review-display-item {
        padding: 30px 24px;
    }
    .review-display-text {
        font-size: 16px;
    }
    .review-display-quote {
        font-size: 48px;
        margin-bottom: 16px;
    }
}

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

.property-card,
.destination-card,
.feature-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Houses Grid - Le Nostre Case */
/* Guests Filter */
.guests-filter {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guests-filter-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.guests-filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.guests-filter-btn {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.guests-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.guests-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.house-card {
    display: block;
    font-weight: 100;
    text-decoration: none;
    color: inherit;
    background: var(--bg-white);
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.house-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Homepage specific styles - simplified cards */
.home-page .our-houses-section .houses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.home-page .our-houses-section .house-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.home-page .our-houses-section .house-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home-page .our-houses-section .house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-page .our-houses-section .house-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 50px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--bg-white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    z-index: 2;
}

/* Hide carousel and house-info on homepage */
.home-page .our-houses-section .house-carousel,
.home-page .our-houses-section .house-info {
    display: none;
}

/* House Carousel */
.house-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
}

.house-card:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: white;
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* House Info */
.house-info {
    padding: 10px 15px;
}

.house-name {
    font-family: Helvetica Neue;
    font-size: 22px;
    font-weight: 200;
    color: var(--primary-color);
    margin-bottom: 5px; /* space between name and details */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.house-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--text-light);
}

.house-guests,
.house-location {
    display: flex;
    align-items: center;
}

.house-guests::before {
    content: '\f0c0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
}

.house-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
}

/* Check Availability Section */
.check-availability-section {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.btn-check-availability {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 1px;
    text-decoration: none;
    font-weight: 400;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 15px;
    border-color: var(--primary-color);
    border-width: 1px;
    border-style: solid;
    letter-spacing: 1px;
    text-transform: uppercase;
    
}

.btn-check-availability:hover {
    color: var(--bg-light);
    border: none;
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive - Houses Grid */
@media (max-width: 1024px) {
    .houses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .home-page .our-houses-section .houses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .home-page .our-houses-section .house-name-overlay {
        padding: 30px 35px;
        font-size: 28px;
    }
    
    .reviews-carousel {
        padding: 0 100px;
    }
    
    .review-card {
        width: 400px;
        min-width: 400px;
        max-width: 400px;
    }
    
    .review-card.active {
        width: 400px;
        min-width: 400px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .houses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-page .our-houses-section .houses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-page .our-houses-section .house-name-overlay {
        padding: 25px 30px;
        font-size: 24px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .reviews-carousel-wrapper {
        overflow: visible;
        position: relative;
        width: 100%;
    }
    
    .reviews-carousel {
        padding: 0 50px;
        flex: 1;
        min-width: 0;
    }
    
    .reviews-nav-btn {
        width: 45px;
        height: 45px;
        z-index: 20;
        position: relative;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    
    .reviews-nav-btn span {
        font-size: 18px;
    }
    
    .reviews-prev-btn {
        margin-right: 0;
    }
    
    .reviews-next-btn {
        margin-left: 0;
    }
    
    .review-card {
        width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
    
    .review-card.active {
        width: calc(100% - 40px);
        min-width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
    
    .house-info {
        padding: 20px;
    }
    
    .house-name {
        font-size: 20px;
    }
    
    .carousel-nav {
        opacity: 1;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Argentario Page Styles */
.argentario-page {
    background: var(--bg-white);
}

.argentario-hero-section {
    position: relative;
    padding: 150px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-light);
    margin-bottom: 80px;
}

.argentario-title {
    font-family: 'Helvetica Neue', serif;
    font-style: normal;
    font-size: 60px;
    font-weight: 100;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: +0.1cm;
    text-transform: uppercase;
}

.argentario-caption {
    font-size: 16px;
    color: black;
    font-weight: 300;
    margin-top: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
}

.argentario-divider-container {
    width: 100%;
    height: 2px;
    background-color: transparent;
    margin-top: 1px;
    position: relative;
    overflow: hidden;
}

.argentario-divider {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

.argentario-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/f77e3303f13badf924aeabe76b3fd532.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    transform: translateY(0) scale(1);
}

.argentario-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(182, 97, 60, 0.3) 0%, rgba(161, 97, 64, 0.3) 100%);
}

.argentario-season-links {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px 20px;
    flex-wrap: wrap;
    width: 100%;
}

.season-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 60px;
    font-weight: 200;
    color: var(--bg-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 30px;
    background: transparent;
    
}

.season-link:hover {
    font-style: italic;
}

.season-section {
    margin-bottom: 120px;
    padding-top: 60px;
    scroll-margin-top: 100px;
}

.season-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.season-left .season-wrapper {
    flex-direction: row;
}

.season-right .season-wrapper {
    flex-direction: row;
}

.season-left-content,
.season-right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.season-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 30px 0;
}

.season-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

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

.season-text-content {
    padding: 20px 0;
}

.season-wrapper {
    align-items: flex-start;
}

.season-left .season-right-content .season-text-content,
.season-right .season-left-content .season-text-content {
    padding-top: 0;
    margin-top: 100px;
}

@media (max-width: 768px) {
    .season-left .season-right-content .season-text-content,
    .season-right .season-left-content .season-text-content {
        margin-top: 58px;
    }
}

.season-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.season-text:last-child {
    margin-bottom: 0;
}

/* Responsive Styles for Argentario Page */
@media (max-width: 768px) {
    .argentario-hero-section {
        padding: 100px 0;
        min-height: 500px;
    }
    
    .argentario-season-links {
        gap: 20px;
        padding: 30px 15px;
    }
    
    .season-link {
        font-size: 18px;
        padding: 12px 20px;
        letter-spacing: 1px;
    }
    
    .season-section {
        margin-bottom: 60px;
        padding-top: 40px;
    }
    
    .season-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }
    
    .season-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .season-text {
        font-size: 16px;
    }
    
    .season-text-content {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .argentario-hero-section {
        padding: 80px 0;
        min-height: 400px;
    }
    
    .argentario-season-links {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .season-link {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 10px 15px;
    }
    
    .season-wrapper {
        gap: 20px;
    }
}

/* =====================================================
   ARGENTARIO PAGE (nuova struttura)
   ===================================================== */

/* Hero uguale alle altre pagine */
.argentario-hero-page {
    margin-top: 80px;
}
.argentario-hero-page .chi-siamo-hero-image {
    display: none;
}
.argentario-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/DJI_20250907063621_0057_D-HDR\ 2.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.argentario-hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}
.argentario-hero-page .chi-siamo-hero-content {
    position: relative;
    z-index: 2;
}

/* Sezione intro: titolo+testo sx, tre foto 3:4 dx (terza attaccata a destra, 0 margine) */
.argentario-intro-section {
    padding: 100px 0 100px 40px;
    background: var(--bg-light);
    overflow: hidden;
}
.argentario-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1.9fr;
    gap: 60px 80px;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 0 0 40px;
}
.argentario-intro-text-block {
    padding-top: 20px;
}
.argentario-intro-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}
.argentario-intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}
.argentario-intro-text p {
    margin-bottom: 18px;
}
.argentario-intro-text p:last-child {
    margin-bottom: 0;
}
.argentario-intro-photos {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.5fr;
    gap: 24px;
    width: 100%;
    min-width: 900px;
    margin-left: auto;
    margin-right: 0;
    align-items: stretch;
}
.argentario-intro-photo {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.argentario-intro-photo-1,
.argentario-intro-photo-2 {
    aspect-ratio: 3 / 4;
}
.argentario-intro-photo-1 {
    background-image: url('assets/images/ARGENTARIO/PRIMA_FOTO.jpeg');
}
.argentario-intro-photo-2 {
    background-image: url('assets/images/ARGENTARIO/SECONDA_FOTO.jpeg');
}
.argentario-intro-photo-3 {
    aspect-ratio: 3 / 8;
    background-image: url('assets/images/ARGENTARIO/TERZA_FOTO.jpeg');
    margin-right: 0;
}
/* Blocco foto fino al bordo destro viewport, foto 3 con 0 margine */
.argentario-intro-photos {
    width: calc(max(900px, 100%) + max(0px, 50vw - 750px));
    margin-right: min(0px, calc(-50vw + 750px));
}

/* Sezione stats con due linee come chi-siamo-stats-divider (animazione allo scroll) */
.argentario-stats-section {
    padding: 80px 0;
    background: var(--bg-light);
    overflow: hidden;
    position: relative;
}
.argentario-stats-section .container {
    position: relative;
    z-index: 1;
}
.argentario-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    text-align: center;
}
.argentario-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.argentario-stat-number {
    font-family: var(--font-text);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
    line-height: 1;
}
.argentario-stat-label {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    max-width: 140px;
}

/* Sezione foto 4:3 grande + titolo/testo; sotto 3 foto quadrate con pulsanti */
.argentario-photo-section {
    background: var(--bg-light);
    padding: 0 0 100px;
    overflow: hidden;
    padding-top: 80px;
}
.argentario-photo-section-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 80px;
}
.argentario-big-photo {
    aspect-ratio: 4 / 3;
    min-height: 400px;
    background-image: url('assets/images/ARGENTARIO/FOTO4.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.argentario-photo-section-content {
    padding: 40px 60px 40px 0;
}
.argentario-photo-section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}
.argentario-photo-section-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}
.argentario-seasons-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0 auto 48px;
    max-width: 1400px;
    padding: 0 40px;
    text-align: left;
}
.argentario-seasons-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}
.argentario-season-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.argentario-season-card-image {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.argentario-season-estate {
    background-image: url('assets/images/ARGENTARIO/ESTATE.jpeg');
}
.argentario-season-primavera {
    background-image: url('assets/images/ARGENTARIO/PRIMAVERA.jpeg');
}
.argentario-season-autunno {
    background-image: url('assets/images/ARGENTARIO/AUTUNNO.jpeg');
}
.argentario-season-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}
.argentario-season-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Linea sotto le stagioni (divider come Chi Siamo / Proprietari) */
#argentarioBottomDividerWrap {
    background: var(--bg-white);
}
.argentario-contact {
    margin-top: 0;
}

/* Responsive Argentario */
@media (max-width: 1024px) {
    .argentario-intro-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .argentario-intro-photos {
        max-width: 100%;
        min-width: unset;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .argentario-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 24px;
    }
    .argentario-photo-section-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    .argentario-big-photo {
        min-height: 300px;
    }
    .argentario-photo-section-content {
        padding: 0 24px 40px;
    }
    .argentario-seasons-title {
        padding: 0 24px;
        margin-bottom: 36px;
    }
    .argentario-seasons-row {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
}
@media (max-width: 768px) {
    .argentario-intro-section {
        padding: 60px 0;
    }
    .argentario-intro-layout {
        padding: 0 20px;
    }
    .argentario-intro-photos {
        grid-template-columns: 1fr 1fr;
        min-width: unset;
        max-width: 100%;
        margin: 0;
        gap: 12px;
    }
    .argentario-intro-photo-1,
    .argentario-intro-photo-2 {
        aspect-ratio: 3 / 4;
    }
    .argentario-intro-photo-3 {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 9;
    }
    .argentario-stats-section {
        padding: 50px 0;
    }
    .argentario-stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px 20px;
    }
    .argentario-photo-section-layout {
        margin-bottom: 50px;
    }
    .argentario-seasons-title {
        padding: 0 20px;
        margin-bottom: 28px;
    }
    .argentario-seasons-row {
        padding: 0 20px;
    }
}

/* =====================================================
   PAGINE STAGIONI ARGENTARIO (Estate, Primavera, Autunno)
   Effetto scroll: sezioni che salgono scoprono immagine fissa, poi ricoperte
   ===================================================== */
.season-hero {
    margin-top: 80px;
}
.season-hero .chi-siamo-hero-image { display: none; }
.season-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.season-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}
.season-hero .chi-siamo-hero-content { position: relative; z-index: 2; }

/* Navigazione stagioni nell'hero: frecce sinistra/destra attorno al titolo */
.season-hero-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 48px);
    flex-wrap: wrap;
}
.season-hero-title-row .chi-siamo-title {
    margin: 0;
}
.season-hero-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    flex-shrink: 0;
}
.season-hero-nav:hover {
    background-color: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}
.season-hero-nav i {
    font-size: 18px;
}

/* Hero: un'immagine per stagione */
.season-hero-estate .season-hero-bg { background-image: url('assets/images/ARGENTARIO/ESTATE.jpeg'); }
.season-hero-primavera .season-hero-bg { background-image: url('assets/images/ARGENTARIO/PRIMAVERA.jpeg'); }
.season-hero-autunno .season-hero-bg { background-image: url('assets/images/ARGENTARIO/AUTUNNO.jpeg'); }

/* Reveal 1 e Reveal 2: immagini diverse per stagione (3 immagini per pagina: hero + reveal1 + reveal2) */
.season-page-estate .season-reveal-bg-1 { background-image: url('assets/images/ESTATE/foto_grande_1.jpeg'); }
.season-page-estate .season-reveal-bg-2 { background-image: url('assets/images/ESTATE/foto_grande_2.jpeg'); }
.season-page-primavera .season-reveal-bg-1 { background-image: url('assets/images/PRIMAVERA/foto_grande_1.jpeg'); }
.season-page-primavera .season-reveal-bg-2 { background-image: url('assets/images/PRIMAVERA/foto_grande_2.jpeg'); }
.season-page-autunno .season-reveal-bg-1 { background-image: url('assets/images/AUTUNNO/foto_grande.jpeg'); }

/* Sezione intro e content: sfondo solido così coprono l'immagine fissa allo scroll */
.season-intro-section,
.season-content-section {
    background: var(--bg-light);
    position: relative;
    z-index: 2;
    padding: 40px 0;
}
/* Stessi margini (40px sx, 40px dx) per intro e content */
.season-intro-section,
.season-content-section { padding-left: 40px; }
.season-intro-section .season-container,
.season-content-section .season-container { max-width: 100%; padding-left: 0; padding-right: 40px; }

.season-container {
    max-width: 1400px;
    margin: 0 auto;
}
.season-row {
    display: flex;
    align-items: center;
    gap: 60px;
}
.season-row-reverse {
    flex-direction: row-reverse;
}
.season-row-reverse .season-text-block { padding-left: 0; padding-right: 40px; }

.season-photo {
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.season-photo-34 {
    width: 52%;
    max-width: 620px;
    aspect-ratio: 1 / 1;
}
.season-text-block {
    flex: 1;
    padding-left: 20px;
}
.season-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 14px;
}
.season-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}
.season-text p { margin-bottom: 18px; }
.season-text p:last-child { margin-bottom: 0; }

/* Foto specifiche stagione (placeholder: usa stesse immagini, sostituibili) */
.season-photo-estate-1 { background-image: url('assets/images/ESTATE/1.jpeg'); }
.season-photo-primavera-1 { background-image: url('assets/images/PRIMAVERA/1.jpg'); }
.season-photo-autunno-1 { background-image: url('assets/images/AUTUNNO/1.jpeg'); }
.season-photo-estate-2 { background-image: url('assets/images/ESTATE/5.jpeg'); }
.season-photo-autunno-2 { background-image: url('assets/images/AUTUNNO/2.jpeg'); }
.season-photo-primavera-2 { background-image: url('assets/images/PRIMAVERA/2.jpeg'); }
.season-photo-estate-3 { background-image: url('assets/images/ESTATE/6.jpeg'); }
.season-photo-primavera-3 { background-image: url('assets/images/PRIMAVERA/3.jpeg'); }
.season-photo-autunno-3 { background-image: url('assets/images/AUTUNNO/3.jpeg'); }
.season-photo-estate-4 { background-image: url('assets/images/ESTATE/7.jpeg'); }
.season-photo-primavera-4 { background-image: url('assets/images/PRIMAVERA/4.jpeg'); }

/* Zona reveal: altezza viewport, immagine fissa che viene scoperta/ricoperta dallo scroll.
   clip-path: inset(0) crea un contenitore di clipping, così ogni immagine fixed è visibile
   SOLO dentro la propria reveal-zone (evita la sovrapposizione). */
.season-reveal-zone {
    position: relative;
    height: 100vh;
    z-index: 0;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
}
.season-reveal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

@media (max-width: 992px) {
    .season-row,
    .season-row-reverse {
        flex-direction: column;
        gap: 40px;
    }
    .season-photo-34 {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .season-intro-section,
    .season-content-section {
        padding: 32px 24px;
    }
    .season-intro-section { padding-left: 24px; }
    .season-content-section .season-container,
    .season-intro-section .season-container { padding-left: 24px; padding-right: 24px; }
    .season-row-reverse .season-text-block { padding-right: 0; }
}

@media (max-width: 768px) {
    .season-intro-section,
    .season-content-section { padding: 28px 20px; }
    .season-container { padding-left: 20px !important; padding-right: 20px !important; }
}

/* Houses Full-Width Carousel - Homepage */
.houses-carousel-fullwidth {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-left: 0;
    margin-right: 0;
}

.houses-carousel-track-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 0 80px;
}

.houses-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.house-card-large {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    flex-shrink: 0;
    width: 720px;
    height: 540px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.house-card-large:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.house-image-large {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.house-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.house-card-large:hover .house-image-large img {
    transform: scale(1.05);
}

.house-name-overlay-large {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 30px 25px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 200;
    color: var(--bg-white);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Carousel Navigation Buttons */
.houses-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.houses-carousel-nav span {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.houses-carousel-nav:hover {
    background: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.houses-carousel-nav:hover span {
    color: var(--bg-white);
}

.houses-carousel-prev {
    left: 30px;
}

.houses-carousel-next {
    right: 30px;
}

/* Responsive - Houses Full-Width Carousel */
@media (max-width: 1200px) {
    .house-card-large {
        width: 600px;
        height: 450px;
    }
    
    .house-name-overlay-large {
        font-size: 30px;
        padding: 70px 35px 25px 20px;
    }
}

@media (max-width: 968px) {
    .house-card-large {
        width: 520px;
        height: 390px;
    }
    
    .house-name-overlay-large {
        font-size: 26px;
        padding: 60px 30px 20px 18px;
    }
    
    .houses-carousel-track-wrapper {
        padding: 0 60px;
    }
    
    .houses-carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .houses-carousel-nav span {
        font-size: 20px;
    }
    
    .houses-carousel-prev {
        left: 15px;
    }
    
    .houses-carousel-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .house-card-large {
        width: 440px;
        height: 330px;
    }
    
    .house-name-overlay-large {
        font-size: 22px;
        padding: 50px 25px 18px 15px;
        letter-spacing: 1px;
    }
    
    .houses-carousel-track-wrapper {
        padding: 0 50px;
    }
    
    .houses-carousel-track {
        gap: 20px;
    }
    
    .houses-carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .houses-carousel-nav span {
        font-size: 18px;
    }
    
    .houses-carousel-prev {
        left: 10px;
    }
    
    .houses-carousel-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .house-card-large {
        width: calc(100vw - 100px);
        max-width: 340px;
        height: auto;
        aspect-ratio: 4/3;
    }
    
    .house-name-overlay-large {
        font-size: 18px;
        padding: 40px 20px 15px 12px;
    }
    
    .houses-carousel-track-wrapper {
        padding: 0 50px;
    }
    
    .houses-carousel-track {
        gap: 15px;
    }
    
    .houses-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .houses-carousel-nav span {
        font-size: 16px;
    }
    
    .houses-carousel-prev {
        left: 5px;
    }
    
    .houses-carousel-next {
        right: 5px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .houses-carousel-fullwidth {
        padding: 15px 0;
    }
    
    .house-card-large {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .houses-carousel-fullwidth {
        padding: 10px 0;
    }
    
    .houses-carousel-track-wrapper {
        padding: 0 45px;
    }
}

/* =====================================================
   CHI SIAMO PAGE STYLES
   ===================================================== */

/* Hero Section - Chi Siamo */
.chi-siamo-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
    min-height: 600px;
}

.chi-siamo-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/CHISIAMO/CHISIAMO_HEADER.jpeg');
    background-size: cover;
    background-position: center;
}

.contatti-hero .chi-siamo-hero-image {
    background-image: url('assets/images/CONTATTI_HEADER.jpeg');
    z-index: 0;
}

.chi-siamo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}


.chi-siamo-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.chi-siamo-label {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.chi-siamo-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(36px, 6vw, 65px);
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
}

/* Legal pages (Termini, Privacy) - title only, no hero image */
.legal-page-header {
    margin-top: 80px;
    padding: 60px 0 40px;
    background: var(--bg-light);
}

.legal-page-label {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.legal-page-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 500;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
}

/* Termini e Condizioni / Privacy content */
.terms-content-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.terms-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.terms-intro {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2.5rem;
}

.terms-block {
    margin-bottom: 2rem;
}

.terms-heading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.terms-subheading {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 600;
    color: var(--text-color);
    margin: 1.25rem 0 0.5rem;
}

.terms-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    white-space: pre-line;
}

/* Content Sections */
.chi-siamo-content-section {
    padding: 100px 0;
    background: var(--bg-light);
}

/* Section 2 base - will be extended below */

.chi-siamo-row {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.chi-siamo-row-reverse {
    flex-direction: row-reverse;
}

.chi-siamo-image-wrapper {
    flex: 1;
    overflow: hidden;
    display: flex;
}

.chi-siamo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.chi-siamo-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Section 1: Image attached to left edge */
.chi-siamo-content-section:not(.chi-siamo-section-alt) {
    padding-left: 0;
}

.chi-siamo-content-section:not(.chi-siamo-section-alt) .container {
    max-width: 100%;
    padding-left: 0;
}

.chi-siamo-content-section:not(.chi-siamo-section-alt) .chi-siamo-row {
    gap: 60px;
}

.chi-siamo-content-section:not(.chi-siamo-section-alt) .chi-siamo-image-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.chi-siamo-content-section:not(.chi-siamo-section-alt) .chi-siamo-text-wrapper {
    flex: 1;
    padding-right: 40px;
}

/* Section 2: Image attached to right edge (mirror of Section 1) */
.chi-siamo-section-alt {
    background: var(--bg-light);
    padding-right: 0;
    padding-left: 0;
}

.chi-siamo-section-alt .container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 40px;
}

.chi-siamo-section-alt .chi-siamo-row {
    gap: 60px;
}

.chi-siamo-section-alt .chi-siamo-image-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
}

.chi-siamo-section-alt .chi-siamo-text-wrapper {
    flex: 1;
    padding-left: 0;
    padding-right: 60px;
}

.chi-siamo-text-wrapper {
    flex: 1;
}

.chi-siamo-section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.chi-siamo-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.chi-siamo-text:last-child {
    margin-bottom: 0;
}

/* ===== Pagine servizi: intro full-width, 3 icone, CTA foto+testo ===== */
.servizio-intro {
    padding: 80px 40px 60px;
    max-width: 100%;
    margin: 0;
}

.servizio-intro .servizio-intro-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 200;
    margin: 100px 100px 2px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: left;
}

.servizio-intro .servizio-intro-text {
    margin: 100px 100px 0px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    max-width: 100%;
    padding-top: 0;
}

.servizio-features {
    padding: 5px 40px 100px;
    max-width: 100%;
}

.servizio-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    margin: 0 auto;
    max-width: 1100px;
}

.servizio-feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 36px;
    border-radius: 8px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.servizio-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.servizio-feature-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 48px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.servizio-feature-item:hover .servizio-feature-icon {
    border-color: var(--primary-color);
    background: rgba(182, 97, 60, 0.04);
}

.servizio-feature-item h3 {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 300px;
}

.servizio-feature-item h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--border-color);
    margin: 12px auto 0;
}

.servizio-feature-item p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-light);
    margin: 0;
    max-width: 300px;
    text-align: center;
}

/* Zona reveal servizi: foto _SECONDA a full viewport con effetto parallax */
.servizio-reveal-zone {
    position: relative;
    height: 100vh;
    z-index: 0;
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
}
.servizio-reveal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}
.servizio-reveal-interior .servizio-reveal-bg { background-image: url('assets/images/SERVICE/INTERIOR_SECONDA.jpeg'); }
.servizio-reveal-amministrazione .servizio-reveal-bg { background-image: url('assets/images/SERVICE/AMMINISTRAZIONE_SECONDA.jpeg'); }
.servizio-reveal-pricing .servizio-reveal-bg { background-image: url('assets/images/SERVICE/PRICING_SECONDA.jpeg'); }
.servizio-reveal-accoglienza .servizio-reveal-bg { background-image: url('assets/images/SERVICE/ACCOGLIENZA_SECONDA.jpeg'); }
.servizio-reveal-cleaning .servizio-reveal-bg { background-image: url('assets/images/SERVICE/CLEANING_SECONDA.jpeg'); }
.servizio-reveal-manutenzione .servizio-reveal-bg { background-image: url('assets/images/SERVICE/MANUTENZIONE_SECONDA.jpeg'); }

/* Sezione CTA servizi: titolo a sx, testo, bottone Contattaci */
.servizio-cta-section {
    padding: 80px 40px 100px;
    max-width: 100%;
    margin: 0;
    background: var(--bg-light);
}
/* Intro servizi: meno spazio sotto prima della sezione icone */
.servizio-cta-section.servizio-intro-block {
    padding-bottom: 20px;
}
.servizio-cta-section .servizio-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}
.servizio-cta-section .servizio-cta-section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 200;
    text-align: left;
    margin: 0 0 24px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.servizio-cta-section .servizio-cta-section-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin: 0 0 32px;
}
.servizio-cta-section .btn-contattaci {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.servizio-cta-section .btn-contattaci:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .servizio-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .servizio-intro,
    .servizio-features {
        padding-left: 24px;
        padding-right: 24px;
    }

    .servizio-cta-section {
        padding: 60px 24px 80px;
    }

    .servizio-cta-section.servizio-intro-block {
        padding-bottom: 32px;
    }

    .servizio-feature-icon {
        width: 90px;
        height: 90px;
        font-size: 40px;
    }

    .servizio-feature-item {
        padding: 32px 20px 28px;
    }

    .servizio-feature-item p {
        max-width: 320px;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.scroll-left {
    transform: translateX(-60px);
}

.scroll-animate.scroll-right {
    transform: translateX(60px);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Statistics Section */
.chi-siamo-stats-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.chi-siamo-stats-divider-top,
.chi-siamo-stats-divider-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    overflow: hidden;
}

.chi-siamo-stats-divider-top {
    top: 0;
}

.chi-siamo-stats-divider-bottom {
    bottom: 0;
}

.chi-siamo-stats-divider-top .divider-line {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

.chi-siamo-stats-divider-bottom .divider-line {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    margin-left: auto;
    transition: width 0.1s ease-out;
}

/* Divider standalone (es. pagina Proprietari) – nel flusso e sempre visibile */
.divider-standalone {
    position: relative;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    overflow: hidden;
}

.divider-standalone-line {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.25s ease-out;
}

.chi-siamo-stats-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.chi-siamo-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 60px;
    color: var(--primary-color);
}

.chi-siamo-stat-icon {
    font-size: 36px;
    opacity: 0.9;
}

.chi-siamo-stat-content {
    display: flex;
    flex-direction: column;
}

.chi-siamo-stat-value {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.chi-siamo-stat-label {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
    color: var(--text-dark);
}

.chi-siamo-stat-divider {
    width: 1px;
    height: 60px;
    background: var(--primary-color);
    opacity: 0.3;
}

/* Second Text Section */
.chi-siamo-text-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.chi-siamo-text-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.chi-siamo-text-large {
    font-size: 19px;
    line-height: 2;
    color: var(--text-dark);
}

/* Values Cards Section */
.chi-siamo-values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.chi-siamo-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: stretch;
}

.chi-siamo-value-card {
    background: white;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.chi-siamo-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.chi-siamo-value-card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.chi-siamo-value-content {
    padding: 40px 35px 45px;
}

.chi-siamo-value-card h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 25px;
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.chi-siamo-value-card p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-light);
    font-weight: 300;
}

/* Divider before Contact */
.chi-siamo-divider-section {
    width: 100%;
    height: 2px;
    background: transparent;
    overflow: hidden;
}

.chi-siamo-divider-line {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* =====================================================
   TEAM MEMBER PERSONAL PAGE STYLES
   ===================================================== */

/* Hero Section - pagine team (allineata alle altre hero) */
.team-personal-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 600px;
}

.team-personal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.team-personal-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

.team-personal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-personal-label {
    display: block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.team-personal-name {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.team-personal-role {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.team-personal-tagline {
    font-size: 24px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.team-personal-back {
    color: rgba(255,255,255,0.8);
}

.team-personal-back:hover {
    color: #fff;
}

/* About Section */
.team-personal-about {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-personal-about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.team-personal-about-image {
    flex: 0 0 350px;
    height: 450px;
    overflow: hidden;
}

.team-personal-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.team-personal-about-text {
    flex: 1;
}

.team-personal-about-text h2 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-personal-about-text h3 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 200;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.team-personal-about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.team-personal-skills {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
}

.team-personal-skills h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.team-personal-skills ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-personal-skills li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 20px;
}

.team-personal-skills li:last-child {
    border-bottom: none;
}

.team-personal-skills li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Timeline Section */
.team-personal-timeline {
    padding: 100px 0;
    background: var(--bg-light);
}

.team-personal-timeline .section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-personal-timeline-item {
    background: var(--bg-white);
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-personal-timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-personal-timeline-year {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.team-personal-timeline-item h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.team-personal-timeline-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Services Section */
.team-personal-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.team-personal-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-personal-service-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-personal-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-personal-service-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.team-personal-service-card h4 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-personal-service-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Back to Team Link */
.team-personal-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.team-personal-back:hover {
    transform: translateX(-5px);
}

.team-personal-back i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 968px) {
    .team-personal-about-content {
        flex-direction: column;
        gap: 40px;
    }

    .team-personal-about-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-personal-hero {
        min-height: 50vh;
    }

    .team-personal-name {
        font-size: 32px;
    }

    .team-personal-tagline {
        font-size: 20px;
    }

    .team-personal-about-image {
        height: 380px;
    }
}

/* Responsive - Chi Siamo Page */
@media (max-width: 1200px) {
    .chi-siamo-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 968px) {
    .chi-siamo-hero {
        min-height: 60vh;
    }

    .chi-siamo-row {
        flex-direction: column;
        gap: 50px;
    }

    .chi-siamo-row-reverse {
        flex-direction: column;
    }

    .chi-siamo-content-section:not(.chi-siamo-section-alt) {
        padding-left: 0;
    }

    .chi-siamo-content-section:not(.chi-siamo-section-alt) .container {
        padding-left: 20px;
    }

    .chi-siamo-content-section:not(.chi-siamo-section-alt) .chi-siamo-image-wrapper {
        flex: 1;
        max-width: 100%;
    }

    .chi-siamo-content-section:not(.chi-siamo-section-alt) .chi-siamo-text-wrapper {
        padding-right: 20px;
        padding-left: 20px;
    }

    .chi-siamo-section-alt {
        padding-right: 0;
    }

    .chi-siamo-section-alt .container {
        padding-right: 20px;
    }

    .chi-siamo-section-alt .chi-siamo-image-wrapper {
        flex: 1;
        max-width: 100%;
    }

    .chi-siamo-section-alt .chi-siamo-text-wrapper {
        padding-right: 20px;
        padding-left: 20px;
    }

    /* In colonna l'immagine riprende proporzioni fisse (non c'è testo affiancato) */
    .chi-siamo-image-wrapper img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .chi-siamo-stats-line {
        flex-direction: column;
        gap: 40px;
    }

    .chi-siamo-stat-item {
        padding: 0;
    }

    .chi-siamo-stat-divider {
        width: 80px;
        height: 1px;
    }

    .chi-siamo-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .chi-siamo-hero {
        min-height: 50vh;
    }

    .chi-siamo-title {
        font-size: 32px;
        white-space: normal;
    }

    .chi-siamo-content-section {
        padding: 60px 0;
    }

    .chi-siamo-image-wrapper img {
        height: 280px;
    }

    .chi-siamo-section-title {
        font-size: 26px;
    }

    .chi-siamo-stats-section {
        padding: 60px 0;
    }

    .chi-siamo-stat-value {
        font-size: 28px;
    }

    .chi-siamo-stat-icon {
        font-size: 28px;
    }

    .chi-siamo-text-section {
        padding: 60px 0;
    }

    .chi-siamo-text-large {
        font-size: 17px;
    }

    .chi-siamo-values-section {
        padding: 60px 0;
    }

    .chi-siamo-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .chi-siamo-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* =====================================================
   FAQ Page
   ===================================================== */

.faq-content-section {
    padding: 80px 0 100px;
    background: var(--bg-light);
}

.faq-content-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(182, 97, 60, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(182, 97, 60, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #8b4a2e;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-color);
    padding-bottom: 1.25rem;
}

/* ─── Cookie Banner GDPR ─── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 1.25rem 1.5rem;
    animation: cookieSlideUp 0.4s ease;
}

@keyframes cookieSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    font-family: var(--font-text);
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.cookie-banner-link {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: underline;
    margin-top: 0.35rem;
    display: inline-block;
}

.cookie-banner-link:hover {
    color: var(--secondary-color);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-text);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--secondary-color);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.cookie-btn-reject:hover {
    border-color: var(--text-dark);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
}
