:root {
    --bg-base: #181615;
    --bg-surface: #221F1E;
    --bg-elevated: #2C2826;
    --gold-solid: #d4af37;
    --accent-bronze: #D4A373;
    --accent-dim: rgba(212, 163, 115, 0.15);
    --text-main: #F4EFEA;
    --text-soft: #A39B95;
    --text-pure: #FFFFFF;
    --gold-light: #FCEABB;
    --gold-core: #F8B500;
    --gold-dark: #B38000;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --logo-filter: brightness(1.2) contrast(1.1);
    --ease-lounge: cubic-bezier(0.25, 1, 0.5, 1);
    --radius-md: 16px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-base);
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-head);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-main);
}

.text-bronze {
    color: var(--accent-bronze);
    font-style: italic;
    font-weight: 400;
}

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

.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 5vw;
}

.lounge-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-base);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1.5s var(--ease-lounge), visibility 1.5s;
}

.lounge-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 550px;
    height: auto;
    object-fit: contain;
    filter: var(--logo-filter);
    margin-bottom: 30px;
    animation: pulse 2s infinite alternate;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--accent-bronze);
    animation: drawLine 1.5s ease-in-out forwards;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes drawLine {
    0% { width: 0; }
    100% { width: 550px; }
}

.header-lounge {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: 0.6s var(--ease-lounge);
    border-bottom: 1px solid transparent;
}

.header-lounge.scrolled {
    padding: 15px 0;
    background: rgba(24, 22, 21, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 163, 115, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    width: 240px;
    transition: 0.4s;
    object-fit: contain;
}

.header-lounge.scrolled .nav-logo img {
    width: 210px;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-bronze);
}

.btn-bronze {
    border: 1px solid var(--accent-bronze);
    color: var(--accent-bronze) !important;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.4s;
    display: inline-block;
}

.btn-bronze:hover {
    background: var(--accent-bronze);
    color: var(--bg-base) !important;
}

.mobile-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-bronze);
}

.hero-lounge {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(24, 22, 21, 0.95) 0%, rgba(24, 22, 21, 0.6) 20%, rgba(24, 22, 21, 0) 50%);
}

.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 60%), radial-gradient(rgba(212, 175, 55, 0.45) 1.5px, transparent 1.5px), repeating-linear-gradient(45deg, transparent, transparent 45px, rgba(212, 175, 55, 0.6) 45px, rgba(212, 175, 55, 0.6) 46px), repeating-linear-gradient(-45deg, transparent, transparent 45px, rgba(212, 175, 55, 0.6) 45px, rgba(212, 175, 55, 0.6) 46px), linear-gradient(to bottom, transparent 95%, rgba(212, 175, 55, 0) 100%);
    background-size: 100% 100%, 45px 45px, 100% 100%, 100% 100%, 100% 4px;
    
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0) 14%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.15) 8%, rgba(0,0,0,0) 14%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-bronze);
    margin-bottom: 25px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--accent-bronze);
}

.hero-content h1 {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-soft);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 500px;
}

.text-liquid-gold {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-core) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-stats {
    text-align: right;
}

.stat-item {
    margin-bottom: 25px;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--text-pure);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gold-core);
    letter-spacing: 3px;
    font-weight: 500;
}

.scrolling-ticker {
    position: absolute;
    top: calc(100% + 80px);
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: rgba(24, 22, 21, 0.75);
    border-top: 1px solid rgba(212, 163, 115, 0.3);
    border-bottom: 1px solid rgba(212, 163, 115, 0.3);
    padding: 14px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.ticker-item {
    font-size: 1.05rem;
    color: var(--text-pure);
    font-weight: 500;
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    white-space: nowrap;
}

.ticker-item .highlight {
    color: var(--gold-core);
    font-weight: 600;
}

@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.proud-banner {
    padding: 40px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--accent-dim);
}

.proud-banner h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-family: var(--font-head);
    font-weight: 500;
}

.values-section {
    padding: 120px 0;
    background: var(--bg-base);
    position: relative;
    z-index: 3;
}

.section-header {
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    max-width: 600px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 400px;
    text-align: right;
}

.cards-flex {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-surface);
    padding: 50px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.02);
    transition: 0.4s var(--ease-lounge);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: var(--bg-elevated);
    border-color: var(--accent-dim);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-bronze);
    margin-bottom: 30px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 500;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    flex-grow: 1;
}

.rooms-section {
    padding: 120px 0;
    background: var(--bg-surface);
    position: relative;
    z-index: 3;
}

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

.room-card:nth-child(4) {
    grid-column: 2 / 3;
}

