/* Custom Premium Theme: Emerald Green + Gold (Dark Mode) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    /* Emerald Palette */
    --bg-body: #021a14;      /* Deepest emerald for background */
    --bg-card: #042f24;      /* Slightly lighter emerald for cards */
    --bg-alt: #053b2d;       /* Alternate section background */
    --primary-color: #065f46; /* Vibrant emerald for borders/accents */
    
    /* Gold Palette */
    --accent-color: #D9B24C; /* Pure metallic gold */
    --accent-dark: #A66A00;  /* Antique gold */
    --gold-gradient: linear-gradient(to right, #A66A00 0%, #D9B24C 25%, #F2D06B 50%, #D9B24C 75%, #A66A00 100%);
    
    /* Text Palette */
    --text-main: #ffffff;    /* Pure white for main text */
    --text-heading: #f8f3e6; /* Pale cream for sub-headings */
    --text-muted: #e5e7eb;   /* Light gray for paragraphs */
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', Helvetica, Arial, sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-main); line-height: 1.6; background-color: var(--bg-body); overflow-x: hidden; }

/* General Layout Elements */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.py-100 { padding: 80px 0; }
.bg-light { background-color: var(--bg-alt); }
.bg-dark { background-color: var(--bg-body); }

.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.align-center { align-items: center; }
.text-center { text-align: center; }
.text-light { color: var(--text-main) !important; }
.text-gold { 
    display: inline-block;
    background: var(--gold-gradient) !important;
    background-size: 200% auto !important;
    animation: shine 3s linear infinite !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}
.text-muted { color: var(--text-muted) !important; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 900; color: var(--text-heading); }
.section-header { margin-bottom: 50px; position: relative; }
.sub-heading { 
    display: block; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; font-family: var(--font-body); 
    background: var(--gold-gradient);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.main-heading { 
    font-size: 42px; margin-bottom: 15px; 
    background: var(--gold-gradient);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.heading-divider { width: 60px; height: 3px; background: var(--gold-gradient); margin: 0 auto; }
.heading-divider.left { margin: 0; }
.section-desc { font-size: 16px; color: var(--text-muted); margin-top: 15px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-block; padding: 12px 30px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 30px; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; font-family: var(--font-body); position: relative; overflow: hidden; }
.btn-gold {
    background: var(--gold-gradient);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    color: #021a14 !important;
    border: none;
    box-shadow: 0 4px 15px rgba(166, 106, 0, 0.15); /* Soft low opacity shadow */
    position: relative;
    overflow: hidden;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #A66A00 0%, #E2BD5A 50%, #FBE08A 100%);
    box-shadow: 0 6px 20px rgba(166, 106, 0, 0.3);
    transform: translateY(-2px);
}
.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(166, 106, 0, 0.05); /* Very soft low opacity shadow */
}
.btn-outline:hover {
    background: var(--gold-gradient);
    color: #021a14 !important;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(166, 106, 0, 0.25);
    transform: translateY(-2px);
}
.btn-full { width: 100%; text-align: center; }
button:disabled { opacity: 0.7; cursor: not-allowed; }

/* Top Bar */
.top-bar { background-color: var(--bg-card); color: var(--text-muted); font-size: 13px; padding: 10px 0; border-bottom: 1px solid var(--primary-color); }
.top-bar .container { display: flex; justify-content: flex-end; }
.top-bar a { color: var(--text-muted); text-decoration: none; transition: var(--transition); font-weight: 500; }
.top-bar a:hover { color: var(--accent-color); }

/* Header & Navigation */
#navbar { background-color: rgba(2, 26, 20, 0.95); padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); transition: all 0.3s; border-bottom: 1px solid var(--primary-color); }
#navbar.scrolled { padding: 10px 0; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 50px; filter: drop-shadow(0px 0px 2px rgba(212,175,55,0.5)); }
.nav-menu ul { display: flex; list-style: none; }
.nav-menu ul li { margin: 0 10px; }
.nav-menu ul li a { text-decoration: none; color: var(--text-main); font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; transition: var(--transition); }
.nav-menu ul li a:hover { color: var(--accent-color); }
.mobile-nav-toggle { display: none; background: transparent; border: none; font-size: 24px; color: var(--accent-color); cursor: pointer; }

/* Hero Section */
.hero-section { background-size: cover; background-position: center; background-attachment: fixed; padding: 120px 0; color: var(--text-main); min-height: 80vh; display: flex; align-items: center; }
.hero-container { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.hero-title { font-size: 96px; line-height: 1.1; margin: 15px 0; color: var(--text-main); }
.hero-location { 
    font-size: 18px; margin-bottom: 20px; font-weight: 500;
    color: var(--accent-color);
}
.hero-tagline { font-size: 20px; font-weight: 300; margin-bottom: 35px; color: #ffffff; }
.hero-usp { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 10px; font-size: 14px; background-color: rgba(4, 47, 36, 0.7); padding: 10px 15px; border-radius: 4px; border-left: 3px solid var(--accent-color); backdrop-filter: blur(5px); }
.hero-actions { display: flex; gap: 20px; }

/* Form Card - Premium Glass Design */
.form-card {
    background: linear-gradient(135deg, rgba(4, 47, 36, 0.95), rgba(2, 26, 20, 0.98)) !important;
    border: none !important;
    border-top: 3px solid var(--accent-color) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(212,175,55,0.1) !important;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.form-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.form-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; letter-spacing: 0.3px; }

/* Enquiry Form - Elegant Underline Style */
.enquiry-form .form-group { margin-bottom: 22px; position: relative; }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px 8px 0 0;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-heading);
    transition: all 0.35s ease;
    letter-spacing: 0.3px;
}
.enquiry-form select { appearance: none; cursor: pointer; }
.enquiry-form select option { background-color: var(--bg-card); color: var(--text-heading); }
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder { color: rgba(163, 155, 130, 0.7); font-size: 14px; font-weight: 300; }
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    outline: none;
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
}
.iti { width: 100%; } 
.iti__country-list { background-color: var(--bg-card); border: 1px solid var(--primary-color); color: var(--text-main); }
.iti__country.iti__highlight { background-color: var(--bg-alt); }

/* Overview */
.overview-text h3 { color: var(--accent-color); }
.overview-text p { color: var(--text-muted); }
.features-list { margin-top: 30px; }
.feature-item { display: flex; gap: 15px; margin-bottom: 20px; }
.feature-item i { font-size: 24px; color: var(--accent-color); }
.feature-item h4 { font-size: 18px; color: var(--text-heading); margin-bottom: 5px; }
.feature-item p { font-size: 14px; color: var(--text-muted); }
.img-responsive { width: 100%; height: auto; display: block; border-radius: 4px; }
.gold-border { border: 3px solid var(--accent-color); padding: 8px; background-color: var(--bg-card); border-radius: 8px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; border-top: 1px solid var(--primary-color); padding-top: 40px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: 48px; font-weight: 700; font-family: var(--font-heading); color: var(--accent-color); }
.stat-label { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); }

