@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    color: #222;
    overflow-x: hidden;
}

body.menu-open,
body.popup-open {
    overflow: hidden;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}


/* NAVBAR */

.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    z-index: 1000;
    background: transparent;
    transition: background-color .3s ease, box-shadow .3s ease;
}

.main-navbar.scrolled {
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
}

.navbar-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.privado-logo-link,
.brick-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* BRAND LOGO DESIGN CORRECTION (PREVENTS HEIGHT SPILL OVER) */

.privado-logo {
    max-height: 72px;
    /* Set max height to prevent square vertical logo from expanding too wide */
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 52px;
    margin: 0 28px;
    background: rgba(255, 255, 255, .45);
    transition: background-color .3s ease;
}

.main-navbar.scrolled .logo-divider {
    background: #d9d9d9;
}

.brick-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.brick-logo {
    width: 62px;
    height: auto;
    display: block;
}

.authorized-text {
    margin-top: 2px;
    color: #fff;
    font-size: 8px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    transition: color .3s ease;
}

.main-navbar.scrolled .authorized-text {
    color: #26313d;
}


/* DESKTOP NAVIGATION */

.desktop-navigation {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    padding: 10px 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .25s ease;
}

.main-navbar.scrolled .nav-link {
    color: #424957;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #b33e39;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.nav-link.active::after {
    transform: scaleX(1);
}


/* BUTTONS */

.brochure-button {
    border: none;
    background: #b43e39;
    color: #fff;
    font-weight: 700;
    border-radius: 35px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.brochure-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, .2);
}

.desktop-brochure-button {
    padding: 16px 28px;
    font-size: 16px;
    white-space: nowrap;
}


/* MOBILE HAMBURGER */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: background-color .3s ease;
}

.main-navbar.scrolled .mobile-menu-button span {
    background: #222;
}


/* MOBILE MENU */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100vh;
    z-index: 1100;
    background: #fff;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    height: 88px;
    background: #07111f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.mobile-menu-logos {
    display: flex;
    align-items: center;
    height: 100%;
}


/* MOBILE BRAND DRAWER LOGO CORRECTION */

.mobile-privado-logo {
    max-height: 58px;
    /* Fits perfectly inside the 88px mobile drawer header height */
    width: auto;
    display: block;
    object-fit: contain;
}

.mobile-logo-divider {
    width: 1px;
    height: 44px;
    margin: 0 12px;
    background: rgba(255, 255, 255, .35);
}

.mobile-brick-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 70px;
}

.mobile-brick-logo {
    width: 50px;
    height: auto;
    display: block;
}

.mobile-authorized-text {
    margin-top: 2px;
    color: #fff;
    font-size: 6.5px;
    line-height: 1.15;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.mobile-menu-close {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* MOBILE NAVIGATION */

.mobile-navigation {
    padding: 18px 14px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 48px;
    padding: 0 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: background-color .2s ease, color .2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #faf2f1;
}

.mobile-nav-link.active {
    color: #b43e39;
}

.mobile-nav-icon {
    width: 20px;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b43e39;
    font-size: 15px;
}

.mobile-nav-icon i {
    display: block;
}

.mobile-brochure-button {
    margin: 10px 14px;
    min-width: 121px;
    padding: 12px 20px;
    border-radius: 28px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 5px 14px rgba(180, 62, 57, .25);
}

.mobile-brochure-button i {
    font-size: 15px;
}

.mobile-brochure-button span {
    line-height: 1;
}


/* POPUP */

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .62);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    position: relative;
    width: min(100%, 470px);
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: #b43e39;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 12px;
    cursor: pointer;
    z-index: 10;
    transition: background-color .2s ease;
}

.popup-close:hover {
    background: #98332f;
    color: #fff;
}

.popup-body {
    padding: 38px 32px 30px;
}

.popup-title {
    text-align: center;
    font-size: 27px;
    color: #292929;
}