.room-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
    transition: 0.4s var(--ease-lounge);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-10px);
    background: var(--bg-elevated);
    border-color: var(--accent-dim);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.room-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-lounge), filter 0.6s var(--ease-lounge);
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.08) translateZ(0);
}

.room-content {
    padding: 35px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main);
}

.room-content p {
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.7;
    flex-grow: 1;
}

.value-card:hover,
.room-card:hover,
.room-card:hover .room-img-wrapper img {
    transition-delay: 0s !important;
}

.gallery-section {
    padding: 50px 0 100px;
}

.cinema-frame {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 75vh;
}

.cinema-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) sepia(0);
}

.cinema-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    max-width: 600px;
    background: rgba(34, 31, 30, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-dim);
}

.cinema-text h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cinema-text p {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.contact-lounge {
    background: var(--bg-surface);
    padding: 120px 0;
    border-top: 1px solid var(--accent-dim);
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    margin-bottom: 20px;
}

.contact-header p {
    color: var(--text-soft);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-inline {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.contact-info-inline .info-box {
    text-align: center;
    padding: 0 20px;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-bronze);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.info-text {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-main);
}

.contact-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--accent-bronze);
    text-align: center;
}

.form-lounge {
    background: var(--bg-base);
    padding: 50px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.input-group {
    margin-bottom: 35px;
    position: relative;
}

.input-group input, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 300;
    outline: none;
    transition: 0.3s;
    resize: none;
}

.input-group input:focus, .input-group textarea:focus {
    border-bottom-color: var(--accent-bronze);
}

.input-group input::placeholder, .input-group textarea::placeholder {
    color: rgba(244, 239, 234, 0.2);
}

.btn-submit {
    background: var(--accent-bronze);
    color: var(--bg-base);
    border: none;
    width: 100%;
    padding: 18px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.4s;
    border-radius: 50px;
    margin-top: auto;
}

.btn-submit:hover {
    background: var(--gold-core);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

.seo-section {
    padding: 40px 0 80px;
    text-align: justify;
}

.seo-content {
    background: var(--bg-surface);
    padding: 50px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.02);
}

.seo-content p {
    font-size: 0.9rem;
    color: rgba(163, 155, 149, 1);
    line-height: 1.9;
    font-weight: 300;
}

.seo-content em {
    font-style: normal;
}

.seo-content strong {
    color: var(--accent-bronze);
    font-weight: 500;
    font-family: var(--font-head);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

.footer-lounge {
    padding: 60px 0 40px;
    background: var(--bg-base);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.footer-logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: var(--logo-filter);
    transition: 0.3s;
    margin-bottom: 25px;
}

.footer-lounge p {
    color: var(--text-soft);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s var(--ease-lounge);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 4vw;
    }
    .values-section, .contact-lounge {
        padding: 90px 0;
    }
    .gallery-section {
        padding: 40px 0 80px;
    }
    .seo-section {
        padding: 30px 0 60px;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 60px;
    }
    .section-header p {
        text-align: left;
        margin-top: 15px;
        max-width: 100%;
    }
    .rooms-section {
        padding: 90px 0;
    }
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px;
    }
    .room-card:nth-child(4) {
        grid-column: auto; 
    }
    .cards-flex {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .contact-forms-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gallery-section {
        padding: 30px;
    }
    .hero-content h1 {
        font-size: clamp(3rem, 4.5vw, 4rem);
    }
    .stat-num {
        font-size: 2.2rem;
    }
    .seo-section {
        padding: 25px;
    }
    .loader-logo {
        width: 400px;
    }
    @keyframes drawLine {
        0% { width: 0; }
        100% { width: 400px; }
    }
}