/* Pricing */
.pricing-card { position: relative; border-top: 4px solid var(--primary-color); text-align: center; transition: var(--transition); background-color: var(--bg-card); padding: 35px 25px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); overflow: hidden; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); border-top-color: var(--accent-color); }
.pricing-card.featured { border-top: 4px solid var(--accent-color); background-color: var(--bg-alt); }
.card-badge { position: absolute; top: 15px; right: 15px; background-color: var(--bg-body); color: var(--accent-color); font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 20px; border: 1px solid var(--accent-color); box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.badge-gold { background: var(--gold-gradient) !important; color: #021a14 !important; border-color: transparent !important; box-shadow: 0 2px 8px rgba(166, 106, 0, 0.2); }
.pricing-card h3 { font-size: 28px; color: var(--text-heading); margin-bottom: 5px; }
.card-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 25px; }
.price-box { margin-bottom: 30px; }
.price-from { display: block; font-size: 12px; text-transform: uppercase; color: var(--text-muted); }
.price-amount { font-size: 36px; font-weight: 700; font-family: var(--font-heading); color: var(--accent-color); }
.card-features { list-style: none; text-align: left; margin-bottom: 35px; border-top: 1px solid var(--primary-color); padding-top: 25px; }
.card-features li { margin-bottom: 12px; font-size: 14px; color: var(--text-main); }
.card-features li i { color: var(--accent-color); margin-right: 10px; }

/* Amenities & Smart Home */
.amenity-card { background-color: var(--bg-card); padding: 35px 25px; border-radius: 8px; text-align: center; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); transition: var(--transition); border: 1px solid var(--primary-color); }
.amenity-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15); border-color: var(--accent-color); }
.amenity-icon { font-size: 36px; color: var(--accent-color); margin-bottom: 20px; }
.amenity-card h3 { font-size: 18px; color: var(--text-heading); margin-bottom: 10px; }
.amenity-card p { font-size: 14px; color: var(--text-muted); }

.features-grid-small { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-top: 30px; }
.small-feature i { font-size: 28px; color: var(--accent-color); margin-bottom: 10px; }
.small-feature h4 { font-size: 16px; color: var(--text-heading); margin-bottom: 5px; }
.small-feature p { font-size: 14px; color: var(--text-muted); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { height: 250px; background-size: cover; background-position: center; position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; border: 1px solid var(--primary-color); }
.gallery-item.large { grid-column: span 2; height: 520px; grid-row: span 2; }
.gallery-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(2, 26, 20, 0.8); display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-family: var(--font-heading); color: var(--accent-color); font-size: 20px; font-weight: 600; border-bottom: 2px solid var(--accent-color); padding-bottom: 5px; }

