/* ======================== VARIABLES ======================== */
:root {
    --primary: #B91C1C;
    --primary-dark: #991B1B;
    --primary-light: #FEE2E2;
    --accent: #DC2626;
    --gold: #D4A853;
    --dark: #0F172A;
    --dark-2: #1E293B;
    --gray: #64748B;
    --gray-light: #F1F5F9;
    --white: #FFFFFF;
    --glass: rgba(255,255,255,0.08);
    --glass-border: rgba(255,255,255,0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(185,28,28,0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ======================== RESET ======================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ======================== UTILITIES ======================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--dark);
}
.section-title span { color: var(--primary); }
.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ======================== PRELOADER ======================== */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo img { height: 90px; margin-bottom: 30px; filter: brightness(0) invert(1); }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.loader-progress {
    height: 100%; width: 0; background: var(--primary);
    border-radius: 4px; animation: loadProgress 1.5s ease-out forwards;
}
@keyframes loadProgress { to { width: 100%; } }

/* ======================== CUSTOM CURSOR ======================== */
.custom-cursor, .cursor-follower {
    position: fixed; border-radius: 50%; pointer-events: none;
    z-index: 99998; transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}
.custom-cursor { width: 8px; height: 8px; background: var(--primary); }
.cursor-follower {
    width: 36px; height: 36px; border: 1.5px solid var(--primary);
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
@media (hover: none) { .custom-cursor, .cursor-follower { display: none; } }

/* ======================== NAVBAR ======================== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 70px; transition: var(--transition); }
.navbar.scrolled .logo-img { height: 55px; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link {
    position: relative; padding: 8px 18px; font-size: 0.92rem;
    font-weight: 500; color: var(--white);
    border-radius: 8px; transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 2px; background: var(--primary);
    border-radius: 2px; transition: transform 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 22px; background: var(--primary);
    color: var(--white); border-radius: 50px;
    font-size: 0.9rem; font-weight: 600;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 100; }
.hamburger span {
    width: 28px; height: 2.5px; background: var(--white);
    border-radius: 4px; transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ======================== HERO ======================== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    overflow: hidden; padding: 120px 0 40px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-gradient-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.6) 40%, rgba(15,23,42,0.85) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(185,28,28,0.2) 0%, transparent 60%);
    z-index: 1;
}
.floating-shapes { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.shape {
    position: absolute; border-radius: 50%;
    background: rgba(185,28,28,0.06);
    animation: float 20s infinite ease-in-out;
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -80px; animation-delay: -5s; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 30%; animation-delay: -10s; background: rgba(212,168,83,0.05); }
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.hero-content-center { text-align: center; }
.hero-text-center { max-width: 800px; margin: 0 auto; }
.hero-text-center .hero-desc { margin-left: auto; margin-right: auto; }
.hero-text-center .hero-buttons { justify-content: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 20px; border-radius: 50px;
    color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22C55E;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 24px;
}
.title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
}
.title-highlight {
    background: linear-gradient(135deg, var(--primary), #EF4444, var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-title em {
    font-style: normal;
    color: var(--gold);
    -webkit-text-fill-color: var(--gold);
}
.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem; line-height: 1.8;
    margin-bottom: 36px; max-width: 600px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer; border: none; transition: var(--transition);
    position: relative; overflow: hidden;
}
.btn-primary {
    background: var(--primary); color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(185,28,28,0.4);
}
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #c49b38);
    color: var(--white);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,168,83,0.4);
}
.btn-full { width: 100%; justify-content: center; }



/* Hero Stats */
.hero-stats {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 60px auto 0; padding: 0 24px;
    display: flex; align-items: center; justify-content: center; gap: 40px;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800;
    color: var(--white);
    display: inline;
}
.stat-plus { font-size: 2rem; color: var(--primary); font-weight: 700; }
.stat-label { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); font-size: 0.75rem;
    animation: scrollBounce 2s infinite;
}
.mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    display: flex; justify-content: center; padding-top: 8px;
}
.wheel {
    width: 3px; height: 8px; background: var(--primary);
    border-radius: 3px;
    animation: wheelScroll 2s infinite;
}
@keyframes wheelScroll { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(10px); } }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ======================== ABOUT ======================== */
.about-section { padding: 100px 0; background: var(--white); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.about-img-wrapper { position: relative; }
.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s;
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-secondary {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 200px; height: 150px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--primary);
    color: var(--white);
    width: 130px; height: 130px;
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 10px 40px rgba(185,28,28,0.4);
    border: 4px solid var(--white);
}
.exp-number { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; line-height: 1; }
.exp-number sup { font-size: 1rem; }
.exp-text { font-size: 0.75rem; text-align: center; opacity: 0.9; }
.about-text { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: 1rem; }
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; margin-top: 30px;
}
.feature-item {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px; border-radius: var(--radius-sm);
    background: var(--gray-light);
    transition: var(--transition);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.feature-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--dark); }