@media (max-width: 768px) {
    .header-lounge {
        padding: 20px 0;
    }
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(24, 22, 21, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s;
        z-index: -1;
    }
    .nav-links.mobile-active {
        opacity: 1;
        visibility: visible;
        z-index: 1000;
    }
    .nav-links a {
        font-size: 1.3rem;
    }
    .mobile-btn {
        display: block;
        z-index: 1001;
    }
    .hero-content {
        padding-top: 80px;
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-badge {
        font-size: 0.65rem;
        margin-bottom: 20px;
        padding-bottom: 5px;
    }
    .hero-content h1 {
        font-size: clamp(2.3rem, 6vw, 3rem);
        margin-bottom: 20px;
    }
    .hero-content p {
        font-size: 0.9rem;
        font-weight: 300;
        line-height: 1.7;
        max-width: 90%;
        margin: 0 auto 30px auto;
    }
    .hero-overlay {
        background: linear-gradient(to top, rgba(24, 22, 21, 1) 0%, rgba(24, 22, 21, 0.6) 60%, rgba(24, 22, 21, 0.3) 100%);
    }
    .hero-stats {
        justify-content: center;
        text-align: center;
        display: flex;
        gap: 30px;
        margin-top: 20px;
        flex-wrap: wrap;
        width: 100%;
    }
    .scrolling-ticker {
        padding: 12px 0;
    }
    .ticker-item {
        font-size: 0.95rem;
        padding: 0 25px;
    }
    .values-section, .contact-lounge {
        padding: 70px 0;
    }
    .cards-flex {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .rooms-section {
        padding: 70px 0;
    }
    .rooms-grid {
        grid-template-columns: 1fr; 
        gap: 25px;
    }
    .room-img-wrapper {
        height: 220px;
    }
    .room-content {
        padding: 25px 20px;
    }
    .room-content h3 {
        font-size: 1.35rem;
        margin-bottom: 10px;
    }
    .gallery-section {
        padding: 30px;
    }
    .cinema-frame {
        height: 60vh;
    }
    .cinema-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 25px;
    }
    .cinema-text h3 {
        font-size: 1.8rem;
    }
    .cinema-text p {
        font-size: 0.9rem;
    }
    .form-lounge {
        padding: 30px 20px;
    }
    .contact-info-inline {
        flex-direction: column;
        gap: 30px;
        padding-top: 20px;
    }
    .contact-header h2 {
        font-size: clamp(2.5rem, 6vw, 3.2rem);
    }
    .seo-section {
        padding: 25px;
    }
    .loader-logo {
        width: 80vw;
        max-width: 300px;
    }
    @keyframes drawLine {
        0% { width: 0; }
        100% { width: 80vw; max-width: 300px; }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 6vw;
    }
    .nav-logo img {
        width: 120px;
    }
    .header-lounge.scrolled .nav-logo img {
        width: 90px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-header h2, .contact-header h2 {
        font-size: 2.2rem;
    }
    .stat-num {
        font-size: 2rem;
    }
    .value-card {
        padding: 30px 20px;
    }
    .card-icon {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .value-card h3 {
        font-size: 1.25rem;
    }
    .room-img-wrapper {
        height: 200px;
    }
    .room-content {
        padding: 20px 15px;
    }
    .room-content h3 {
        font-size: 1.25rem;
    }
    .room-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    .gallery-section {
        padding: 30px;
    }
    .cinema-frame {
        height: 50vh;
        border-radius: 12px;
    }
    .cinema-text {
        padding: 20px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    .cinema-text h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .form-lounge {
        padding: 25px 15px;
    }
    .btn-submit {
        padding: 15px;
        font-size: 0.85rem;
    }
    .seo-section {
        padding: 25px;
    }
    .footer-logo img {
        height: 50px;
        margin-bottom: 15px;
    }
    .footer-lounge p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
}

.modal-lounge {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-lounge.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(24, 22, 21, 0.95);
    backdrop-filter: blur(10px);
}

.modal-container {
    position: relative;
    background: var(--bg-surface);
    width: 100%;
    max-width: 1000px;
    height: 600px;
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-dim);
    overflow: hidden;
    z-index: 2001;
    animation: modalFadeIn 0.5s var(--ease-lounge);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-soft);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
}

.modal-img-side {
    height: 100%;
}

.modal-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-content-side {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.modal-content-side h3 {
    font-size: 2rem;
    height: 40px;
    margin-bottom: 20px;
    color: var(--accent-bronze);
    flex-shrink: 0;
}

.modal-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 200px;
    min-height: 200px;
    position: relative;
    padding: 0 60px;
    flex-shrink: 0;
}

.slider-text-container {
    width: 100%;
    text-align: left;
}

#modalDesc {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 1.8;
    transition: opacity 0.3s;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 1px solid var(--accent-dim);
    color: var(--accent-bronze);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    aspect-ratio: 1 / 1; 
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 5;
    padding: 0;
}

.slider-btn:hover {
    background: var(--accent-bronze);
    color: var(--bg-base);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    height: 20px;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: 0.3s;
}

.dot.active {
    background: var(--accent-bronze);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .modal-container { 
        height: 90vh; 
        max-height: 700px;
        overflow-y: hidden; 
    }
    
    .modal-body { 
        grid-template-columns: 1fr; 
        grid-template-rows: 250px 1fr; 
    }

    .modal-img-side { height: 250px; }

    .modal-content-side { 
        padding: 30px 20px; 
        overflow-y: auto; 
    }

    .modal-content-side h3 {
        font-size: 1.5rem;
        height: auto;
        text-align: center;
        margin-bottom: 15px;
    }

    .modal-slider {
        height: 180px;
        min-height: 180px;
        padding: 0 50px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        aspect-ratio: 1 / 1; 
    }

    .seo-section, 
    .seo-content, 
    .seo-content p {
        text-align: left !important;
    }
}