/* Lightbox */
#lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.95); display: flex; align-items: center; justify-content: center; z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
#lightbox.active { opacity: 1; pointer-events: auto; }
#lightbox-img { max-width: 90%; max-height: 90vh; border-radius: 5px; border: 2px solid var(--accent-color); }
#lightbox-close { position: absolute; top: 20px; right: 30px; color: var(--accent-color); font-size: 40px; cursor: pointer; }

/* Floor Plans */
.tab-container { background-color: var(--bg-card); padding: 40px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); border: 1px solid var(--primary-color); }
.tab-buttons { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn { background-color: var(--bg-body); border: 1px solid var(--primary-color); padding: 12px 25px; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--text-main); border-radius: 30px; cursor: pointer; transition: var(--transition); }
.tab-btn.active, .tab-btn:hover { background-color: var(--accent-color); color: var(--bg-body); border-color: var(--accent-color); }
.fp-panel { display: none; }
.fp-panel.active { display: block; animation: fadeIn 0.5s ease; }
.floorplan-info h3 { font-size: 32px; color: var(--accent-color); margin-bottom: 15px; }
.floorplan-info p { color: var(--text-muted); }
.floorplan-info ul { list-style: none; margin: 25px 0; }
.floorplan-info ul li { margin-bottom: 12px; font-size: 15px; color: var(--text-main); }
.floorplan-info ul li strong { color: var(--accent-color); }
.floor-img { border: 2px solid var(--primary-color); border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); max-height: 400px; object-fit: contain; background-color: var(--bg-body); }

/* Developer */
.dev-logo { max-height: 150px; filter: drop-shadow(0 0px 10px rgba(212,175,55,0.3)); }
.developer-stats { display: flex; gap: 15px; margin-top: 30px; flex-wrap: wrap; }
.stat-badge { background-color: var(--bg-alt); border: 1px solid var(--primary-color); padding: 10px 15px; border-radius: 4px; font-size: 13px; color: var(--text-main); }

/* Location */
.highlights-list { list-style: none; margin-top: 25px; }
.highlights-list li { margin-bottom: 15px; font-size: 15px; display: flex; align-items: center; gap: 12px; color: var(--text-main); }
.highlights-list li i { color: var(--accent-color); font-size: 18px; width: 25px; }
.location-map-container { background-color: var(--bg-card); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.3); border: 1px solid var(--primary-color); }
.map-tabs { display: flex; background-color: var(--bg-alt); border-bottom: 1px solid var(--primary-color); }
.map-tab { flex: 1; background: transparent; border: none; color: var(--text-main); padding: 15px; font-weight: 600; cursor: pointer; }
.map-tab.active { background-color: var(--accent-color); color: var(--bg-body); }
.map-content { display: none; padding: 10px; }
.map-content.active { display: block; }

/* Contact Section */
.contact-info-block { padding-right: 20px; }
.info-card { display: flex; gap: 20px; margin-bottom: 30px; }
.info-card i { font-size: 24px; color: var(--bg-body); background-color: var(--accent-color); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; }
.info-card h4 { font-size: 16px; color: var(--text-heading); margin-bottom: 5px; }
.info-card p, .info-card a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }

/* Footer */
.main-footer { background-color: #01120e; color: var(--text-main); padding: 80px 0 0; border-top: 2px solid var(--accent-color); }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--primary-color); }
.footer-logo { height: 45px; margin-bottom: 20px; filter: drop-shadow(0 0 2px rgba(212,175,55,0.5)); }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.social-links a { color: var(--accent-color); background-color: var(--bg-alt); width: 35px; height: 35px; border-radius: 50%; display: inline-flex; justify-content: center; align-items: center; margin-right: 10px; transition: var(--transition); border: 1px solid var(--primary-color); text-decoration: none; }
.social-links a:hover { background-color: var(--accent-color); color: var(--bg-body); }
.footer-container h4 { color: var(--accent-color); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 25px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: var(--text-muted); font-size: 14px; text-decoration: none; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--accent-color); }
.footer-bottom { background-color: #010a08; padding: 30px 0; font-size: 12px; color: var(--text-muted); text-align: center; }

/* Popup Modal - Premium Luxury Design */
.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 15, 10, 0.92);
    backdrop-filter: blur(16px);
    display: flex; align-items: center; justify-content: center;
    z-index: 3000; opacity: 0; pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.active { opacity: 1; pointer-events: auto; }
