html, body {
    overflow-x: clip;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

/* Global focus reset to remove browser defaults (blue outlines) */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
[role="button"]:focus,
details:focus,
summary:focus {
    outline: none !important;
    box-shadow: none !important;
}

:focus {
    outline: none !important;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #ddd;
    background-color: #111;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    color: #eee;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #D4AF37;
    transition: all 0.3s ease;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background-color: #222;
    border-bottom: 1px solid #444;
    padding: 10px 0;
}
.top-bar-container {
    display: flex;
    justify-content: flex-end;
}
.top-bar img {
    height: 25px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(17, 17, 17, 0.5);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}
.header.scrolled {
    background-color: rgba(5, 5, 5, 0.5);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 40px;
    transition: all 0.7s ease;
}
.logo:hover img {
    opacity: 0.8;
}

/* Navigation */
.nav {
    display: flex;
}
.menu {
    list-style: none;
    display: flex;
    margin: 0;
}
.menu-item {
    position: relative;
    margin-left: 30px;
}
.menu-item > a {
    color: #ddd;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    position: relative;
}
.menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}
.menu-item:hover > a,
.menu-item.active > a {
    color: #D4AF37;
}
.menu-item:hover > a::after,
.menu-item.active > a::after {
    width: 100%;
}

/* Submenu */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #333;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 100;
    padding: 10px 0;
}
.menu-item.has-children:hover .sub-menu {
    display: block;
}
.sub-menu li a {
    padding: 8px 20px;
    display: block;
    color: #ddd;
    font-size: 13px;
}
.sub-menu li a:hover {
    color: #D4AF37;
    background-color: #444;
}

/* Slider */
.slider-main {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #111;
}
.slider-container {
    width: 100%;
    height: auto;
    min-height: 300px;
}
.slides {
    display: grid;
    width: 100%;
}
.slide {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}

/* Sections General */
.menu_page, .section-social {
    padding: 80px 0 60px;
}
.section-white {
    background-color: #111;
}
.section-stat {
    background-color: #111;
    position: relative;
    padding: 80px 0;
}
/* Removed overlay to match theme */
.section-stat > .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 10px;
}
.title-line {
    width: 50px;
    height: 2px;
    background-color: #D4AF37;
    margin: 0 auto;
}
.title-white h2 {
    color: #fff;
}

/* Estrutura / Services Moderno */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left; /* Alinhamento à esquerda para combinar com o slide */
}
.services-box {
    width: 23%;
    margin-bottom: 30px;
    padding: 30px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 0px solid #D4AF37;
    position: relative;
    background-color: rgba(255, 255, 255, 0.01);
}
.services-box:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #D4AF37;
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(0,0,0,0.2);
}
.services-box img,
.services-box svg.struct-icon {
    max-width: 60px;
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    filter: grayscale(1) brightness(0.8);
    color: #888;
}
.services-box:hover img,
.services-box:hover svg.struct-icon {
    filter: grayscale(0) brightness(1.2) drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
    transform: scale(1.1) rotate(5deg);
    color: #D4AF37;
}
.services-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}
.services-box p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 20px;
}
.read-more {
    font-size: 10px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}
.read-more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}
.services-box:hover .read-more::after {
    width: 100%;
}
@media (max-width: 991px) {
    .services-box { width: 48%; }
}
@media (max-width: 768px) {
    .services-box { width: 100%; }
}

/* Equipamentos Moderno */
.equipamentos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 60px;
}
.equipamentos-grid a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    height: 170px;
    width: 170px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.equipamentos-grid a:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.2);
}
.equipamentos-grid img {
    max-width: 100px;
    max-height: 100px;
    transition: all 0.6s ease;
    filter: grayscale(1) brightness(1.2) opacity(0.6);
}
.equipamentos-grid a:hover img {
    transform: scale(1.1);
    filter: grayscale(0) brightness(1) opacity(1);
}

/* Canon Tooltip Card */
.equip-tooltip-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.equip-tooltip {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 280px;
    background: rgba(15, 15, 15, 0.97);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    padding: 20px 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 100;
}

