:root {
    /* Color Palette */
    --color-black: #0a0a0a;
    --color-black-soft: #1a1a1a;
    --color-white: #ffffff;
    --color-white-soft: #f5f5f5;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C565;
    --color-gold-dark: #AA8C2C;

    /* Semantic Colors */
    --background: var(--color-black);
    --foreground: var(--color-white);
    --accent: var(--color-gold);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;

    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
}

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

html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    color: var(--foreground);
    background: var(--background);
    font-family: var(--font-inter), sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-playfair), serif;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

/* Watermark */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background-image: url('assets/images/logo_full.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    /* Very subtle watermark */
    z-index: -1;
    pointer-events: none;
    filter: invert(1);
    /* White logo on black background */
    mix-blend-mode: screen;
    /* Blend background to remove box */
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.75rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-family: var(--font-inter), sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--accent);
    color: var(--color-black);
}

.btn-primary {
    background: var(--accent);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-light);
}

.text-gold {
    color: var(--color-gold);
}

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

.section {
    padding: var(--spacing-xl) 0;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
        /* Reduced from 8rem */
    }

    .container {
        padding: 0 1.5rem;
    }
}

/* --- Header --- */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    z-index: 1002;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Space between text and logo */
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    text-decoration: none;
    /* Ensure no underline */
}

.logo-img {
    height: 85px;
    /* Increased size */
    /* Slightly smaller to fit with text */
    width: auto;
    filter: invert(1);
    /* Invert colors: Black->White, White->Black */
    mix-blend-mode: screen;
    /* Make black background transparent */
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-phones {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
    /* Add margin left instead of right */
}

.header-phone-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-phone-item i {
    color: var(--color-gold);
}

.nav {
    display: flex;
    gap: 4rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-gold);
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1001;
        /* Behind logo/btn but above content */
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions {
        display: none;
        /* Hide Access Club button on mobile if desired, or move it into menu. For now hiding to simplify header */
    }
}

/* --- Footer --- */
.footer {
    background-color: var(--color-black-soft);
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-playfair);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-big-logo {
    display: block;
    margin-top: 1.5rem;
    height: 100px;
    /* Big size */
    width: auto;
    filter: invert(1);
    /* White logo */
    mix-blend-mode: screen;
    /* Blend background */
    opacity: 0.9;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* --- Hero --- */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
    background-image: url('assets/images/hero_background.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.4));
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 900px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    border: 1px solid var(--color-white);
    color: var(--color-white);
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
}

/* --- Hero Lead Form --- */
.hero-form-container {
    background: rgba(0, 0, 0, 0.4);
    /* More transparent */
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    max-width: 500px;
    /* Slightly wider */
    margin-top: 2rem;
}

.hero-form-title {
    font-size: 1.25rem;
    /* Smaller title */
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-playfair);
}

.hero-form-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.hero-form-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.hero-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: var(--color-white);
    font-family: var(--font-inter);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    /* Add margin bottom directly to input or wrap in div */
}

/* If wrapping inputs in divs is not preferred, spacing could be done via margin on input if they are block */

.hero-input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.15);
}

