/* ======================
   ROOT VARIABLES
   ====================== */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #c29958;
    --accent-hover: #d4a968;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ======================
   RESET & BASE STYLES
   ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ======================
   CONTAINER & LAYOUT
   ====================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ======================
   HEADER & NAVIGATION
   ====================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: var(--shadow-medium);
}

.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--accent-color);
    color: var(--text-white) !important;
    padding: 10px 25px !important;
    border-radius: 25px;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
}

/* ======================
   HERO SECTION
   ====================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    filter: brightness(1.1) contrast(1.05);
    object-fit: cover;
}

/* Video Sound Control Button */
.video-sound-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(194, 153, 88, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-sound-btn:hover {
    background: rgba(194, 153, 88, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(194, 153, 88, 0.5);
}

.video-sound-btn:active {
    transform: scale(0.95);
}

.video-sound-btn.unmuted {
    background: rgba(39, 174, 96, 0.9);
}

.video-sound-btn.unmuted:hover {
    background: rgba(39, 174, 96, 1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.hero-title {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-top {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-color);
}

.title-main {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 153, 88, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--text-white);
    color: var(--primary-color);
}

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

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ======================
   QUICK STATS
   ====================== */
.quick-stats {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ======================
   SECTION HEADERS
   ====================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* ======================
   ABOUT SECTION
   ====================== */
.about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(194, 153, 88, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 20px;
    flex-shrink: 0;
}

/* Enhanced Image Grid */
.image-grid-enhanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.main-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.main-image .about-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.side-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.side-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
}

.side-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.side-image .about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.95), transparent);
    color: var(--text-white);
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .image-caption,
.side-image:hover .image-caption {
    opacity: 1;
}

/* Value Proposition */
.value-proposition {
    margin: 30px 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(194, 153, 88, 0.1) 0%, rgba(194, 153, 88, 0.05) 100%);
    border-right: 4px solid var(--accent-color);
    border-radius: 10px;
}

.value-proposition h3 {
    font-size: 22px;
    color: var(--accent-color);
    font-weight: 700;
}

.value-proposition h3 i {
    margin-left: 10px;
}

/* ======================
   PLAZA SECTION
   ====================== */
.plaza-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.plaza-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(194, 153, 88, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(194, 153, 88, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.plaza-section .section-title {
    color: var(--text-white);
}

.plaza-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.plaza-feature {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.plaza-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.plaza-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.plaza-feature h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.plaza-feature p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ======================
   UNITS SECTION
   ====================== */
.units-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.units-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.unit-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.unit-tab:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.unit-tab.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-white);
}

.unit-content {
    display: none;
}

.unit-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.unit-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: relative;
}

.unit-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 10;
}

.unit-badge.discount {
    background: #27ae60;
}

.unit-badge.special {
    background: #9b59b6;
}

.unit-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-white);
    padding: 40px;
    text-align: center;
}

.unit-icon {
    font-size: 52px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.unit-header h3 {
    font-size: 28px;
    font-weight: 900;
}

.unit-body {
    padding: 40px;
}

.unit-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.detail-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}

.detail-item > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
}

.detail-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.detail-value.highlight {
    font-size: 20px;
    color: var(--accent-color);
}

.unit-features {
    margin-bottom: 40px;
}

.unit-features h4,
.payment-plans h4,
.finishing-styles h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.unit-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.unit-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-dark);
}

.unit-features li i {
    color: #27ae60;
    font-size: 18px;
}