.equip-tooltip-wrapper:hover .equip-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Small arrow at the bottom of the tooltip pointing down */
.equip-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(15, 15, 15, 0.97);
    border-right: 1px solid rgba(212, 175, 55, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.equip-tooltip-num {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    color: #D4AF37;
    margin-bottom: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.equip-tooltip h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equip-tooltip ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.equip-tooltip ul li {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.equip-tooltip ul li:last-child {
    border-bottom: none;
}

.equip-tooltip ul li strong {
    color: #ddd;
}

.equip-tooltip-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    transition: opacity 0.2s;
}

.equip-tooltip-link:hover {
    opacity: 0.75;
    color: #D4AF37;
}


.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}
.portfolio-grid a {
    width: 25%;
    display: block;
}
.portfolio-grid img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}
.portfolio-grid a:hover img {
    transform: scale(1.05);
}

/* Social */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Lux Footer Design */
#footer-wrapper {
    background-color: #000;
    color: #888;
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 80px;
}

.footer-col h4 {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #fff;
    margin-bottom: 30px;
}

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

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

.footer-links a {
    color: #888;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-location p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.maps-link {
    color: #D4AF37;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact .phone-large {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    color: #fff;
    margin-bottom: 10px;
}

.footer-contact .email-small {
    font-size: 14px;
    color: #666;
}