.btn-hero-submit {
    width: 100%;
    background: var(--color-gold);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-hero-submit:hover {
    background: var(--color-gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .header-phones {
        display: none;
        /* Hide phones on mobile header to save space */
    }

    .hero-form-container {
        width: 100%;
        padding: 1rem;
    }

    .hero-form-row {
        flex-direction: column;
    }
}

/* --- About Section (Home) --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border: 1px solid var(--color-gold-dark);
    position: relative;
}

.image-placeholder::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

/* --- Operations Section --- */
.operations-section {
    background: var(--color-black-soft);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.view-all {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.operation-card {
    background: var(--color-black-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.operation-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-dark);
}

.card-image {
    height: 200px;
    background: #2a2a2a;
    position: relative;
    flex-shrink: 0;
}

.card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-type {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    color: var(--color-white);
    min-height: 3rem;
    /* Ensure 2 lines space */
}

.card-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.card-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.metric-value {
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.2;
}

.btn-card {
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    color: var(--color-white);
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-card:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* --- CTA --- */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Page Headers --- */
.page-header {
    background-color: var(--color-black-soft);
    padding: 10rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 600px;
}

/* --- About Page Specifics --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.bg-darker {
    background-color: #050505;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    max-width: 300px;
}

.member-image {
    width: 200px;
    height: 200px;
    background: #333;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-gold);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.member-role {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    padding: 2rem;
    background: var(--color-black-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.value-title {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.cta-box {
    margin-top: 4rem;
    padding: 3rem;
    border: 1px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.cta-box p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-playfair);
}

/* --- Gallery --- */
.op-gallery {
    margin: 3rem 0;
}

.gallery-title {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 200px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--color-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .about-grid,
    .content-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        flex-direction: column;
    }

    .image-placeholder {
        height: 300px;
    }
}

/* --- Services Section --- */
.services-section {
    background-color: var(--color-black);
}

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

.service-card {
    background: var(--color-black-soft);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* --- Why Rentprivé Section --- */
.why-section {
    background-color: #0f0f0f;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    /* Match height of columns */
}

.why-content {
    z-index: 2;
    /* Removed padding-bottom */
}

.why-image {
    display: flex;
    justify-content: center;
    /* Removed negative margins */
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.why-corner-logo {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 250px;
    height: 150px;
    background-image: url('assets/images/logo_full.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    filter: invert(1);
    /* White logo */
    mix-blend-mode: screen;
    /* Blend background */
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

.image-placeholder-logo {
    width: 100%;
    height: 400px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-image-real {
    width: 100%;
    height: 100%;
    /* Fill the column height so it matches text */
    min-height: 500px;
    /* Ensure minimum height */
    background-size: cover;
    background-position: center;
    border: 1px solid var(--color-gold-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.why-image-real::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
}

.big-logo {
    font-family: var(--font-playfair);
    font-size: 10rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.1);
    letter-spacing: -5px;
}

/* --- Team Section (Home) --- */
.team-section {
    background-color: var(--color-black);
}

.team-grid-home {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.team-member-home {
    max-width: 300px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    background-color: #222;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-gold);
    position: relative;
}

.member-photo::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.member-desc {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.mb-lg {
    margin-bottom: 4rem;
}

.mb-md {
    margin-bottom: 2rem;
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.info-item h3 {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: #000000;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

input,
textarea {
    width: 100%;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-bottom-color: var(--color-gold);
}

.btn-gold {
    background-color: var(--color-gold);
    color: #000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 1rem;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-block {
    width: 100%;
}

.success-message {
    text-align: center;
    padding: 2rem;
}

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-body {
    padding: 0;
}

.modal-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.5rem;
    height: 400px;
}

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

.modal-side-imgs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.modal-info {
    padding: 2rem;
}

.modal-title {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-playfair);
}

.modal-location {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.modal-metric-item h4 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.modal-metric-item p {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-white);
}

.modal-description h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.modal-description p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modal-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .modal-side-imgs {
        display: none;
    }

    .modal-metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
/* --- Consolidated Mobile Fixes --- */
@media (max-width: 768px) {
    /* Hero Adjustments */
    .hero-title {
        font-size: 2.2rem; /* Slightly smaller to ensure fit */
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    /* About Section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        height: 250px;
        order: -1; /* Image first */
    }

    /* Why Rentprivé Section */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-features {
        grid-template-columns: 1fr; /* Stack features vertically */
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    /* Hide the text content border left style or adjust it */
    .why-content div[style*="border-left"] {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 2px solid var(--color-gold);
        padding-top: 1rem;
    }
    
    .why-corner-logo {
        display: none; /* Hide decorative background logo */
    }

    /* Operations Section */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    /* Footer Fixes */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}