.payment-plans {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.payment-plan-subtitle {
    font-weight: 700;
    font-size: 17px;
    color: var(--accent-color);
    margin: 20px 0 15px 0;
}

.payment-plan-subtitle:first-child {
    margin-top: 0;
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.plan-item:hover {
    border-color: var(--accent-color);
    transform: translateX(-5px);
}

.plan-item i {
    color: var(--accent-color);
    font-size: 20px;
}

.plan-item strong {
    color: var(--accent-color);
}

.finishing-styles {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
}

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

.style-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.style-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.style-item i {
    font-size: 48px;
    color: var(--accent-color);
}

.style-item span {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.unit-footer {
    padding: 30px 40px;
    background: var(--bg-light);
}

/* ======================
   FEATURES SECTION
   ====================== */
.features-section {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    background: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon-large {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ======================
   GALLERY SECTION
   ====================== */
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--text-white);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ======================
   LOCATION SECTION
   ====================== */
.location-section {
    background: var(--bg-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--text-dark);
}

.location-features i {
    color: var(--accent-color);
    font-size: 20px;
}

.location-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.location-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(194, 153, 88, 0.95);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

.map-badge i {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(194, 153, 88, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(194, 153, 88, 0.6);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* ======================
   CTA SECTION
   ====================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #c29958 100%);
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(194, 153, 88, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('public/media/Bareq-General-Vertical-View.jpg') center/cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* ======================
   CONTACT SECTION
   ====================== */
.contact-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Form Introduction */
.form-intro {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.form-intro h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-intro h3 i {
    color: var(--accent-color);
    margin-left: 10px;
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
}

/* Enhanced Form Styles */
.enhanced-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.form-group label.required-field::after {
    content: '*';
    color: #e74c3c;
    margin-right: 3px;
    font-size: 18px;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 18px;
}

.form-input {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(194, 153, 88, 0.1);
}

.form-input:focus + .input-border {
    transform: scaleX(1);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.input-hint {
    color: var(--text-light);
    font-size: 14px;
    margin-top: -5px;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Radio Group Styles */
.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.radio-option:hover {
    border-color: var(--accent-color);
    background: rgba(194, 153, 88, 0.05);
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
    border-color: var(--accent-color);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
}

.radio-option input[type="radio"]:checked ~ .radio-label {
    color: var(--accent-color);
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: rgba(194, 153, 88, 0.1);
}

.radio-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.radio-label i {
    font-size: 24px;
    margin-bottom: 5px;
}

.radio-label strong {
    font-size: 17px;
    display: block;
}

.radio-label small {
    font-size: 14px;
    color: var(--text-light);
    display: block;
}

/* Submit Button Enhanced */
.submit-btn {
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-text, .btn-loading {
    position: relative;
    z-index: 1;
}

/* Form Footer */
.form-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.form-footer p {
    color: var(--text-light);
    font-size: 14px;
}

.form-footer i {
    color: #27ae60;
    margin-left: 5px;
}

/* Old Form Styles for Compatibility */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

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

.info-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ======================
   FOOTER
   ====================== */
.footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list i {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ======================
   FLOAT BUTTONS
   ====================== */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    z-index: 999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--text-white);
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
}

.whatsapp-float {
    right: 30px;
    background: #25d366;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.call-float {
    right: 110px;
    background: var(--accent-color);
}

.call-float:hover {
    background: var(--accent-hover);
    transform: scale(1.1);
}

/* ======================
   MODAL
   ====================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-heavy);
    }

    .nav-links.active {
        right: 0;
    }

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

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .image-grid-enhanced {
        gap: 15px;
    }

    .main-image .about-img {
        height: 350px;
    }

    .side-images {
        grid-template-columns: 1fr;
    }

    .side-image .about-img {
        height: 250px;
    }

    .video-sound-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .title-top {
        font-size: 28px;
    }

    .title-main {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .main-image .about-img {
        height: 280px;
    }

    .side-image .about-img {
        height: 220px;
    }

    .map-badge {
        font-size: 14px;
        padding: 12px 20px;
    }

    .map-badge i {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .plaza-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .units-tabs {
        flex-direction: column;
    }

    .unit-tab {
        width: 100%;
        justify-content: center;
    }

    .unit-details {
        grid-template-columns: 1fr;
    }

    .unit-features ul {
        grid-template-columns: 1fr;
    }

    .style-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .call-float {
        right: 90px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

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

    .title-main {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .unit-body {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .radio-group {
        flex-direction: column;
    }

    .radio-option {
        min-width: 100%;
    }

    .form-intro h3 {
        font-size: 20px;
    }

    .enhanced-form {
        gap: 25px;
    }
}

/* ======================
   PRINT STYLES
   ====================== */
@media print {
    .header,
    .whatsapp-float,
    .call-float,
    .scroll-indicator,
    .mobile-menu-btn {
        display: none !important;
    }
}