.feature-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

/* ======================== PROPERTIES ======================== */
.properties-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}
.section-header { margin-bottom: 60px; }

/* NEW Property Cards */
.properties-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}
.prop-card-new {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.04);
}
.prop-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.prop-card-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.prop-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.prop-card-new:hover .prop-card-img img {
    transform: scale(1.12);
}
.prop-card-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(185,28,28,0.3);
}
.prop-card-badge.hot {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}
.prop-card-body {
    padding: 28px;
}
.prop-card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #EF4444);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(185,28,28,0.3);
    margin-bottom: 18px;
}
.prop-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}
.prop-card-body > p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.prop-card-features {
    list-style: none;
    margin-bottom: 20px;
}
.prop-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--dark-2);
    font-weight: 500;
}
.prop-card-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}
.prop-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}
.prop-card-btn:hover {
    background: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(185,28,28,0.3);
}
.prop-card-btn i { font-size: 0.8rem; transition: transform 0.3s; }
.prop-card-btn:hover i { transform: translateX(4px); }

/* ======================== PROJECTS ======================== */
.projects-section { padding: 100px 0; background: var(--white); }
.project-showcase {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 50px; align-items: start;
}
.gallery-main {
    border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.thumb {
    flex: 1; border-radius: var(--radius-sm);
    overflow: hidden; cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    aspect-ratio: 4/3;
}
.thumb.active { border-color: var(--primary); }
.thumb:hover { border-color: var(--primary-light); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

.project-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; margin-bottom: 12px;
}
.project-location {
    color: var(--primary); font-weight: 500;
    font-size: 0.95rem; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.project-desc { color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.project-highlights {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin-bottom: 30px;
}
.highlight-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.9rem; font-weight: 500;
    transition: var(--transition);
}
.highlight-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}
.highlight-item i { color: var(--primary); font-size: 1rem; width: 20px; text-align: center; }
.project-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.project-cta-group .btn-outline {
    color: var(--dark);
    border-color: rgba(0,0,0,0.2);
}
.project-cta-group .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ======================== WHY SECTION ======================== */
.why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
    color: var(--white);
}
.why-section .section-title { color: var(--white); }
.why-section .section-tag {
    background: rgba(185,28,28,0.2);
    color: #FCA5A5;
}
.why-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-card {
    text-align: center; padding: 40px 24px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    animation-delay: var(--delay);
}
.why-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.why-icon {
    width: 70px; height: 70px; margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #EF4444);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--white);
    box-shadow: 0 10px 30px rgba(185,28,28,0.3);
}
.why-card h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* ======================== CONTACT ======================== */
.contact-section { padding: 100px 0; background: var(--gray-light); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; align-items: start;
}
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 20px; background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.cc-icon {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.contact-card h5 { font-size: 0.9rem; color: var(--dark); margin-bottom: 6px; font-weight: 600; }
.contact-card a { color: var(--primary); font-size: 0.9rem; display: block; font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--gray); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.contact-form-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; margin-bottom: 30px;
}
.form-group { position: relative; margin-bottom: 24px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-light);
    color: var(--dark);
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(185,28,28,0.1);
}
.form-group textarea { resize: vertical; }
.form-line { display: none; }

/* ======================== WHATSAPP FLOAT ======================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    animation: whatsappPulse 2s infinite;
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #20BA5C; }
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ======================== FOOTER ======================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-logo { height: 80px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.footer-links h4, .footer-contact h4 {
    color: var(--white); font-size: 1.05rem;
    margin-bottom: 20px; font-weight: 600;
}
.footer-links a {
    display: block; padding: 6px 0;
    font-size: 0.9rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-contact p {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.9rem; margin-bottom: 12px;
}
.footer-contact i { color: var(--primary); margin-top: 3px; width: 16px; }
.footer-bottom {
    margin-top: 40px; padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center; font-size: 0.85rem;
}

/* ======================== ANIMATIONS ======================== */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0; transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
    opacity: 1; transform: translate(0);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .hero-content { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; flex-wrap: wrap; }
    .about-grid { grid-template-columns: 1fr; }
    .project-showcase { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    .nav-menu.active { right: 0; }
    .nav-menu .nav-link { color: var(--dark); font-size: 1.1rem; padding: 12px 0; }
    .nav-actions { display: none; }
    .hamburger { display: flex; }
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .stat-number { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
    .project-highlights { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .properties-grid-new { grid-template-columns: 1fr; }
    .contact-form-card { padding: 24px; }
}

/* ======================== FORM SUCCESS ======================== */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success i {
    font-size: 3rem;
    color: #22C55E;
    margin-bottom: 16px;
}
.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--gray);
}
