:root {
    --primary-color: #CFB07C;
    --text-dark: #0B0F14;
    --text-light: #47515E;
    --bg-light: #FAF8F3;
    --bg-white: #FFFFFF;
    --border-color: #EDE8DD;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.d-none {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

.cta-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 10px;
    display: inline-block;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    /* Above menu */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        /* Cover entire screen */
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        /* Less transparent for readability */
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;

        /* Transition settings */
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: scale(0.95);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: scale(1);
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-menu.open li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for menu items */
    .nav-menu.open li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.open li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.open li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.open li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.open li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.open li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-menu.open li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-menu li a {
        font-size: 24px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-logo {
        font-size: 20px;
        z-index: 1001;
        /* Keep logo visible if needed, or hide */
    }
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 120px 20px;
    min-height: 80vh;
    color: #fff;
}

.hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.section {
    padding: 72px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Privacy Checkbox */
.privacy-check {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.privacy-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.privacy-check a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-check label {
    cursor: pointer;
}


.section {
    padding: 72px 20px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.pricing-header {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Pastel Backgrounds for Guida Locale */
.bg-pastel-pink {
    background-color: #fce7f3;
}

.bg-pastel-green {
    background-color: #d1fae5;
}

.bg-pastel-gray {
    background-color: #e5e7eb;
}

.bg-pastel-cyan {
    background-color: #cffafe;
}

.bg-pastel-sky {
    background-color: #bae6fd;
}

.bg-pastel-blue {
    background-color: #dbeafe;
}

.bg-pastel-orange {
    background-color: #ffedd5;
}

.bg-pastel-purple {
    background-color: #f3e8ff;
}

.bg-pastel-red {
    background-color: #fee2e2;
}

.bg-pastel-yellow {
    background-color: #fef9c3;
}

.bg-pastel-cream {
    background-color: #fff7ed;
}

/* Sa Mandra */
.bg-pastel-blue-light {
    background-color: #eff6ff;
}

/* Mabrouk */
.bg-pastel-stone {
    background-color: #f5f5f4;
}

/* Lo Romani */
.bg-pastel-gray-light {
    background-color: #f3f4f6;
}

/* Mos */
.bg-pastel-rose {
    background-color: #fff1f2;
}

/* Al Refettorio */
.bg-pastel-red-light {
    background-color: #fef2f2;
}

/* Morizzio */
.bg-pastel-yellow-light {
    background-color: #fffbeb;
}

/* Fogo */
.bg-pastel-neutral {
    background-color: #f5f5f5;
}

/* Yumi */
.bg-pastel-cyan-light {
    background-color: #ecfeff;
}

/* Rafel/Fratelli */
.bg-pastel-indigo {
    background-color: #e0e7ff;
}

/* Riservato */
.bg-pastel-sky-light {
    background-color: #f0f9ff;
}

/* Blau */
.bg-pastel-lime {
    background-color: #ecfccb;
}

/* Maracaibo */
.bg-pastel-teal {
    background-color: #f0fdfa;
}

/* Bahia/A-Mare */
.bg-pastel-green-light {
    background-color: #f0fdf4;
}

/* Naturalia */
.advantages-section {
    background-color: var(--bg-white);
}

.advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantages .adv-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 24px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.advantages .adv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.adv-icon {
    margin-bottom: 16px;
}

.adv-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.adv-text {
    font-size: 16px;
    color: var(--text-light);
}

.guadagna {
    background-color: var(--bg-light);
    text-align: center;
    padding: 72px 20px;
}

.guadagna h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.guadagna p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
    color: var(--text-light);
}

.guadagna ul {
    list-style: disc;
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
    color: var(--text-light);
}

.guadagna ul li {
    margin-bottom: 10px;
}

.properties-section {
    background-color: var(--bg-white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.property-card .image-wrapper {
    position: relative;
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-card .label {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.property-card .content {
    padding: 20px;
}

.property-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    margin-top: 8px;
    color: var(--text-dark);
}

.property-card .small-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
}

.property-card .note {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    line-height: 1.4;
}

.property-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.properties-section .view-all {
    text-align: center;
    margin-top: 40px;
}

.partners {
    background-color: var(--bg-light);
    padding: 72px 20px;
}

.partners h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

.partner-card {
    opacity: 0.8;
    transition: opacity 0.3s;
    text-align: center;
}

.partner-card img {
    max-width: 100px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-card:hover {
    opacity: 1;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

.cta-form-section {
    background-color: var(--bg-light);
    padding: 72px 20px;
}

.cta-form-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-form-container h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.cta-form-container p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
}

.form-grid label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid input[type="number"],
.form-grid input[type="file"],
.form-grid textarea,
.form-grid select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-white);
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    resize: vertical;
    margin-bottom: 5px;
}

.form-grid textarea {
    min-height: 100px;
}

.form-grid button {
    background-color: var(--primary-color);
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s;
    width: 100%;
    cursor: pointer;
}

.form-grid button:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.form-status {
    margin-top: 15px;
    font-weight: 500;
    display: none;
}

.form-status.success {
    color: green;
}

.form-status.error {
    color: red;
}

footer {
    background-color: var(--bg-light);
    padding: 60px 20px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

footer h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

footer p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

footer a {
    color: var(--text-light);
    transition: color 0.3s;
    font-size: 14px;
}

footer a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Reveal animation */
.reveal {
    /* opacity: 0; */
    /* transform: translateY(20px); */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MODAL STYLES ================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
}

.modal-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.modal-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: inherit;
}

.modal-contact-switch {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

.modal-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.modal-btn:hover {
    filter: brightness(1.1);
}

/* ================= PREMIUM UI POLISH ================= */

/* 1. Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseSubtle {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(207, 176, 124, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(207, 176, 124, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(207, 176, 124, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ================= NEW BOOKING MODAL & GLASSMORPHISM ================= */

/* Phone Number Reveal Effect */
.cta-phone-reveal {
    position: relative;
    overflow: hidden;
    vertical-align: middle;
}

.cta-phone-reveal .original-text {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.cta-phone-reveal .phone-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.cta-phone-reveal:hover .original-text {
    transform: translateY(-150%);
    opacity: 0;
}

.cta-phone-reveal:hover .phone-number {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.glass-effect {

    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.modal-content {
    /* Existing styles override/enhance */
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    position: relative;
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.4s ease-out;
}

.flatpickr-calendar {
    z-index: 20005 !important;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-dark);
}

.summary-box {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.summary-box p {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.privacy-note {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    opacity: 0.8;
}

/* Global Polish */
button,
.cta-primary,
.cta-secondary {
    transform: translateZ(0);
    /* Hardware accel */
}

/* Smooth placeholder transition */
input:focus::placeholder {
    opacity: 0.5;
    transition: opacity 0.3s;
}

/* 2. Global Reveal & Stagger */
.reveal {
    /* opacity: 0; */
    /* transform: translateY(30px); */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth ease-out */
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

/* 3. Header Glassmorphism */
header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    padding-top: 5px;
    /* Slightly compact */
    padding-bottom: 5px;
}

/* 4. Micro-Interactions: Buttons & Links */
.cta-primary {
    animation: pulseSubtle 3s infinite ease-in-out;
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: scale(1.05) translateY(-2px);
    filter: brightness(1.05);
}

.cta-primary:active,
.cta-secondary:active {
    transform: scale(0.98);
}

.nav-menu li a::after {
    transform-origin: center;
    /* Expand from center */
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 5. Micro-Interactions: Cards */
.adv-card:hover .adv-icon svg,
.property-card:hover .image-wrapper img {
    transform: scale(1.05);
    /* Slight zoom on images/icons */
    transition: transform 0.5s ease;
}

.adv-card:hover .adv-icon {
    /* Slight rotation for icon container */
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.image-wrapper {
    overflow: hidden;
    /* Ensure zoom stays within bounds */
    border-radius: 16px 16px 0 0;
}

.property-card img {
    transition: transform 0.6s ease;
    /* Slower, smoother zoom */
}

/* 6. Forms */
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus,
.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(207, 176, 124, 0.2);
    transition: all 0.3s ease;
}

/* ====== REVIEWS SECTION ====== */
.reviews-section {
    background-color: var(--bg-light);
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.review-stars {
    color: #FFB400;
    margin-bottom: 15px;
    font-size: 18px;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: #EDE8DD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
}

/* ====== AMENITIES ICONS ====== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    fill: var(--primary-color);
}

.amenity-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ====== MAP SECTION ====== */
.map-section {
    padding: 60px 20px;
    background: #fff;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ================= GUIDA LOCALE STYLES ================= */

/* Hero Section specific for Guide */
.guide-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Use a specific image for guide if available, or fallback to hero.png */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 20px 100px;
    color: #fff;
    margin-bottom: 40px;
}

.guide-hero-content {
    max-width: 800px;
}

.guide-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.guide-hero p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

/* Guide Sections */
.guide-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

/* Alternate backgrounds for sections if desired, currently white for clean look */
.guide-section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(207, 176, 124, 0.4);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Guide Card Design */
.guide-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.guide-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(0, 0, 0, 0.5);
    /* Icon color inside the colored box */
}

/* Specific icon colors if needed, but inheriting is fine */
.guide-img i {
    transform: scale(1);
    transition: transform 0.4s ease;
}

.guide-card:hover .guide-img i {
    transform: scale(1.2);
}

.guide-content {
    padding: 24px;
    flex-grow: 1;
    /* Ensure same height cards align content */
    display: flex;
    flex-direction: column;
}

.guide-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.guide-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Final Section */
.guide-cta {
    text-align: center;
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.guide-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.guide-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.guide-cta .cta-button {
    background-color: #fff;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.guide-cta .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ================= PREMIUM GRAPHICS IMPROVEMENTS ================= */

/* Guide Card Premium Refinements */
.guide-card {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.guide-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.guide-img {
    height: 240px !important;
    /* Taller images */
    position: relative;
    overflow: hidden;
}

.guide-img i {
    font-size: 50px;
    color: rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease;
}

.guide-card:hover .guide-img i {
    transform: scale(1.2) rotate(5deg);
}

.guide-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.guide-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Badge Style for Sections */
.section-icon {
    background: linear-gradient(135deg, var(--primary-color), #E5D0A1) !important;
    /* Gold Gradient */
    color: white !important;
    box-shadow: 0 8px 20px rgba(207, 176, 124, 0.4) !important;
    border: 2px solid white !important;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #333, #666);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Polish */
.guide-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    /* Fade to white/bg */
}

.guide-hero h1 {
    font-size: 56px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Active Nav Link */
.nav-menu li a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu li a.active::after {
    width: 100%;
}

/* ================= RESPONSIVE DESIGN ================= */

/* Tablet & Smaller Desktops (max-width: 1024px) */
@media (max-width: 1024px) {

    .section,
    .guadagna,
    .partners,
    .cta-form-section,
    .guide-section {
        padding: 60px 20px;
    }

    .hero h1,
    .guide-hero h1 {
        font-size: 40px;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
    }

    .hero {
        padding: 100px 20px 60px;
        min-height: 60vh;
        /* Restore viewport height for better mobile feel */
        background-attachment: scroll;
        /* Disable fixed background on mobile for performance */
    }

    .guide-hero {
        background-attachment: scroll;
        padding: 120px 20px 80px;
    }

    .hero h1,
    .guide-hero h1 {
        font-size: 34px;
        /* Smaller font */
        line-height: 1.2;
    }

    .hero p,
    .guide-hero p {
        font-size: 16px;
        max-width: 100%;
    }

    .section-title,
    .guadagna h2,
    .partners h2,
    .cta-form-container h3,
    .guide-cta h2 {
        font-size: 26px;
        /* Scaled down headings */
        margin-bottom: 30px;
    }

    .guide-img {
        height: 180px !important;
    }

    /* Improve Grid Gaps */
    .properties-grid,
    .advantages,
    .guide-grid,
    .reviews-grid {
        gap: 20px;
    }

    /* Adjust Modal */
    .modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }

    /* Adjust Footer */
    .footer-container {
        gap: 30px;
    }

    /* Disable some hover effects on touch devices to prevent "sticking" */
    .property-card:hover,
    .adv-card:hover,
    .guide-card:hover {
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .guide-card:hover .guide-img i {
        transform: none;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {

    .hero h1,
    .guide-hero h1 {
        font-size: 30px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding: 14px 20px;
        /* Larger touch target */
        display: block;
        /* Ensure full width block */
    }

    .cta-primary:hover,
    .cta-secondary:hover {
        transform: none;
        /* Simplify hover on mobile */
    }

    .section,
    .guadagna,
    .partners,
    .cta-form-section,
    .guide-section {
        padding: 40px 15px;
        /* Tighter padding */
    }

    .property-card img {
        height: 180px;
    }

    .modal-content {
        padding: 25px 15px;
        width: 95%;
        margin: 10px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* Stack form elements in modal */
    .modal-contact-switch {
        flex-direction: row;
        /* Keep radio buttons side-by-side if possible, or stack if too small */
        justify-content: center;
    }

    /* Adjust font sizes for readability */
    p,
    .adv-text,
    .property-card p,
    .guide-content p {
        font-size: 15px;
    }

    /* Ensure guide iconography is visible but not huge */
    .guide-img i {
        font-size: 40px;
    }
}

/* ================= UTILITY CLASSES ================= */
.mt-20 {
    margin-top: 20px;
}

.form-full-width {
    grid-column: 1 / -1;
}

.form-submit-container {
    grid-column: 1 / -1;
    text-align: center;
}

.text-center {
    text-align: center;
}

.bg-white-var {
    background: var(--bg-white);
}

.bg-light-var {
    background: var(--bg-light);
}

/* Additional Utilities */
.d-none {
    display: none;
}

.d-block {
    display: block;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.ml-20 {
    margin-left: 20px;
}

.pl-20 {
    padding-left: 20px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-primary {
    color: var(--primary-color);
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

.text-white {
    color: white;
}

.text-grey {
    color: #777;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-50 {
    font-size: 50px;
}

.fw-500 {
    font-weight: 500;
}

.fw-bold {
    font-weight: bold;
}

.lh-1-6 {
    line-height: 1.6;
}

.opacity-80 {
    opacity: 0.8;
}

.opacity-90 {
    opacity: 0.9;
}

/* Flatpickr Centering Global Override */
.flatpickr-calendar {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    z-index: 10001 !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 480px) {
    .flatpickr-calendar {
        transform: translate(-50%, -50%) scale(0.9) !important;
    }
}

.border-0 {
    border: 0;
}

.border-1 {
    border: 1px solid var(--border-color);
}

.bg-transparent {
    background-color: transparent;
}

.bg-light-var {
    background-color: var(--bg-light);
}

.bg-white-section {
    background-color: #fff;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.ma-auto {
    margin: auto;
}

/* Custom Overrides */
.list-disk {
    list-style-type: disc;
}

.list-check-custom {
    list-style: none;
    padding: 0;
}

.border-left-accent {
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.mw-700 {
    max-width: 700px;
}

.mw-800 {
    max-width: 800px;
}

.mw-900 {
    max-width: 900px;
}

.flex-center-gap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Specific Helpers */
.btn-close-modal {
    margin-top: 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 14px;
}

.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Fix safari user-select */
button,
.cta-primary,
.cta-secondary,
.nav-menu a {
    -webkit-user-select: none;
    user-select: none;
}

/* --- Refactoring Utility Classes --- */

/* Margins & Padding */
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

/* Text & Fonts */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-white {
    color: #fff;
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

.fs-14 {
    font-size: 14px;
}

.fs-18 {
    font-size: 18px;
}

.fw-500 {
    font-weight: 500;
}

.fw-bold {
    font-weight: bold;
}

.italic {
    font-style: italic;
}

/* Backgrounds */
.bg-white-section {
    background: var(--bg-white);
}

.bg-light-var {
    background: var(--bg-light);
}

.bg-dark-section {
    background: var(--bg-dark);
    background-color: #333;
    color: #fff;
}

/* Containers */
.mw-800 {
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Variants */
.hero-service {
    min-height: 60vh;
    padding-top: 60px;
}

.hero-incassi {
    min-height: 60vh;
    padding-top: 60px;
}

/* Flex & Grid Utilities */
.flex-center-gap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

/* Cards & Boxes */
.card-feature {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
}

.card-border {
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 8px;
}

.card-pricing {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.quote-box {
    margin-top: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-left: 4px solid var(--primary-color);
}

.highlight-box {
    text-align: center;
    background: rgba(207, 176, 124, 0.1);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(207, 176, 124, 0.2);
}

.commission-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.check-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

/* Components */
.icon-large {
    font-size: 30px;
}

.list-disk {
    list-style: disk;
    padding-left: 20px;
    color: var(--text-light);
}

.badges-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 500;
}

.badge-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.badge-pill-light {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
}

.list-check-custom {
    list-style: none;
    padding: 0;
}

.list-check-custom li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.icon-blue {
    color: var(--primary-color);
}

.grid-responsive-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.box-shadow-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.border-left-accent {
    padding: 15px;
    border-left: 3px solid var(--primary-color);
}

.grid-icon-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icon-box-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    width: 220px;
}

.icon-emoji {
    font-size: 30px;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.benefit-item {
    background: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.stat-box {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.grid-cards-bordered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--text-dark);
}

.commission-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

.commission-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.commission-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-primary {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
}

.divider-horizontal {
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
}

.check-icon {
    color: var(--primary-color);
    text-align: center;
    background: rgba(207, 176, 124, 0.1);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(207, 176, 124, 0.2);
}

.commission-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.check-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

/* Components */
.icon-large {
    font-size: 30px;
}

.list-disk {
    list-style: disk;
    padding-left: 20px;
    color: var(--text-light);
}

.badges-container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 500;
}

.badge-pill {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.badge-pill-light {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #fff;
}

.list-check-custom {
    list-style: none;
    padding: 0;
}

.list-check-custom li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.icon-blue {
    color: var(--primary-color);
}

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

.box-shadow-card {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.border-left-accent {
    padding: 15px;
    border-left: 3px solid var(--primary-color);
}

.grid-icon-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.icon-box-card {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    width: 220px;
}

.icon-emoji {
    font-size: 30px;
}

.benefit-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.benefit-item {
    background: var(--bg-white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.stat-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.pricing-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 500;
    color: var(--text-dark);
}

.commission-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

.commission-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.commission-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-primary {
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
}

.divider-horizontal {
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 5px;
}

.highlight-text {
    color: #b58f54;
    font-weight: 700;
}

.opacity-90 {
    opacity: 0.9;
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(180deg, #0f172a 0%, #090d16 100%);
    color: #94a3b8;
    padding: 70px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'Inter', sans-serif;
}

.modern-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .modern-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.logo-highlight {
    color: #b58f54;
}

.footer-description {
    font-size: 14.5px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.footer-badge-partner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(181, 143, 84, 0.12);
    color: #e2c286;
    border: 1px solid rgba(181, 143, 84, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    width: fit-content;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: #b58f54;
    border-radius: 2px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #b58f54;
    flex-shrink: 0;
}

.instagram-box {
    color: #e1306c;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}

.footer-links-grid a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-grid a:hover {
    color: #b58f54;
    padding-left: 4px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 12px;
}
