/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* ========================================
   COLOR VARIABLES
   ======================================== */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --nav-bg: rgba(0, 0, 0, 0.95);
    --gold-border: #D4AF37;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --overlay-dark: rgba(0, 0, 0, 0.4);
}

/* ========================================
   NAVIGATION BAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--nav-bg);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
}

.logo-grounds {
    color: var(--primary-yellow);
    border: 2px solid var(--gold-border);
    padding: 8px 12px;
    font-weight: 400;
}

.logo-and {
    color: var(--text-white);
    font-weight: 300;
}

.logo-spaces {
    color: var(--text-white);
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-yellow);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-request {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold-border);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-request:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border-color: var(--primary-yellow);
}

.currency-dropdown {
    position: relative;
}

.btn-currency {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold-border);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-currency:hover {
    background-color: rgba(244, 208, 63, 0.1);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.btn-currency:hover .dropdown-icon {
    transform: rotate(180deg);
}

.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--primary-yellow);
}

/* Partner logo images */
.partner-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;  /* adjust height as needed */
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 10px;
}

.partner-logo:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    margin-top: 150px;
}

.hero-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--primary-yellow);
    margin-bottom: 50px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border-color: var(--primary-yellow);
}

.hero-btn-primary:hover {
    background-color: #f5d95a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 208, 63, 0.3);
}

.hero-btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.hero-btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Search Container */
.search-container {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    border: none;
    padding: 20px 45px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #f5d95a;
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    background-color: #f5f5f5;
    padding: 35px 10px;
    overflow: hidden;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
}

.partners-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 200px;
}

.logo-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

.logo-dubai-south {
    background-color: #00b8d4;
    color: #ffffff;
}

.dubai-south-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}



/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-section {
    background-color: var(--dark-bg);
    padding: 100px 20px;
    color: var(--text-white);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-title {
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-yellow);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.title-underline {
    width: 120px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin-bottom: 40px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    text-align: justify;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(244, 208, 63, 0.2);
    border: 3px solid var(--gold-border);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* About section — mobile: show image first, then content */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 16px;
    }

    /* Switch the grid to a stacked layout and ensure image appears first */
    .about-container {
        display: flex;
        flex-direction: column-reverse; /* DOM: content then image -> this shows image first */
        gap: 24px;
        align-items: stretch;
    }

    .about-content,
    .about-image {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    /* Ensure the image scales nicely and keeps rounded corners */
    .about-image {
        order: -1; /* explicit: bring image before content */
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
        object-fit: cover;
    }

    .about-content {
        padding-top: 8px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .about-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-gray);
        margin-bottom: 18px;
        text-align: left;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* ========================================
   PROPERTY SECTION V2 (External Controls)
   ======================================== */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
}

.property-section {
    position: relative;
    padding: 80px 0;
    color: var(--text-white);
    /* Background Image Styles - Same as hero section */
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80' );
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.property-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 70% opacity dark overlay */
    z-index: -1;
}


.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-yellow);
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5px;
}