.modal-content {
    background: linear-gradient(160deg, #073d2c 0%, #021a14 100%);
    padding: 50px 45px;
    border-radius: 20px;
    width: 92%; max-width: 460px;
    position: relative; text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(212,175,55,0.15);
    transform: scale(0.92) translateY(30px);
    transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal.active .modal-content { transform: scale(1) translateY(0); }
.modal-close {
    position: absolute; top: 18px; right: 22px;
    font-size: 26px; cursor: pointer;
    color: rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
    line-height: 1; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid rgba(212,175,55,0.2);
}
.modal-close:hover { color: var(--accent-color); transform: rotate(90deg); background: rgba(212,175,55,0.1); }
.modal-content h3 {
    font-family: var(--font-heading);
    font-size: 34px; font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 30px rgba(212,175,55,0.3);
    
    /* Live Shimmering Gold Gradient */
    display: inline-block;
    background: var(--gold-gradient) !important;
    background-size: 200% auto !important;
    animation: shine 3s linear infinite !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}
.modal-content > p { font-size: 14px; color: var(--text-muted); letter-spacing: 0.4px; }
.modal-form { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.modal-form input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.04);
    color: var(--text-heading);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px 8px 0 0;
    font-family: var(--font-body); font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}
.modal-form input::placeholder { color: rgba(163,155,130,0.7); font-size: 14px; font-weight: 300; }
.modal-form input:focus {
    outline: none;
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212,175,55,0.3);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
}

/* Floating Elements */
.float-whatsapp { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); z-index: 1000; transition: transform 0.3s ease; text-decoration: none; border: 2px solid #1da851; }
.float-whatsapp:hover { transform: scale(1.1); color: white; }
.mobile-cta { display: none; position: fixed; bottom: 0; width: 100%; background: var(--bg-card); box-shadow: 0 -2px 10px rgba(0,0,0,0.5); z-index: 2000; border-top: 1px solid var(--primary-color); }
.mobile-cta a { flex: 1; text-align: center; padding: 15px; font-weight: 600; color: var(--bg-body); text-decoration: none; }
.mobile-cta-call { background: var(--accent-color); }
.mobile-cta-wa { background: #25D366; color: white !important; }

/* Field Errors */
.field-error { color: #f87171; font-size: 12px; display: block; margin-top: 4px; }
input.error { border-color: #f87171 !important; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Antalya Section Tweaks */
.antalya-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.antalya-card .card-features {
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 64px; }
    .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-usp { justify-content: center; }
    .hero-actions { justify-content: center; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
    .main-heading { font-size: 32px; }
    .py-100 { padding: 50px 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.large { grid-column: span 1; height: 250px; grid-row: span 1; }
    
    .mobile-nav-toggle { display: block; }
    .nav-menu { position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-card); padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.5); display: none; border-bottom: 2px solid var(--accent-color); }
    .nav-menu.open { display: block; }
    .nav-menu ul { flex-direction: column; }
    .nav-menu ul li { margin: 10px 0; }
    .nav-cta { display: none; }
    
    .mobile-cta { display: flex; }
    .float-whatsapp { bottom: 80px; }
    body { padding-bottom: 50px; }

    /* Custom Mobile Fitting Adjustments */
    .form-card { padding: 25px 20px !important; }
    .modal-content { padding: 35px 20px !important; }
    .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .stats-grid { grid-template-columns: 1fr; gap: 25px; padding-top: 30px; }
    .antalya-main-card { padding: 25px 20px !important; }
    
    /* Fix strategic connectivity table fitting on narrow screens */
    .location-highlights div[style*="padding: 22px 20px"] { padding: 15px 10px !important; }
    .location-highlights div[style*="grid-template-columns: 1.8fr 1fr 1fr"] { 
        grid-template-columns: 1.5fr 1.1fr 0.9fr !important;
        font-size: 13px !important; 
    }
}

/* Custom Scrollbar for Proximity List */
.custom-scroll::-webkit-scrollbar {
    width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb {
    background: rgba(217, 178, 76, 0.4);
    border-radius: 4px;
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Premium Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

#preloader.preloader-fade {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    max-height: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(217, 178, 76, 0.45));
    animation: preloaderPulse 2.2s ease-in-out infinite alternate;
}

.preloader-line {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--gold-gradient);
    background-size: 200% auto;
    animation: preloaderLoad 2.2s cubic-bezier(0.77, 0, 0.175, 1) infinite, shine 3s linear infinite;
}

@keyframes preloaderPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
        filter: drop-shadow(0 0 10px rgba(217, 178, 76, 0.3));
    }
    100% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(217, 178, 76, 0.7));
    }
}

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