.popup-subtitle {
    margin-top: 5px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.popup-price-banner {
    margin: 22px 0;
    padding: 13px 10px;
    background: #b43e39;
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-field-group {
    width: 100%;
}

.popup-input,
.phone-input-wrapper {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.popup-input {
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.popup-input:focus,
.phone-input-wrapper:focus-within {
    border-color: #b43e39;
    box-shadow: 0 0 0 2px rgba(180, 62, 57, .08);
}

.popup-input.input-error {
    border-color: #dc2626;
}

.iti {
    display: block !important;
    width: 100%;
}

.iti__country-list {
    z-index: 2010 !important;
    color: #333;
    text-align: left;
}

.popup-consent input[type="checkbox"] {
    accent-color: #b43e39;
}

.popup-error {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 12px;
}

.popup-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #555;
    font-size: 11px;
    line-height: 1.5;
}

.popup-consent input {
    margin-top: 2px;
    flex-shrink: 0;
}

.popup-consent a {
    color: #b43e39;
    text-decoration: underline;
}

.popup-form-message {
    min-height: 18px;
    text-align: center;
    font-size: 13px;
}

.popup-form-message.error {
    color: #dc2626;
}

.popup-form-message.success {
    color: #15803d;
}

.popup-submit-button {
    width: 100%;
    min-height: 48px;
    border: none;
    border-radius: 5px;
    background: #b43e39;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, opacity .2s ease;
}

.popup-submit-button:hover:not(:disabled) {
    background: #98332f;
}

.popup-submit-button:disabled {
    cursor: not-allowed;
    opacity: .65;
}


/* HERO */

.hero-section {
    position: relative;
    width: 100%;
    background: #f5f5f5;
}

.hero-desktop {
    position: relative;
    width: 100%;
    height: 795px;
    overflow: hidden;
}

.hero-slider-track {
    position: absolute;
    inset: 0;
    width: 200%;
    height: 100%;
    display: flex;
    animation: heroSlide 12s infinite;
    will-change: transform;
}

.hero-slide {
    flex: 0 0 50%;
    width: 50%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@keyframes heroSlide {
    0%,
    40% {
        transform: translateX(0);
    }
    50%,
    90% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(5, 22, 35, .54) 0%, rgba(5, 22, 35, .28) 35%, rgba(5, 22, 35, .1) 70%, rgba(5, 22, 35, .15) 100%);
}

.hero-desktop-content {
    position: absolute;
    z-index: 3;
    left: 8.8%;
    top: 50%;
    transform: translateY(-45%);
    width: 650px;
    pointer-events: none;
}

.hero-desktop-title {
    margin: 0;
    color: #fff;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 3.55vw, 68px);
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: -1.4px;
}

.hero-desktop-title em {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-weight: 400;
}


/* FLOATING CARD */

.hero-floating-card {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: -48px;
    transform: translateX(-50%);
    width: min(calc(100% - 380px), 1455px);
    min-height: 96px;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.hero-floating-card .hero-card-item strong {
    font-size: 16px;
    /* Keep regular styling */
}

.hero-card-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.hero-card-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-svg-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #1a1a1a;
}

.hero-card-content strong {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}

.hero-card-divider {
    width: 1px;
    height: 45px;
    margin: 0 25px;
    background: #e4e4e4;
}


/* MOBILE HERO */

.hero-mobile {
    display: none;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    background: #071b3b;
}

.hero-mobile-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    margin-top: 40px;
}


/* DEMO SECTIONS */

.demo-section {
    min-height: 100vh;
    padding: 140px 8% 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.demo-section h2 {
    font-size: 42px;
}


/* TABLET overrides */

@media (max-width:1100px) {
    .navbar-container {
        padding: 0 25px;
    }
    .desktop-navigation {
        gap: 18px;
    }
    .nav-link {
        font-size: 15px;
    }
    /* Constraint for Tablet views */
    .privado-logo {
        max-height: 64px;
    }
    .logo-divider {
        margin: 0 18px;
    }
    .brick-logo {
        width: 58px;
    }
    .authorized-text {
        font-size: 7px;
    }
    .desktop-brochure-button {
        padding: 14px 20px;
        font-size: 14px;
    }
    .hero-desktop-content {
        left: 7%;
    }
    .hero-desktop-title {
        font-size: clamp(40px, 4vw, 58px);
    }
    .hero-floating-card {
        width: calc(100% - 100px);
        padding: 26px 35px;
    }
    .hero-card-item {
        gap: 20px;
    }
    .hero-card-divider {
        margin: 0 20px;
    }
    .hero-floating-card .hero-card-item strong {
        font-size: 16px;
        /* Retain proper sizing context */
    }
}


/* MOBILE overrides */

@media (max-width:768px) {
    .main-navbar {
        height: 64px;
    }
    .navbar-container {
        padding: 0 15px;
    }
    /* MOBILE NAV LOGO SIZING STABILITY */
    .privado-logo {
        max-height: 46px;
        /* Scales square logo to sit vertically aligned inside 64px navbar */
        width: auto;
    }
    .logo-divider {
        height: 36px;
        margin: 0 10px;
    }
    .brick-logo-wrapper {
        min-width: 60px;
    }
    .brick-logo {
        width: 50px;
    }
    .authorized-text {
        font-size: 6px;
    }
    .desktop-navigation,
    .desktop-brochure-button {
        display: none;
    }
    .mobile-menu-button {
        display: flex;
    }
    .hero-desktop {
        display: none !important;
    }
    .hero-mobile {
        display: block !important;
        width: 100%;
        height: auto;
        max-height: none;
        overflow: hidden;
    }
    .hero-mobile-image {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    .hero-floating-card {
        display: none !important;
    }
    .popup-body {
        padding: 34px 20px 24px;
    }
    .popup-modal {
        width: 100%;
        border-radius: 10px;
    }
}


/* SMALL MOBILE overrides */

@media (max-width:420px) {
    .mobile-menu {
        width: 100%;
    }
    .popup-overlay {
        padding: 10px;
    }
    .popup-body {
        padding-left: 16px;
        padding-right: 16px;
    }
    .popup-title {
        font-size: 23px;
    }
    .popup-price-banner {
        font-size: 12px;
    }
}


/* VERY SMALL MOBILE overrides */

@media (max-width:360px) {
    .navbar-container {
        padding: 0 10px;
    }
    /* VERY SMALL MOBILE NAV LOGO SIZING STABILITY */
    .privado-logo {
        max-height: 40px;
        width: auto;
    }
    .logo-divider {
        margin: 0 7px;
        height: 32px;
    }
    .brick-logo-wrapper {
        min-width: 52px;
    }
    .brick-logo {
        width: 44px;
    }
    .authorized-text {
        font-size: 5.5px;
    }
    .mobile-menu-button {
        width: 38px;
    }
    .mobile-menu-button span {
        width: 22px;
    }
}


/* OVERVIEW */

.overview-section {
    width: 100%;
    background: #f5f5f5;
    padding: 65px 8% 17px;
}

.overview-container {
    width: min(100%, 1535px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: grid-template-columns: minmax(0, 690px) minmax(0, 1fr);
    gap: 84px;
    align-items: start;
}


/* Fallback/Correction for layout issues in grid definition */

.overview-container {
    grid-template-columns: minmax(0, 690px) minmax(0, 1fr);
}

.overview-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 9px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.overview-content {
    padding-top: 4px;
}

.overview-content h2 {
    margin: 0 0 20px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.15;
}

.overview-content>p {
    max-width: 730px;
    margin: 0;
    color: #566b7e;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: 19px;
    font-weight: 380;
    line-height: 1.3;
}

.overview-stats {
    margin-top: 62px;
    display: flex;
    align-items: flex-start;
    gap: 145px;
}

.overview-stat {
    min-width: 165px;
}

.overview-stat-icon {
    height: 55px;
    display: flex;
    align-items: center;
    color: #d36561;
    font-size: 44px;
    font-weight: 300;
}

.overview-stat-icon i {
    font-weight: 300;
}

.overview-stat-number {
    margin-top: 16px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.overview-stat-label {
    margin-top: 5px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.2;
}

@media (max-width:1100px) {
    .overview-section {
        padding: 100px 5% 35px;
    }
    .overview-container {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 45px;
    }
    .overview-image {
        height: 440px;
    }
    .overview-content h2 {
        font-size: 40px;
    }
    .overview-content>p {
        font-size: 17px;
        line-height: 1.6;
    }
    .overview-stats {
        gap: 55px;
    }
    .overview-stat-number {
        font-size: 38px;
    }
    .overview-stat-label {
        font-size: 20px;
    }
}

/* =========================================================
   MOBILE OVERVIEW
   ========================================================= */

@media (max-width: 768px) {

    .overview-section {
        padding: 30px 20px 35px;
        background: #fff;
    }

    .overview-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* IMAGE */
    .overview-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        border-radius: 8px;
        overflow: hidden;
    }

    .overview-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    /* CONTENT */
    .overview-content {
        width: 100%;
        padding: 0;
    }

    .overview-content h2 {
        margin: 0 0 14px;
        font-size: 30px;
        line-height: 1.1;
        font-weight: 400;
    }

    .overview-content > p {
        width: 100%;
        max-width: none;
        margin: 0;
        font-size: 15px;
        line-height: 1.7;
        letter-spacing: 0;
    }

    /* =====================================================
       STATS GRID
       ===================================================== */

    .overview-stats {
        width: 100%;
        margin-top: 30px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 20px;
        row-gap: 30px;
    }

    .overview-stat {
        min-width: 0;
        width: 100%;
    }

    .overview-stat-icon {
        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: flex-start;

        margin-bottom: 8px;

        font-size: 30px;
        line-height: 1;
    }

    .overview-stat-number {
        margin: 0;

        font-size: 30px;
        line-height: 1.05;
        font-weight: 400;

        white-space: nowrap;
    }

    .overview-stat-label {
        margin: 5px 0 0;

        font-size: 15px;
        line-height: 1.2;
        font-weight: 400;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .overview-section {
        padding: 26px 18px 30px;
    }

    .overview-container {
        gap: 22px;
    }

    .overview-image {
        aspect-ratio: 16 / 10;
        border-radius: 7px;
    }

    .overview-content h2 {
        margin-bottom: 12px;
        font-size: 28px;
    }

    .overview-content > p {
        font-size: 14px;
        line-height: 1.65;
    }

    .overview-stats {
        margin-top: 27px;

        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 16px;
        row-gap: 28px;
    }

    .overview-stat-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 7px;
        font-size: 27px;
    }

    .overview-stat-number {
        font-size: 27px;
    }

    .overview-stat-label {
        font-size: 14px;
        line-height: 1.2;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .overview-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .overview-content h2 {
        font-size: 26px;
    }

    .overview-content > p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .overview-stats {
        column-gap: 12px;
        row-gap: 25px;
    }

    .overview-stat-number {
        font-size: 24px;
    }

    .overview-stat-label {
        font-size: 13px;
    }
}


/* NUMBERS */

.numbers-section {
    width: 100%;
    background: #fff;
    padding: 20px 7% 20px;
}

.numbers-container {
    width: min(100%, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 100px;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.number-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    object-fit: contain;
}

.number-value {
    display: flex;
    align-items: baseline;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 58px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.number-value small {
    margin-left: 7px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    font-weight: 400;
}

.number-value .suffix {
    margin-left: 3px;
    font-size: 30px;
}

.number-label {
    margin-top: 18px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1.2;
}

@media (max-width: 768px) {

    .numbers-section {
        padding: 25px 20px 30px;
    }

    .numbers-container {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
        row-gap: 30px;
    }

    .number-item {
        width: 100%;
        align-items: flex-start;
    }

    .number-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
        display: block;
    }

    .number-value {
        font-size: 30px;
        line-height: 1.05;
        white-space: nowrap;
    }

    .number-value small {
        margin-left: 4px;
        font-size: 10px;
    }

    .number-value .suffix {
        margin-left: 2px;
        font-size: 16px;
    }

    .number-label {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.2;
    }
}


/* Small phones */
@media (max-width: 480px) {

    .numbers-section {
        padding: 22px 18px 28px;
    }

    .numbers-container {
        column-gap: 16px;
        row-gap: 26px;
    }

    .number-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 7px;
    }

    .number-value {
        font-size: 27px;
    }

    .number-value small {
        font-size: 9px;
        margin-left: 3px;
    }

    .number-value .suffix {
        font-size: 15px;
    }

    .number-label {
        margin-top: 4px;
        font-size: 13px;
    }
}


/* Very small phones */
@media (max-width: 360px) {

    .numbers-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .numbers-container {
        column-gap: 12px;
        row-gap: 24px;
    }

    .number-value {
        font-size: 24px;
    }

    .number-label {
        font-size: 12px;
    }
}


/* AMENITIES */

.amenities-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    isolation: isolate;
}

.amenities-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: background-image .45s ease;
}

.amenities-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(0, 0, 0, .18);
}

.amenities-container {
    width: min(1000px, calc(100% - 40px));
    min-height: 500px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 70px;
}

.amenities-tabs {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.amenity-tab {
    min-height: 46px;
    padding: 0 21px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 17px;
    background: transparent;
    color: #fff;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    transition: .25s ease;
}

.amenity-tab:hover,
.amenity-tab.active {
    background: #fff;
    color: #26313d;
}

.amenities-card {
    width: 100%;
    min-height: 300px;
    padding: 38px 50px 24px;
    background: rgba(255, 255, 255, .97);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.amenities-card h2 {
    margin: 0 0 38px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
    color: #333;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.amenity-icon {
    position: relative;
    width: 23px;
    min-width: 23px;
    height: 23px;
    margin-top: 1px;
    border: 2px solid #707070;
    border-radius: 50%;
}

.amenity-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border: 2px solid #707070;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.amenity-text {
    display: block;
}

.amenities-more {
    margin-top: 28px;
    color: #666;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 400;
}


/* AMENITY BACKGROUNDS */

.amenities-background.indoor {
    background-image: url("../images/indoorbg.png");
}

.amenities-background.ground {
    background-image: url("../images/groundbg.png");
}

.amenities-background.podium {
    background-image: url("../images/podiumbg.png");
}

@media (max-width:1200px) {
    .amenities-container {
        width: calc(100% - 70px);
        margin-left: 70px;
    }
    .amenities-list {
        column-gap: 30px;
    }
}

@media (max-width:768px) {
    .amenities-section {
        min-height: 0;
    }
    .amenities-container {
        width: 100%;
        min-height: 0;
        margin: 0;
        padding: 28px 12px 28px;
    }
    .amenities-tabs {
        justify-content: flex-start;
        gap: 7px;
        margin-bottom: 14px;
        padding: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
    }
    .amenities-tabs::-webkit-scrollbar {
        display: none;
    }
    .amenity-tab {
        min-height: 29px;
        padding: 0 12px;
        border-radius: 13px;
        font-size: 10.5px;
        flex-shrink: 0;
    }
    .amenities-card {
        width: 100%;
        min-height: 0;
        padding: 21px 20px 17px;
        border-radius: 13px;
    }
    .amenities-card h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }
    .amenities-list {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }
    .amenity-item {
        gap: 9px;
        font-size: 12.5px;
        line-height: 1.28;
    }
    .amenity-icon {
        width: 17px;
        min-width: 17px;
        height: 17px;
        border-width: 2px;
        margin-top: 0;
    }
    .amenity-icon::after {
        width: 5px;
        height: 5px;
        border-width: 1.5px;
    }
    .amenities-more {
        margin-top: 15px;
        font-size: 11.5px;
    }
    .amenities-background {
        background-position: center center;
    }
    .amenities-overlay {
        background: rgba(0, 0, 0, .22);
    }
}

@media (max-width:420px) {
    .amenities-container {
        padding: 25px 10px 25px;
    }
    .amenities-card {
        padding: 20px 18px 16px;
    }
    .amenities-card h2 {
        font-size: 23px;
        margin-bottom: 18px;
    }
    .amenity-item {
        font-size: 12px;
        gap: 8px;
    }
    .amenities-list {
        gap: 8px;
    }
}


/* GALLERY */

.gallery-section {
    width: 100%;
    background: #fff;
    padding: 10px 0 10px;
    overflow: hidden;
}

.gallery-container {
    width: 84%;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-title {
    margin: 0;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.gallery-subtitle {
    margin: 24px 0 36px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
}

.gallery-slider {
    width: 100%;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.gallery-slide {
    width: calc((84vw - 90px)/4);
    height: 390px;
    flex: 0 0 calc((84vw - 90px)/4);
    overflow: hidden;
    border-radius: 19px;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 19px;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gallery-controls button {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid #b33e39;
    border-radius: 8px;
    background: #fff;
    color: #b33e39;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.gallery-controls button:hover {
    background: #b33e39;
    color: #fff;
}

.gallery-controls span {
    display: block;
    margin-top: -5px;
    font-family: Arial, sans-serif;
    font-size: 39px;
    font-weight: 300;
    line-height: 1;
}

@media (max-width:1200px) {
    .gallery-container {
        width: 90%;
    }
    .gallery-track {
        gap: 24px;
    }
    .gallery-slide {
        width: calc((90vw - 72px)/4);
        flex-basis: calc((90vw - 72px)/4);
        height: 360px;
        border-radius: 17px;
    }
    .gallery-slide img {
        border-radius: 17px;
    }
    .gallery-subtitle {
        margin: 22px 0 30px;
        font-size: 25px;
    }
    .gallery-controls {
        margin-top: 15px;
    }
}

@media (max-width:768px) {
    .gallery-section {
        padding: 15px 0 15px;
    }
    .gallery-container {
        width: 100%;
        margin: 0;
        overflow: hidden;
    }
    .gallery-title {
        font-size: 25px;
        line-height: 1.15;
    }
    .gallery-subtitle {
        margin: 15px 20px 27px;
        font-size: 14px;
        line-height: 1.25;
    }
    .gallery-slider {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .gallery-track {
        gap: 12px;
        width: max-content;
    }
    .gallery-slide {
        width: calc(100vw - 40px);
        flex: 0 0 calc(100vw - 40px);
        height: 275px;
        border-radius: 13px;
    }
    .gallery-slide img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        border-radius: 13px;
    }
    .gallery-controls {
        gap: 14px;
        margin-top: 13px;
    }
    .gallery-controls button {
        width: 43px;
        height: 43px;
        border-radius: 6px;
    }
    .gallery-controls span {
        font-size: 29px;
        margin-top: -4px;
    }
}

@media (max-width:420px) {
    .gallery-slider {
        padding: 10px 20px;
    }
    .gallery-track {
        gap: 12px;
    }
    .gallery-slide {
        width: calc(100vw - 40px);
        flex-basis: calc(100vw - 40px);
        height: 265px;
        border-radius: 13px;
    }
    .gallery-slide img {
        border-radius: 13px;
    }
}


/* FLOOR PLAN */

.floorplan-section {
    width: 100%;
    background: #1d2d3d;
    padding: 48px 0 49px;
}

.floorplan-container {
    width: 80%;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.floorplan-item {
    position: relative;
    min-height: 120px;
    padding: 12px 20px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.floorplan-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .25);
}

.floorplan-download-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplan-download-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floorplan-text {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.floorplan-item:hover .floorplan-download-icon svg {
    transform: translateY(2px);
}

.floorplan-download-icon svg {
    transition: transform .2s ease;
}

@media (max-width:1200px) {
    .floorplan-container {
        width: 80%;
    }
    .floorplan-text {
        font-size: 19px;
    }
}
@media (max-width: 768px) {
    .floorplan-section {
        padding: 14px 0;
    }

    .floorplan-container {
        width: 95%;
        max-width: none;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 0 auto;
    }

    .floorplan-item {
        min-height: 85px;
        padding: 8px 5px;
        gap: 10px;
        width: 100%;
    }

    /* Vertical separator */
    .floorplan-item:not(:last-child)::after {
        top: 0;
        right: 0;
        bottom: auto;
        width: 1px;
        height: 100%;
        background: rgba(255, 255, 255, 0.25);
    }

    .floorplan-download-icon {
        width: 27px;
        height: 27px;
    }

    .floorplan-download-icon svg {
        width: 27px;
        height: 27px;
        stroke-width: 1.7;
    }

    .floorplan-text {
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }
}


/* =========================================================
   LOCATION & CONNECTIVITY
========================================================= */

.location-section {
    width: 100%;
    background: #fff;
    padding: 10px 0 40px;
}

.location-container {
    width: 84%;
    max-width: 1530px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .94fr;
    gap: 75px;
    align-items: stretch;
}

.location-content {
    padding-top: 0;
}

.location-title {
    margin: 0 0 15px;
    color: #b33e39;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    font-weight: 380;
    line-height: 1.1;
}

.location-accordion {
    width: 100%;
}

.location-group {
    width: 100%;
    border-bottom: 1px solid #dfe3e7;
}

.location-group-header {
    width: 100%;
    min-height: 86px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #162c3d;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 23px;
    font-weight: 300;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
}

.location-toggle {
    color: #b33e39;
    font-family: Arial, sans-serif;
    font-size: 27px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
}

.location-group-content {
    display: none;
}

.location-group.active .location-group-content {
    display: block;
    padding-bottom: 22px;
}

.location-row {
    min-height: 43px;
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #28435a;
    font-family: Arial, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.3;
}

.location-row span:last-child {
    color: #8c9aaa;
    white-space: nowrap;
}

.location-map {
    width: 100%;
    height: auto;
    align-self: stretch;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
    display: flex;
}

.location-map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .location-container {
        width: 90%;
        gap: 45px;
        align-items: stretch;
    }
    .location-title {
        margin-bottom: 48px;
        font-size: 42px;
    }
    .location-group-header {
        min-height: 72px;
        font-size: 23px;
    }
    .location-row {
        font-size: 17px;
    }
    .location-map {
        height: auto;
    }
}

@media (max-width: 768px) {
    .location-section {
        padding: 8px 0 28px;
    }
    .location-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: 0;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .location-content {
        width: 100%;
        padding: 0;
    }
    .location-title {
        margin: 0 0 25px;
        font-size: 25px;
        line-height: 1.15;
    }
    .location-group-header {
        min-height: 56px;
        font-size: 15px;
    }
    .location-toggle {
        font-size: 19px;
    }
    .location-group.active .location-group-content {
        padding-bottom: 10px;
    }
    .location-row {
        min-height: 31px;
        font-size: 13px;
    }
    .location-map {
        width: 100%;
        height: 270px;
        align-self: auto;
        border-radius: 13px;
    }
    .location-map img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 420px) {
    .location-container {
        padding: 0 15px;
    }
    .location-title {
        margin-bottom: 10px;
        font-size: 24px;
    }
    .location-group-header {
        min-height: 54px;
        font-size: 14px;
    }
    .location-toggle {
        font-size: 18px;
    }
    .location-row {
        min-height: 30px;
        font-size: 12.5px;
    }
    .location-map {
        height: 265px;
        border-radius: 13px;
    }
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    position: relative;
    padding: 45px 0;
    background: url('../images/privadoelegance.png') no-repeat center center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: min(100%, 460px);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-card-title {
    text-align: center;
    font-size: 26px;
    color: #8c3835;
    font-family: serif;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 0px;
    width: 100%;
}

.contact-card-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.contact-authorized-text {
    font-size: 8.5px;
    color: #666;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: center;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 4px 12px;
    margin-top: 3px;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-field-group {
    position: relative;
    width: 100%;
}

.contact-input {
    width: 100%;
    min-height: 44px;
    border: 1.5px solid #cccccc;
    border-radius: 30px !important;
    background: #fff;
    padding: 0 20px;
    font-size: 13.5px;
    color: #333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder {
    color: #999;
}

.contact-input:focus {
    border-color: #b43e39;
    box-shadow: 0 0 0 3px rgba(180, 62, 57, 0.1);
}

.contact-input.input-error {
    border-color: #dc2626;
}

.contact-section .iti {
    display: block !important;
    width: 100%;
}

.contact-section .iti .contact-input {
    border-radius: 30px !important;
}

.contact-section .iti__country-list {
    z-index: 100 !important;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-error {
    display: block;
    margin-top: 4px;
    margin-left: 15px;
    color: #dc2626;
    font-size: 11.5px;
    text-align: left;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #555;
    font-size: 10px;
    line-height: 1.4;
    text-align: left;
}

.contact-consent input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #b43e39;
    width: 14px;
    height: 14px;
    cursor: pointer;
}

.contact-consent a {
    color: #b43e39;
    text-decoration: underline;
}

.contact-form-message {
    min-height: 15px;
    text-align: center;
    font-size: 12.5px;
}

.contact-form-message.error {
    color: #dc2626;
}

.contact-form-message.success {
    color: #15803d;
}

.contact-submit-button {
    width: 100%;
    min-height: 44px;
    border: none;
    border-radius: 30px;
    background: #a63d3a;
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    letter-spacing: 1px;
}

.contact-submit-button:hover:not(:disabled) {
    background: #8c322f;
}

.contact-submit-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
        min-height: auto;
    }
    .contact-container {
        justify-content: center;
        padding: 0 15px;
    }
    .contact-card {
        width: 100%;
        padding: 20px 15px;
        gap: 10px;
    }
    .contact-card-title {
        font-size: 22px;
    }
}


/* =========================================================
   SITE FOOTER SECTION
   ========================================================= */

.site-footer {
    background: #f9f9f9;
    padding-top: 10px;
    border-top: 1px solid #e2e2e2;
    color: #444;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}


/* Footer Top Columns (Desktop) */

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 0 10px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-brand {
    align-items: flex-start;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.footer-socials a:hover {
    border-color: #b43e39;
    color: #b43e39;
    background: #fafafa;
}

.footer-col-privado h3,
.footer-col-about h3 {
    font-size: 15px;
    color: #111;
    font-weight: 700;
    margin-bottom: 2px;
}

.footer-col-privado p,
.footer-col-about p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
}

.footer-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    color: #444;
}

.footer-bullets i {
    color: #a63d3a;
    font-size: 12.5px;
}


/* Mobile Brand Header (Hidden on Desktop) */

.footer-mobile-brand {
    display: none;
}


/* Horizontal Dividers */

.footer-divider {
    border: 0;
    border-top: 1px solid #eaeaea;
    margin: 15px 0;
}


/* Footer Contact Row */

.footer-contact {
    display: flex;
    justify-content: space-between;
    padding: 0;
    gap: 20px;
}

.footer-contact-item {
    flex: 1;
}

.footer-contact-item h4 {
    font-size: 12.5px;
    color: #777;
    margin-bottom: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-item a,
.footer-contact-item p {
    font-size: 13.5px;
    color: #333;
    line-height: 1.4;
    font-weight: 500;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #b43e39;
}


/* RERA block */

.footer-rera {
    text-align: center;
    background: #fff;
    padding: 10px 20px;
    border-top: 1px dashed #cccccc;
    border-bottom: 1px dashed #cccccc;
    margin: 15px 0;
}

.footer-rera p {
    font-size: 12px;
    color: #222;
    font-weight: 700;
}


/* Disclaimer text block */

.footer-disclaimer {
    padding: 0;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 10.5px;
    color: #777;
    line-height: 1.6;
    text-align: justify;
}


/* Navigation links */

.footer-links {
    text-align: center;
    padding: 10px 0 20px;
}

.footer-links a {
    font-size: 12px;
    color: #7834bc;
    font-weight: bold;
    text-decoration: none;
    margin: 0 5px;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-links .link-separator {
    color: #ccc;
    font-size: 12px;
}


/* Copyright black bar */

.footer-copyright-bar {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
}

.footer-copyright-bar p {
    font-size: 11px;
    font-weight: 700;
    margin: 0;
}


/* Responsive Overrides */

@media (max-width: 768px) {
    .footer-container {
        padding: 0 15px;
    }
    .footer-top,
    .footer-top+.footer-divider {
        display: none !important;
    }
    .footer-mobile-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0px 0 10px;
        gap: 8px;
    }
    .footer-mobile-logo {
        height: 48px;
        width: auto;
        object-fit: contain;
        margin-bottom: 5px;
    }
    .footer-mobile-brand h3 {
        font-size: 16px;
        color: #111;
        font-weight: 700;
        margin: 0;
    }
    .footer-mobile-brand p {
        font-size: 12px;
        color: #555;
        line-height: 1.6;
        max-width: 500px;
        margin: 0;
    }
    .footer-contact {
        display: flex;
        flex-direction: row !important;
        justify-content: space-between;
        padding: 10px 0;
        gap: 10px;
        text-align: left;
    }
    .footer-contact-item {
        width: auto;
    }
    .footer-contact-item h4 {
        font-size: 11px;
        margin-bottom: 2px;
    }
    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 11px;
        line-height: 1.3;
    }
    .footer-divider {
        margin: 10px 0;
    }
    .footer-rera {
        margin: 15px 0;
        padding: 8px 10px;
    }
    .footer-disclaimer {
        padding: 0;
        margin-bottom: 15px;
    }
    .footer-links {
        padding: 10px 0 15px;
    }
}