/* Copyright Bar */
.copyright-wrapper {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.copyright-txt {
    font-size: 10px;
    color: #444;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.back-to-top {
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}


/* Accessibility: show outline only on keyboard navigation (Gold theme) */
:focus-visible {
    outline: 3px solid #D4AF37 !important;
    outline-offset: 2px !important;
}

/* Ensure no shadows or blue outlines on click for all interactive elements */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
/* --- RESPONSIVIDADE GLOBAL --- */

/* Tablets e Desktops Pequenos */
@media (max-width: 1024px) {
    .container { width: 92%; }
    .services-box { width: 48%; }
    .equipamentos-grid { gap: 30px; }
    .equipamentos-grid a { width: 150px; height: 150px; }
    .footer-col { width: 48%; margin-bottom: 40px; }
    .slider-container { min-height: 250px; }
    .equip-tooltip { width: 240px; }
}

/* Celulares e Tablets em Retrato */
@media (max-width: 768px) {
    .header { padding: 15px 0; }
    
    /* Menu Toggle Styling (Injected by JS) */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10001;
        padding: 5px;
    }
    
    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: #D4AF37;
        transition: all 0.3s ease;
    }
    
    /* Mobile Navigation Overlay */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        backdrop-filter: blur(15px);
        z-index: 10000;
    }
    
    .nav.active { right: 0; }
    
    .menu {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .menu-item { 
        margin: 0;
        font-size: 22px; 
    }
    
    .menu-item a { 
        letter-spacing: 3px; 
        text-transform: uppercase;
        font-family: 'Outfit', sans-serif;
    }
    
    .sub-menu {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 10px 0 0 0;
        display: none;
        text-align: center;
    }
    
    .menu-item.active .sub-menu {
        display: block;
    }
    
    .sub-menu li a {
        font-size: 14px;
        color: #888;
    }

    /* Layout Stacks */
    .services-grid { text-align: center; }
    .services-box { 
        width: 100%; 
        margin-bottom: 30px; 
        transform: none !important; 
        border-left: none !important;
        border-bottom: 1px solid #222;
    }
    .services-box:hover {
        border-bottom-color: #D4AF37;
    }
    
    .portfolio-grid a { width: 50%; }
    
    .footer { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px; 
    }
    .footer-col { width: 100%; }

    /* Equipamentos em grade 2x2 no tablet */
    .equipamentos-grid {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .equipamentos-grid a { width: 130px; height: 130px; }
    .equipamentos-grid img { max-width: 70px; max-height: 70px; }

    /* Tooltip — substituído por tap (tratado no JS) */
    .equip-tooltip {
        /* Reposiciona abaixo do ícone no mobile para não sair da tela */
        bottom: auto;
        top: calc(100% + 16px);
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
        width: min(280px, 90vw);
    }
    .equip-tooltip-wrapper.tooltip-open .equip-tooltip {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }
    /* Seta aponta para cima no mobile */
    .equip-tooltip::after {
        bottom: auto;
        top: -7px;
        border-right: none;
        border-bottom: none;
        border-left: 1px solid rgba(212, 175, 55, 0.4);
        border-top: 1px solid rgba(212, 175, 55, 0.4);
    }

    /* Seções */
    .lux-hero { padding: 60px 20px 40px; }
    .lux-title { font-size: 38px; }
    .lux-grid { grid-template-columns: 1fr; gap: 24px; margin: 24px 0 40px; }
    .section-title h2 { font-size: 24px; }
    .menu_page, .section-social { padding: 60px 0 40px; }
    
    .contact-grid-modern { 
        grid-template-columns: 1fr; 
        gap: 50px; 
    }
    .info-value-modern { font-size: 24px; }
    .submit-btn-modern { width: 100%; }
    .row-2-col { grid-template-columns: 1fr; }

    /* Footer responsivo */
    .footer { grid-template-columns: 1fr; gap: 40px; }
    .footer-contact .phone-large { font-size: 24px; }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    .lux-title { font-size: 26px; }
    .lux-tag { font-size: 10px; letter-spacing: 2px; }
    .portfolio-grid a { width: 50%; }
    .equipamentos-grid a { width: 100px; height: 100px; }
    .equipamentos-grid img { max-width: 55px; max-height: 55px; }
    .equipamentos-grid { gap: 14px; }
    .section-title h2 { font-size: 20px; }
    .menu_page, .section-social { padding: 40px 0 30px; }
    .lux-hero { padding: 40px 16px 30px; }
    .lux-grid { gap: 16px; }
    .summary-value { font-size: 14px; }
    .footer-contact .phone-large { font-size: 20px; }
    .services-box { padding: 20px 14px; }
}

/* --- Content Styling --- */
.page-content p { margin-bottom: 15px; }
.page-content ul { margin-left: 20px; margin-bottom: 20px; }
.page-content strong { color: #fff; }
.page-content a { color: #D4AF37; text-decoration: underline; }



.portfolio-grid a {
    display: block;
    position: relative;
    overflow: hidden;
}

.portfolio-grid img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.portfolio-grid a:hover img {
    transform: scale(1.1);
}

.portfolio-grid a::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.portfolio-grid a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-grid a:hover::before,
.portfolio-grid a:hover::after {
    opacity: 1;
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: clamp(40px, 5vw, 70px);
    height: clamp(40px, 5vw, 70px);
    bottom: clamp(16px, 3vw, 40px);
    right: clamp(16px, 3vw, 40px);
    z-index: 1000;
    transition: all 0.3s ease;
    filter: grayscale(1) opacity(0.7);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    filter: grayscale(0) opacity(1);
}
.whatsapp-float img {
    width: 100%;
    height: auto;
}
/* Lux Theme Extensions */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

.lux-hero {
    text-align: center;
    padding: 80px 20px 40px;
}
.lux-tag {
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.lux-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}
.lux-btn {
    display: inline-block;
    color: #D4AF37;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 60px;
    transition: color 0.3s;
}
.lux-btn::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: #D4AF37;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}
.lux-btn:hover {
    color: #fff;
}
.lux-btn:hover::after {
    width: 100%;
}

.lux-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 40px 0 80px;
}
.lux-item {
    border-top: 1px solid #444;
    padding-top: 20px;
    scroll-margin-top: 110px;
    transition: all 0.3s ease;
}
.lux-item:hover {
    border-top-color: #D4AF37;
    transform: translateY(-5px);
}
.lux-num {
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 10px;
    display: block;
}
.lux-item h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}
.lux-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.lux-item li {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}
.lux-item li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
}
.lux-item li.lux-highlight {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 12px;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.lux-item li.lux-highlight::before {
    content: none;
}

/* Rental Terms */
.rental-terms {
    margin: 0 0 80px;
}
.rental-terms-header {
    max-width: 780px;
    margin-bottom: 45px;
}
.rental-terms-header h2 {
    margin-bottom: 18px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.15;
}
.rental-terms-header p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.8;
}
.rental-terms-grid {
    margin-bottom: 0;
}
.rental-terms-grid .lux-item li {
    margin-bottom: 15px;
    line-height: 1.75;
}
.rental-terms-grid .lux-item li:last-child {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .rental-terms-header {
        margin-bottom: 30px;
    }
}