.tab-btn {
    background: transparent;
    color: var(--text-white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    font-weight: 600;
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.property-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px; /* Space for scrollbar */
}

/* Hide scrollbar for a cleaner look */
.property-slider::-webkit-scrollbar {
    display: none;
}

.property-slider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Property Card */
.property-card {
    flex: 0 0 auto;
    width: 300px; /* Adjust as needed for desired card width */
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-yellow); /* Yellow border on image bottom */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.share-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.share-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.card-content {
    padding: 15px;
    background-color: #fff; /* White background for content area */
    color: #333; /* Dark text for contrast */
}

.card-type {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.card-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-item svg {
    color: var(--primary-yellow);
}

.card-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.btn-details {
    background-color: var(--dark-bg);
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

/* Slider Controls (External) */
.slider-controls {
    display: flex;
    justify-content: flex-end; /* Align to the right */
    gap: 20px;
    margin-top: 40px;
    padding-right: 40px; /* Match section padding */
}

.slider-nav {
    background-color: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

/* ============================================
   CONTAINER & BACKGROUND
   ============================================ */

.container {
    width: 100%;
    min-height: 100vh;
}

.background-section {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&h=900&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.header-section {
    margin-bottom: 40px;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #FBBF24;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-underline {
    width: 120px;
    height: 4px;
    background-color: #FBBF24;
    border-radius: 2px;
}

/* ============================================
   TABS SECTION
   ============================================ */

.tabs-section {
    margin-bottom: 40px;
}

.tabs-container {
    display: inline-flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    gap: 8px;
}

.tab-button {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: #4b5563;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #f0f0f0;
}

.tab-button.active {
    background: #FBBF24;
    color: #000;
}

/* ============================================
   FILTERS GRID
   ============================================ */

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.filter-item {
    width: 100%;
}

.filter-input-wrapper {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-input-wrapper:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.filter-icon {
    padding: 0 16px;
    font-size: 1.3rem;
    color: #FBBF24;
    flex-shrink: 0;
}

.filter-input-wrapper select,
.filter-input-wrapper input {
    flex: 1;
    padding: 14px 12px;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #4b5563;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.filter-input-wrapper input::placeholder {
    color: #a0aec0;
}

.dropdown-arrow {
    padding: 0 12px;
    color: #cbd5e0;
    pointer-events: none;
    font-size: 0.8rem;
}

/* ============================================
   UPLOAD SECTION
   ============================================ */

.upload-section {
    margin-bottom: 40px;
}

.upload-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.upload-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.drag-drop-area {
    background: white;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed transparent;
}

.drag-drop-area:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.drag-drop-area.drag-over {
    background: #FFFAED;
    border-color: #FBBF24;
}

.drag-drop-text {
    font-size: 1.1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 20px;
}

.choose-files-btn {
    background: #FBBF24;
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.choose-files-btn:hover {
    background: #F59E0B;
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.choose-files-btn:active {
    transform: translateY(0);
}

/* ============================================
   IMAGES GALLERY
   ============================================ */

.images-gallery {
    margin-bottom: 40px;
}

.gallery-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.image-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #EF4444;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.image-item:hover .image-remove-btn {
    opacity: 1;
}

.image-remove-btn:hover {
    background: #DC2626;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* ============================================
   DESCRIPTION SECTION
   ============================================ */

.description-section {
    margin-bottom: 40px;
}

.description-section textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
    resize: vertical;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.description-section textarea:focus {
    outline: none;
    border-color: #FBBF24;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.description-section textarea::placeholder {
    color: #a0aec0;
}

/* ============================================
   SUBMIT SECTION
   ============================================ */

.submit-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.submit-btn {
    background: #FBBF24;
    color: #000;
    border: none;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.submit-btn:hover {
    background: #F59E0B;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

.success-content h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 24px;
}

.success-close-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #059669;
}

/* ============================================
   ERROR MESSAGE
   ============================================ */

.error-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.error-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

.error-content h3 {
    color: #EF4444;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-content p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 24px;
}

.error-close-btn {
    background: #EF4444;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-close-btn:hover {
    background: #DC2626;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .main-title {
        font-size: 2.5rem;
    }

    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 30px 15px;
    }

    .main-title {
        font-size: 2rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .drag-drop-area {
        padding: 40px 20px;
    }

    .images-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .tabs-container {
        flex-wrap: wrap;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .title-underline {
        width: 80px;
    }

    .upload-title {
        font-size: 1.3rem;
    }

    .filters-grid {
        gap: 12px;
    }

    .filter-input-wrapper {
        border-radius: 8px;
    }

    .drag-drop-area {
        padding: 30px 15px;
        border-radius: 16px;
    }

    .images-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .submit-btn {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .property-section {
        padding: 60px 0;
    }

    .section-container {
        padding: 0 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .filter-tabs {
        width: 100%;
        justify-content: space-between;
    }

    .tab-btn {
        flex: 1;
        padding: 8px 15px;
        font-size: 14px;
    }

    .property-slider {
        gap: 15px;
    }

    .property-card {
        width: 280px;
    }

    .slider-controls {
        justify-content: center;
        padding-right: 0;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .property-card {
        width: 90vw; /* Take up most of the viewport width */
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 16px;
    }

    .search-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-input {
        padding: 18px 25px;
    }

    .search-btn {
        padding: 18px 25px;
        border-radius: 0 0 20px 20px;
    }

    .btn-request {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-currency {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .logo-grounds {
        padding: 6px 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }

    .nav-actions {
        gap: 10px;
    }

    .btn-request span {
        display: none;
    }

    .btn-request::after {
        content: 'Visit';
    }
}

/* ============================================
   PROPERTY SLIDER - COMPLETE STYLING
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
}

/* ============================================
   SLIDER CONTAINER & BACKGROUND
   ============================================ */

.slider-container {
    width: 100%;
    min-height: 100vh;
}

.slider-background {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://tripventura.com/blogs/dubai/top-10-must-see-landmarks-on-a-dubai-city-tour') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slider-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.slider-header {
    margin-bottom: 50px;
    text-align: left;
}

.slider-main-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #FBBF24;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-title-underline {
    width: 120px;
    height: 4px;
    background-color: #FBBF24;
    border-radius: 2px;
    margin-bottom: 20px;
}

.slider-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.slider-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    line-height: 1.6;
}

/* ============================================
   SLIDER WRAPPER & NAVIGATION
   ============================================ */

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    margin-bottom: 40px;
}

.slider-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #FBBF24;
    background: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: #FBBF24;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SLIDER TRACK CONTAINER
   ============================================ */

.slider-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slider-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 0;
}

/* ============================================
   SLIDER CARDS
   ============================================ */

.slider-card {
    background: rgba(30, 30, 30, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.slider-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slider-card:hover .slider-image {
    transform: scale(1.05);
}

.slider-image-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: #FBBF24;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #FBBF24;
}

.slider-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.slider-card-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
    line-height: 1.5;
    flex: 1;
}

.slider-view-btn {
    background: transparent;
    color: #FBBF24;
    border: 2px solid #FBBF24;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.slider-view-btn:hover {
    background: #FBBF24;
    color: #000;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.slider-view-btn:active {
    transform: scale(0.95);
}

/* ============================================
   SLIDER INDICATORS
   ============================================ */

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    border: 2px solid #FBBF24;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background: #FBBF24;
    width: 32px;
    border-radius: 6px;
}

.slider-indicator:hover {
    background: rgba(251, 191, 36, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .slider-slide {
        flex: 0 0 calc(33.333% - 14px);
    }

    .slider-main-title {
        font-size: 2.8rem;
    }

    .slider-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .slider-content-wrapper {
        padding: 30px 15px;
    }

    .slider-header {
        margin-bottom: 40px;
    }

    .slider-main-title {
        font-size: 2rem;
    }

    .slider-subtitle {
        font-size: 1.1rem;
    }

    .slider-description {
        font-size: 0.9rem;
    }

    .slider-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .slider-image-wrapper {
        height: 200px;
    }

    .slider-card-title {
        font-size: 1rem;
    }

    .slider-card-description {
        font-size: 0.8rem;
    }

    .slider-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .slider-wrapper {
        gap: 12px;
    }

    .slider-track {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .slider-content-wrapper {
        padding: 20px 10px;
    }

    .slider-main-title {
        font-size: 1.5rem;
    }

    .slider-subtitle {
        font-size: 1rem;
    }

    .slider-description {
        font-size: 0.85rem;
    }

    .slider-slide {
        flex: 0 0 100%;
    }

    .slider-image-wrapper {
        height: 180px;
    }

    .slider-card-title {
        font-size: 0.95rem;
    }

    .slider-card-description {
        font-size: 0.75rem;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-card-content {
        padding: 15px;
    }

    .slider-title-underline {
        width: 80px;
    }

    .slider-header {
        margin-bottom: 30px;
    }

    .slider-wrapper {
        gap: 8px;
    }

    .slider-track {
        gap: 12px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-card {
    animation: slideIn 0.5s ease forwards;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.slider-nav-btn:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

.slider-view-btn:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   GALLERY SLIDER - COMPLETE STYLING
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

/* ============================================
   GALLERY CONTAINER
   ============================================ */

.gallery-container {
    width: 100%;
    min-height: 100vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* ============================================
   GALLERY HEADER
   ============================================ */

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    font-style: italic;
}

/* ============================================
   GALLERY WRAPPER & NAVIGATION
   ============================================ */

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-nav-btn {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #FBBF24;
    background: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav-btn:hover {
    background: #FBBF24;
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.5);
}

.gallery-nav-btn:active {
    transform: scale(0.95);
}

.gallery-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gallery-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ============================================
   GALLERY TRACK CONTAINER
   ============================================ */

.gallery-track-container {
    flex: 1;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
}

.gallery-track {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.gallery-slide {
    flex: 0 0 100%;
    min-width: 0;
    height: 500px;
    overflow: hidden;
    background: #000000;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.02);
}

/* ============================================
   GALLERY INDICATORS
   ============================================ */

.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    width: 100%;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.3);
    border: 2px solid #FBBF24;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator:hover {
    background: rgba(251, 191, 36, 0.6);
    transform: scale(1.2);
}

.gallery-indicator.active {
    background: #FBBF24;
    width: 32px;
    border-radius: 6px;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .gallery-title {
        font-size: 2.8rem;
    }

    .gallery-wrapper {
        gap: 20px;
    }

    .gallery-slide {
        height: 400px;
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        padding: 30px 15px;
    }

    .gallery-header {
        margin-bottom: 40px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-wrapper {
        gap: 15px;
    }

    .gallery-slide {
        height: 300px;
    }

    .gallery-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .gallery-indicators {
        margin-top: 30px;
        gap: 8px;
    }

    .gallery-indicator {
        width: 10px;
        height: 10px;
    }

    .gallery-indicator.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 20px 10px;
    }

    .gallery-header {
        margin-bottom: 30px;
    }

    .gallery-title {
        font-size: 1.5rem;
    }

    .gallery-wrapper {
        gap: 10px;
    }

    .gallery-slide {
        height: 250px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-indicators {
        margin-top: 25px;
        gap: 6px;
    }

    .gallery-indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-indicator.active {
        width: 24px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-image {
    animation: fadeIn 0.5s ease;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.gallery-nav-btn:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

.gallery-indicator:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #FBBF24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #F59E0B;
}

/* ============================================
   CONTACT FORM - COMPLETE STYLING
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

/* ============================================
   CONTACT CONTAINER & BACKGROUND
   ============================================ */

.contact-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-background {
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&h=900&fit=crop') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 40px 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================================
   LEFT SECTION - HEADING
   ============================================ */

.contact-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-main-heading {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RIGHT SECTION - FORM
   ============================================ */

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-wrapper {
    background: rgba(20, 20, 30, 0.95);
    border: 2px solid #FBBF24;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ============================================
   FORM INPUTS
   ============================================ */

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid #FBBF24;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #F59E0B;
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.form-submit-btn {
    padding: 14px 32px;
    background: #FBBF24;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.form-submit-btn:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ============================================
   FOOTER
   ============================================ */

.contact-footer {
    background: #000000;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FBBF24;
    border: 2px solid #FBBF24;
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FBBF24;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #FBBF24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBBF24;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FBBF24;
    color: #000;
    transform: scale(1.1);
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

.success-content h3 {
    color: #10B981;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.success-content p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 24px;
}

.success-close-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-close-btn:hover {
    background: #059669;
}

/* ============================================
   ERROR MESSAGE
   ============================================ */

.error-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.error-content {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    animation: slideUp 0.3s ease;
}

.error-content h3 {
    color: #EF4444;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-content p {
    color: #4b5563;
    font-size: 1rem;
    margin-bottom: 24px;
}

.error-close-btn {
    background: #EF4444;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-close-btn:hover {
    background: #DC2626;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-main-heading {
        font-size: 2.5rem;
        text-align: center;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-background {
        min-height: 500px;
    }

    .contact-content {
        padding: 30px 15px;
        gap: 30px;
    }

    .contact-main-heading {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .contact-form-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-footer {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .footer-left {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-background {
        min-height: 400px;
    }

    .contact-content {
        padding: 20px 10px;
        gap: 20px;
    }

    .contact-main-heading {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 20px;
        border-radius: 12px;
    }

    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .footer-logo {
        font-size: 0.9rem;
        padding: 4px 10px;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-link {
        font-size: 0.8rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.form-input:focus,
.form-textarea:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

.form-submit-btn:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

.footer-link:focus,
.social-icon:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   LOCATIONS CONTAINER
   ============================================ */

.locations-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.locations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FBBF24;
}

.view-more-link {
    font-size: 1rem;
    color: #666666;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.view-more-link:hover {
    color: #FBBF24;
    border-color: #FBBF24;
    background: #fffaf0;
}

/* ============================================
   LOCATIONS GRID
   ============================================ */

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.location-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.location-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.location-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.location-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-card:hover .location-image {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover .location-overlay {
    opacity: 1;
}

.location-content {
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    background: #ffffff;
}

.location-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* ============================================
   FEATURED LOCATION
   ============================================ */

.location-featured {
    grid-column: span 2;
}

.location-featured .location-image-wrapper {
    height: 350px;
}

.location-featured .location-name {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.location-featured .location-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 20px 20px;
}

.location-featured .location-image-wrapper {
    position: relative;
}

.location-featured .location-card-link {
    position: relative;
}

/* ============================================
   LOCATIONS FOOTER
   ============================================ */

.locations-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-more-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #FBBF24;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.view-more-btn:hover {
    background: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
}

.view-more-btn:active {
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .locations-container {
        padding: 50px 30px;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .location-featured {
        grid-column: span 1;
    }

    .location-featured .location-image-wrapper {
        height: 250px;
    }

    .location-featured .location-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .locations-container {
        padding: 40px 20px;
    }

    .locations-header {
        margin-bottom: 40px;
    }

    .locations-title {
        font-size: 2rem;
    }

    .view-more-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .location-featured {
        grid-column: span 1;
    }

    .location-image-wrapper {
        height: 200px;
    }

    .location-featured .location-image-wrapper {
        height: 200px;
    }

    .location-name {
        font-size: 1.1rem;
    }

    .location-featured .location-name {
        font-size: 1.3rem;
    }

    .location-content {
        padding: 15px;
    }

    .view-more-btn {
        padding: 12px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .locations-container {
        padding: 30px 15px;
    }

    .locations-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
        gap: 15px;
    }

    .locations-title {
        font-size: 1.5rem;
    }

    .view-more-link {
        font-size: 0.85rem;
        padding: 8px 12px;
        width: 100%;
        text-align: center;
    }

    .locations-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .location-featured {
        grid-column: span 1;
    }

    .location-image-wrapper {
        height: 180px;
    }

    .location-featured .location-image-wrapper {
        height: 180px;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-featured .location-name {
        font-size: 1.2rem;
    }

    .location-content {
        padding: 12px;
    }

    .view-more-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-card {
    animation: fadeIn 0.5s ease forwards;
}

.location-card:nth-child(1) { animation-delay: 0.1s; }
.location-card:nth-child(2) { animation-delay: 0.2s; }
.location-card:nth-child(3) { animation-delay: 0.3s; }
.location-card:nth-child(4) { animation-delay: 0.4s; }
.location-card:nth-child(5) { animation-delay: 0.5s; }
.location-card:nth-child(6) { animation-delay: 0.6s; }
.location-card:nth-child(7) { animation-delay: 0.7s; }
.location-card:nth-child(8) { animation-delay: 0.8s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.location-card-link:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

.view-more-link:focus,
.view-more-btn:focus {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* ============================================
   SMOOTH SCROLLING
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

/* General Styles - Using previous design's font and colors */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --light-bg: #f8f8f8; /* For the white section in the screenshot */
    --text-dark: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--dark-bg); /* Main background is black as requested */
    color: var(--text-white);
}

/* ========================================
   ABOUT HERO SECTION
   ======================================== */
.about-hero {
    position: relative;
    height: 70vh; /* Adjust height as needed */
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1920&q=80'); /* Placeholder image for the office background */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 0 40px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
}

.hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 50px;
}

.breadcrumb-link {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.breadcrumb-link:hover {
    opacity: 1;
}

.breadcrumb-current {
    font-weight: 600;
}

/* Main Content Layout */
.hero-main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-left {
    flex: 1;
    max-width: 50%;
}

.hero-right {
    flex: 1;
    max-width: 50%;
    text-align: right;
}

.hero-title {
    font-size: 35px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.1;
}

.logo-placeholder {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.logo-springfield {
    color: #FBBF24; /* Placeholder blue from the image */
}

.logo-properties {
    color: var(--text-white);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.btn-team {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-team:hover {
    background-color: var(--text-white);
    color: var(--dark-bg);
}

.btn-consultation {
    background-color: var(--text-white);
    color: var(--dark-bg);
    border: 1px solid var(--text-white);
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* ========================================
   ABOUT CONTENT SECTION
   ======================================== */
.about-content-section {
    background-color: var(--light-bg); /* White background for this section as per screenshot */
    padding: 100px 40px;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.content-image {
    flex: 0 0 50%;
    max-width: 50%;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.content-text {
    flex: 0 0 50%;
    max-width: 50%;
    color: var(--text-dark);
}

.content-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.content-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-right: 50px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .about-hero {
        height: 50vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-main-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-left, .hero-right {
        max-width: 100%;
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .content-container {
        flex-direction: column;
        gap: 40px;
    }

    .content-image, .content-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 0 20px;
    }

    .about-content-section {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 36px;
        
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-team, .btn-consultation {
        padding: 12px 20px;
        font-size: 14px;
    }

    .content-title {
        font-size: 28px;
    }

    .content-paragraph {
        font-size: 15px;
    }
}


mission_vision_css.css
/* ========================================
   MISSION, VISION, VALUES SECTION STYLES
   ======================================== */

/* Color Variables from previous designs */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --light-bg: #f8f8f8;
    --text-dark: #333333;
}

.mvv-section {
    background-color: var(--dark-bg); /* Black background as requested */
    padding: 80px 0;
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mvv-row {
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.mvv-title-col {
    flex: 0 0 30%; /* Title column width */
    max-width: 30%;
}

.mvv-text-col {
    flex: 0 0 70%; /* Text column width */
    max-width: 70%;
}

.mvv-title {
    font-size: 32px;
    font-weight: 700;
    /* Adapting the dark blue/black text from the screenshot to white/yellow for black background */
    color: var(--primary-yellow); 
}

.mvv-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
}

/* Alternating Layout for Vision Row */
.vision-row .mvv-title-col {
    order: 2; /* Move title to the right */
    text-align: right;
}

.vision-row .mvv-text-col {
    order: 1; /* Move text to the left */
    padding-right: 50px;
}

.mission-row .mvv-text-col,
.values-row .mvv-text-col {
    padding-left: 50px;
}

/* Divider Style */
.mvv-divider {
    border: 1px solid #FBBF24;
    border-top: 1px solid #FBBF24; /* Light gray line for black background */
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mvv-title-col,
    .mvv-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 !important; /* Remove padding for full width on mobile */
    }

    .mvv-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0;
    }

    .mvv-title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .vision-row .mvv-title-col {
        order: 1;
        text-align: left;
    }

    .vision-row .mvv-text-col {
        order: 2;
    }
}

@media (max-width: 576px) {
    .mvv-container {
        padding: 0 20px;
    }

    .mvv-title {
        font-size: 24px;
    }

    .mvv-text {
        font-size: 15px;
    }
}

/* ========================================
   FAQ ACCORDION STYLES
   ======================================== */

/* Color Variables from previous designs */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --light-bg: #f8f8f8;
    --text-dark: #333333;
    --accordion-bg-open: #222222; /* Dark gray for open item background */
    --accordion-bg-closed: #111111; /* Slightly lighter dark gray for closed item background */
    --accordion-border: rgba(255, 255, 255, 0.1); /* Subtle white border */
}

/* FAQ: use same hero background + overlay */
.faq-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow: hidden;
}

/* subtle dark overlay for legibility */
.faq-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    z-index: 0;
}

/* keep content above overlay */
.faq-container { position: relative; z-index: 2; }

/* reduce max-width and padding for FAQ area */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* make accordion items slightly translucent so background peeks through */
.accordion-item {
    border-bottom: 1px solid var(--accordion-border);
    background-color: rgba(17,17,17,0.72); /* replaced var value with semi-opaque */
    transition: background-color 0.3s ease;
}

/* open state: slightly lighter */
.accordion-item.open {
    background-color: rgba(34,34,34,0.8);
}

/* ensure headers and content sit above overlay */
.accordion-header, .accordion-content { position: relative; z-index: 3; }

/* small tweak for toggle icon rotation when open */
.accordion-item.open .toggle-icon {
    transform: rotate(90deg);
}

/* keep earlier accordion content animation but prefer JS-controlled maxHeight */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, padding 0.32s ease;
    padding: 0 25px;
}
.accordion-item.open .accordion-content {
    padding: 0 25px 20px;
}

/* Responsive adjustments (keep as before) */
@media (max-width: 768px) {
    .faq-container { padding: 0 18px; }
    .faq-title { font-size: 30px; }
    .accordion-header { font-size: 16px; }
}

.faq-section {
    background-color: var(--dark-bg); /* Black background as requested */
    padding: 80px 0;
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    margin-bottom: 40px;
    text-align: left;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-yellow); /* Using yellow for the main title */
    margin-bottom: 10px;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-gray);
}

/* Accordion Styles */
.accordion-wrapper {
    border-top: 1px solid var(--accordion-border);
}

.accordion-item {
    border-bottom: 1px solid var(--accordion-border);
    background-color: var(--accordion-bg-closed);
    transition: background-color 0.3s ease;
}

.accordion-item.open {
    background-color: var(--accordion-bg-open);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--primary-yellow);
}

.accordion-item.open .accordion-header {
    color: var(--primary-yellow);
}

.question-text {
    flex-grow: 1;
}

.toggle-icon {
    font-size: 24px;
    line-height: 1;
    width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 25px;
}

.accordion-item.open .accordion-content {
    max-height: 500px; /* Large enough value to accommodate content */
    padding: 0 25px 20px 25px;
}

.accordion-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 20px;
    }

    .faq-title {
        font-size: 30px;
    }

    .accordion-header {
        font-size: 16px;
        padding: 15px 20px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.open .accordion-content {
        padding: 0 20px 15px 20px;
    }

    .accordion-content p {
        font-size: 15px;
    }
}

/* ========================================
   PROJECT CARD STYLES
   ======================================== */

/* Color Variables from previous designs */
:root {
    --primary-yellow: #F4D03F;
    --dark-bg: #000000;
    --text-white: #ffffff;
    --text-gray: #cccccc;
    --light-bg: #f8f8f8;
    --card-bg: #ffffff; /* Card background is white in the screenshot */
    --card-text: #333333;
    --border-color: #e0e0e0;
}

.project-card-container {
    background-color: none; /* Black background for the section */
    padding: 50px 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.project-card {
    width: 350px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Image Slider Area */
.card-image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slider-images {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
}

.slider-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.handover-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

/* Card Body Content */
.card-body {
    padding: 20px;
    color: var(--card-text);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.project-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.project-developer {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.developer-logo img {
    max-width: 80px;
    height: auto;
    display: block;
}

.card-price {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--card-text);
}

.card-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 15px 0;
}

.card-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.icon-placeholder {
    margin-right: 5px;
    font-size: 16px;
    color: var(--primary-yellow); /* Using yellow for the icons */
}

/* Contact Actions */
.card-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    background-color: var(--light-bg);
    color: var(--card-text);
    border: 1px solid var(--border-color);
    padding: 10px 0;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
}

.action-btn:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--dark-bg);
}

.action-btn span {
    font-size: 20px; /* Adjust size of emoji/icon placeholder */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-card-container {
        padding: 30px 20px;
        gap: 20px;
    }

    .project-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Single-column variant for content-container */
.content-container.single-column {
    display: block;
    max-width: 900px;      /* control width of text block */
    margin: 0 auto;
    padding: 0 20px;       /* inner spacing on narrow screens */
    gap: 0;
}

.content-container.single-column .content-title {
    margin-bottom: 20px;
    font-size: 32px;
}

.content-container.single-column .content-paragraph {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-dark);
}

/* Keep responsiveness */
@media (max-width: 1024px) {
    .content-container.single-column { max-width: 720px; padding: 0 18px; }
}

@media (max-width: 520px) {
    .about-content-section { padding: 40px 12px; }
    .content-container.single-column { max-width: 100%; padding: 0 12px; }
    .content-container.single-column .content-title { font-size: 24px; }
    .content-container.single-column .content-paragraph { font-size: 14px; }
}

/* Project card: use background-image for the visual area */
.project-card {
    flex: 0 0 auto;
    width: 320px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
    display: inline-block;
    vertical-align: top;
    margin-right: 18px;
}

.project-card:hover { transform: translateY(-6px); }

.project-card .card-image-slider {
    position: relative;
    height: 200px;
    overflow: hidden;
}

/* background image container */
.project-card .card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 3px solid var(--primary-yellow);
}

/* handover tag inside image */
.project-card .handover-tag {
    position: absolute;
    left: 10px;
    top: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 13px;
}

/* slider arrows over image */
.project-card .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.48);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.project-card .slider-arrow.prev { left: 10px; }
.project-card .slider-arrow.next { right: 10px; }

/* card body unchanged but ensure spacing */
.project-card .card-body {
    padding: 14px;
    background: #fff;
    color: #222;
}

/* layout container */
.project-card-container {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    overflow-x: auto;
    padding: 16px 0;
    scroll-snap-type: x mandatory;
}

.section-header .section-title {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 12px;
}

/* responsive */
@media (max-width: 900px) {
    .project-card { width: 280px; }
    .project-card .card-image-slider { height: 160px; }
}

@media (max-width: 560px) {
    .project-card { width: 220px; }
    .project-card .card-image-slider { height: 140px; }
}
/* Responsive nav: hide hamburger on desktop; show mobile overlay for nav/menu/actions */

/* Desktop and large screens: keep original layout, hide hamburger */
@media (min-width: 993px) {
  .hamburger-menu { display: none; }
  .nav-menu { display: flex; }
  .nav-actions { display: flex; }
}

/* Mobile / Tablet: show hamburger, hide inline nav/actions, show overlay menu when opened */
@media (max-width: 992px) {
  .hamburger-menu { display: flex; }

  /* hide normal nav/menu initially */
  .nav-menu { display: none; }

  /* hide header actions in normal header - we'll move it into the mobile menu with JS */
  .nav-actions { display: none; }

  /* when menu is opened (JS adds class 'mobile-active'), show overlay */
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    position: fixed;
    top: 70px; /* adjust if your navbar height is different */
    left: 0;
    right: 0;
    background: var(--nav-bg);
    z-index: 1200;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    align-items: flex-start;
  }

  /* menu items become stacked links */
  .nav-menu.mobile-active > li {
    width: 100%;
    list-style: none;
    margin: 0;
  }

  .nav-menu.mobile-active > li > a {
    display: block;
    padding: 12px 6px;
    width: 100%;
  }

  /* When .nav-actions is moved inside nav-menu, make it full width and vertical */
  .nav-menu .nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .nav-menu .nav-actions .btn-request,
  .nav-menu .nav-actions .btn-currency {
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
  }

  .nav-menu .nav-actions .btn-request {
    border-radius: 8px;
  }

  .nav-menu .nav-actions .btn-currency {
    border-radius: 8px;
  }
}

/* ========================================
   RESPONSIVE NAV: hamburger + mobile menu overlay
   ======================================== */

/* Desktop (≥993px): hide hamburger, show regular nav */
@media (min-width: 993px) {
  .hamburger-menu { 
    display: none !important; 
  }
  
  .nav-menu { 
    display: flex !important; 
  }
  
  .nav-actions { 
    display: flex !important; 
  }
}

/* Mobile & Tablet (≤992px): show hamburger, hide inline nav/actions */
@media (max-width: 992px) {
  .hamburger-menu { 
    display: flex !important; 
    z-index: 1500;
  }

  /* hide normal nav/menu initially */
  .nav-menu { 
    display: none !important; 
  }

  /* hide header actions in normal header - we'll move it into the mobile menu with JS */
  .nav-actions { 
    display: none !important; 
  }

  /* when menu is opened (JS adds class 'mobile-active'), show overlay */
  .nav-menu.mobile-active {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    position: fixed;
    top: 70px; /* adjust if your navbar height is different */
    left: 0;
    right: 0;
    background: var(--nav-bg);
    z-index: 1200;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    align-items: flex-start;
  }

  /* menu items become stacked links */
  .nav-menu.mobile-active > li {
    width: 100%;
    list-style: none;
    margin: 0;
  }

  .nav-menu.mobile-active > li > a {
    display: block;
    padding: 12px 6px;
    width: 100%;
  }

  /* When .nav-actions is moved inside nav-menu, make it full width and vertical */
  .nav-menu .nav-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .nav-menu .nav-actions .btn-request,
  .nav-menu .nav-actions .btn-currency {
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
  }

  .nav-menu .nav-actions .btn-request {
    border-radius: 8px;
  }

  .nav-menu .nav-actions .btn-currency {
    border-radius: 8px;
  }
}

/* ====================================================================
   COMPREHENSIVE RESPONSIVE DESIGN (Mobile-First)
   ==================================================================== */

/* Base: Mobile & very small devices (< 480px) */
@media (max-width: 479px) {
    /* Navigation */
    .nav-container {
        padding: 0 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .logo {
        font-size: 14px;
    }

    .site-logo {
        height: 32px !important;
    }

    /* Navigation actions */
    .nav-actions {
        gap: 8px;
    }

    .btn-request,
    .btn-currency {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Hero section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .search-container {
        width: 90%;
        flex-direction: column;
    }

    .search-input,
    .search-btn {
        width: 100%;
    }

    /* Sections */
    .partners-section,
    .about-section,
    .property-section {
        padding: 30px 16px;
    }

    .partners-container,
    .section-container,
    .about-container {
        padding: 0;
        max-width: 100%;
    }

    /* Text sizing */
    h1, h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Property cards */
    .property-card {
        width: 280px;
    }

    .property-card .card-image-slider {
        height: 150px;
    }

    /* Accordion */
    .faq-container {
        padding: 0 16px;
    }

    .accordion-header {
        padding: 14px 12px;
        font-size: 14px;
    }

    /* Footer */
    .contact-footer {
        padding: 20px 16px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Tablet & medium devices (480px - 768px) */
@media (min-width: 480px) and (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo {
        font-size: 16px;
    }

    .site-logo {
        height: 36px !important;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 15px;
    }

    .search-container {
        width: 85%;
        flex-direction: row;
    }

    .search-input {
        flex: 1;
        min-width: 180px;
    }

    .partners-section,
    .about-section,
    .property-section {
        padding: 40px 20px;
    }

    /* Property cards */
    .property-card {
        width: 300px;
    }

    .property-card .card-image-slider {
        height: 180px;
    }

    .project-card-container {
        gap: 20px;
        padding: 16px 0;
    }

    /* Accordion */
    .faq-container {
        padding: 0 20px;
    }

    .accordion-header {
        padding: 16px 18px;
        font-size: 15px;
    }

    /* Footer */
    .contact-footer {
        padding: 30px 20px;
        gap: 20px;
    }
}

/* Laptops & large screens (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
        gap: 20px;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .hero-btn {
        padding: 13px 35px;
        font-size: 16px;
    }

    .search-container {
        width: 80%;
    }

    .partners-section,
    .about-section,
    .property-section {
        padding: 60px 30px;
    }

    .property-card {
        width: 320px;
    }

    .property-card .card-image-slider {
        height: 200px;
    }

    /* 2-column layouts */
    .about-container {
        gap: 40px;
    }

    .content-image,
    .content-text {
        flex: 0 0 48% !important;
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    .nav-container {
        padding: 0 40px;
    }

    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 40px;
    }

    .search-container {
        width: 700px;
    }

    .partners-section,
    .about-section,
    .property-section {
        padding: 80px 40px;
    }

    .property-card {
        width: 320px;
    }

    /* Full width content sections */
    .about-container,
    .content-container {
        gap: 60px;
    }
}

/* ====================================================================
   TOUCH & INTERACTION FIXES
   ==================================================================== */

/* Ensure buttons are large enough for touch (44px minimum) */
button,
a.button,
.btn-request,
.btn-currency,
.hamburger-menu {
    min-height: 44px;
    min-width: 44px;
}

/* Improve touch targets on mobile */
@media (max-width: 768px) {
    .accordion-header {
        min-height: 48px;
    }

    .nav-menu.mobile-active > li > a {
        min-height: 44px;
    }

    .hero-btn {
        min-height: 48px;
    }
}

/* ====================================================================
   FLEX & GRID RESPONSIVE FIXES
   ==================================================================== */

/* Ensure hero buttons stack on very small screens */
@media (max-width: 380px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Ensure property cards scroll smoothly on mobile */
@media (max-width: 768px) {
    .project-card-container,
    .partners-track {
        scroll-snap-type: x mandatory;
    }

    .project-card,
    .partner-logo {
        scroll-snap-align: start;
    }
}

/* ====================================================================
   OVERFLOW & SPACING FIXES
   ==================================================================== */

/* Prevent horizontal overflow on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .nav-menu.mobile-active {
        max-width: 100vw;
    }

    .search-container,
    .partners-slider,
    .project-card-container {
        max-width: 100vw;
    }
}

/* ====================================================================
   IMAGE RESPONSIVENESS
   ==================================================================== */

/* Ensure images don't overflow containers */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.partner-img,
.footer-logo-img,
.site-logo {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .about-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
}

/* ====================================================================
   FONT RESPONSIVENESS (OPTIONAL: Fluid Typography)
   ==================================================================== */

@media (max-width: 768px) {
    .section-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .content-title {
        font-size: clamp(18px, 4vw, 32px);
    }

    p {
        font-size: clamp(13px, 3.5vw, 16px);
    }
}