/* Lux Table Styles */
.lux-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
}
.lux-table {
    width: 100%;
    border-collapse: collapse;
    color: #aaa;
    font-size: 14px;
}
.lux-table th {
    text-align: left;
    padding: 15px;
    color: #D4AF37;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: 1px solid #444;
}
.lux-table td {
    padding: 15px;
    border-bottom: 1px solid #222;
}
.lux-table tr:hover td {
    color: #fff;
    background-color: rgba(212, 175, 55, 0.05);
}
.lux-table strong {
    color: #fff;
}


/* Contact Modernization */
.contact-section-modern {
    background-color: #111;
    color: #fff;
    padding: 140px 0 100px;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-modern label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.form-group-modern input, 
.form-group-modern textarea,
.form-group-modern select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group-modern input:focus, 
.form-group-modern textarea:focus {
    outline: none;
    border-bottom-color: #D4AF37;
}

.form-group-modern input::placeholder, 
.form-group-modern textarea::placeholder {
    color: #444;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.row-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn-modern {
    background: #fff;
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
}

.submit-btn-modern:hover {
    background: #D4AF37;
    color: #fff;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.info-block-modern h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D4AF37;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
    width: 100%;
}

.info-value-modern {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-style: normal;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

.info-text-modern {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .lux-title {
        font-size: 42px;
    }
    .info-value-modern {
        font-size: 24px;
    }
}

/* =============================================
   v2.0 — MODERN ENHANCEMENTS
   ============================================= */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ----- PRELOADER ----- */
#preloader {
    position: fixed;
    inset: 0;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    animation: preloader-pulse 1.2s ease-in-out infinite;
}
@keyframes preloader-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.95); }
}

/* ----- SCROLL PROGRESS BAR ----- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #D4AF37, #f0d060, #D4AF37);
    z-index: 100000;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* ----- CUSTOM CURSOR ----- */
#cursor-dot,
#cursor-ring {
    pointer-events: none;
    position: fixed;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99998;
}
#cursor-dot {
    width: 6px;
    height: 6px;
    background: #D4AF37;
    top: 0; left: 0;
    transition: top 0.05s linear, left 0.05s linear;
}
#cursor-ring {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    top: 0; left: 0;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, top 0.12s ease-out, left 0.12s ease-out;
}
.cursor-hover #cursor-ring {
    width: 48px;
    height: 48px;
    border-color: #D4AF37;
}
@media (hover: none) {
    #cursor-dot, #cursor-ring { display: none; }
}

/* ----- SCROLL REVEAL ----- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- TITLE LINE ANIMATION ----- */
.title-line {
    width: 0 !important;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.title-line.animated {
    width: 50px !important;
}

/* ----- SLIDER ARROWS ----- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-size: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    line-height: 1;
}
.slider-arrow:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ----- SLIDER DOTS ----- */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.slider-dot.active {
    background: #D4AF37;
    transform: scale(1.35);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* ----- PORTFOLIO HOVER TEXT ----- */
.portfolio-grid a::after {
    content: 'VER FOTO';
    font-size: 10px;
    letter-spacing: 3px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

/* ----- RESPONSIVE v2.0 ----- */
@media (max-width: 768px) {
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-prev  { left: 10px; }
    .slider-next  { right: 10px; }
}

