/* ==========================================================================
   1. BRAND COLOR PALETTE & RESET
   ========================================================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    -webkit-font-smoothing: antialiased;
}

.area-page {
    width: 100%;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 6px;
}

.section-padding {
    padding: 100px 0;
}

/* ==========================================================================
   2. LIGHT / DARK THEME ENGINE (Fixed as per request)
   ========================================================================== */

/* LIGHT SECTIONS (#f8fafc - Replaced Pure White) */
.section-light {
    background-color: #f8fafc;
}
.section-light .section-heading h2 { color: #0f172a; }
.section-light p { color: #475569; }
.section-light .box-card { background-color: #ffffff; border: 1px solid #e2e8f0; }
.section-light .box-card h3 { color: #0f172a; }
.section-light .box-card p { color: #475569; }
.section-light .roads-content li { color: #0f172a; }
.section-light .faq-item summary { color: #0f172a; }
.section-light .links-grid a { color: #0f172a; background-color: #ffffff; }

/* DARK SECTIONS (#171717) */
.section-dark {
    background-color: #171717; 
}
.section-dark .section-heading h2 { color: #ffffff; }
.section-dark p { color: #cbd5e1; } 
.section-dark .box-card { background-color: #262626; border: 1px solid #333; } 
.section-dark .box-card h3 { color: #ffffff; }
.section-dark .box-card p { color: #94a3b8; }
.section-dark .faq-item summary { color: #ffffff; }
.section-dark .links-grid a { color: #ffffff; background-color: #262626; }

/* ==========================================================================
   3. REUSABLE UI COMPONENTS
   ========================================================================== */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 38px;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #cb4154; 
    border-radius: 2px;
}

.section-heading p {
    margin-top: 20px;
    font-size: 16px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Animations */
.btn-primary, .btn-secondary {
    position: relative;
    text-decoration: none;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    color: #ffffff;
    border: none;
    background-color: #cb4154;
    box-shadow: 0 4px 12px rgba(203, 65, 84, 0.25);
}

.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background-color: #a83545; transition: all 0.4s ease; z-index: -1;
    
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(203, 65, 84, 0.4); color: #ffffff;}
.btn-primary:hover::before { left: 0; }

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background-color: #ffffff; transition: all 0.4s ease; z-index: -1;
}

.btn-secondary:hover { color: #cb4154; transform: translateY(-3px); }
.btn-secondary:hover::before { left: 0; }

.icon-circle {
    width: 65px;
    height: 65px;
    background-color: #cb4154;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}
.icon-circle span { color: #ffffff; font-size: 24px; }

/* Universal Card Styling */
.box-card {
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* General Hover (Applies everywhere except specific overrides) */
.box-card:not(.service-card):hover {
    border-color: #cb4154 !important;
    transform: translateY(-5px);
}
.section-dark .box-card:not(.service-card):hover { box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.section-light .box-card:not(.service-card):hover { box-shadow: 0 10px 25px rgba(203, 65, 84, 0.08); }

/* ==========================================================================
   4. INDIVIDUAL SECTIONS
   ========================================================================== */

/* HERO SECTION */
.hero-section {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    padding: 210px 0 110px 0;
}
.hero-section .container { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-content { flex: 1.2; }
.location-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(203, 65, 84, 0.15); color: #cb4154; border: 1px solid rgba(203, 65, 84, 0.4);
    padding: 6px 16px; border-radius: 4px; font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px;
}
.hero-content h1 { font-size: 48px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: #ffffff}
.hero-content p { color: #cbd5e1; font-size: 18px; margin-bottom: 35px; }
.hero-buttons { display: flex; gap: 15px; }
.hero-image { flex: 0.8; }
.hero-image img { border-bottom: 5px solid #cb4154; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* TRUST STRIP */
.trust-strip { padding: 20px 0; background: #0f172a; border-bottom: 4px solid #cb4154; }
.trust-strip .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { font-size: 15px; font-weight: 700; color: #f8fafc; display: flex; align-items: center; gap: 10px; }
.trust-item span { color: #cb4154; }

/* SERVICES (Light) */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { padding: 45px 30px; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.service-card:hover .icon-circle { transform: scale(1.1); }

/* Custom Requirement: Services Hover Border Stays Normal */
.services-section .service-card:hover {
    border-color: #e2e8f0 !important; /* Keeps normal border */
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* INTRO (Light) */
.intro-section .container { display: flex; align-items: center; gap: 60px; }
.intro-left { flex: 1; }
.intro-left h2 { font-size: 36px; margin-bottom: 25px; font-weight: 800; }
.intro-left p { margin-bottom: 20px; font-size: 16px; }
.intro-right { flex: 1; }

/* LOCAL LANDMARKS (Dark #171717) */
.landmark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.landmark-card { border-left: 4px solid #cb4154 !important; padding: 30px; border-radius: 0 6px 6px 0; }
.landmark-card h3 { margin-bottom: 12px; font-size: 20px; font-weight: 700; }

/* NEARBY AREAS (Light) */
.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-card { padding: 30px 20px; text-align: center; }
.area-card i { color: #cb4154; margin-bottom: 15px; font-size: 22px; }
.area-card h3 { font-size: 18px; font-weight: 700; }

/* MAIN ROADS (Light - Fixed as Requested) */
.roads-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.roads-content h2 { font-size: 36px; margin-bottom: 20px; font-weight: 800; }
.roads-content ul { list-style: none; margin-top: 25px; }
.roads-content li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; font-weight: 600; }
.roads-content li i { color: #cb4154; }

/* PROPERTY TYPES (Dark #171717) */
.property-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.property-box { text-align: center; padding: 35px 20px; }
.property-box i { font-size: 32px; color: #cb4154; margin-bottom: 15px; }
.property-box h3 { font-size: 15px; font-weight: 700; }

/* FAQs ACCORDION (Light) */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; }
.faq-item[open] { border-color: #cb4154 !important; }
.faq-item summary { padding: 20px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: #cb4154; }
.faq-item[open] summary::after { content: '\f068'; }
.faq-item p { padding: 0 20px 20px; }

/* CASE STUDY (Dark #171717) */
.case-study-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.case-content h2 { font-size: 36px; margin-bottom: 20px; font-weight: 800;color: #fff; }
.case-content p { margin-bottom: 25px; }

/* PHOTO GALLERY (Light) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-grid img { height: 220px; width: 100%; object-fit: cover; border-bottom: 4px solid transparent; transition: all 0.3s ease; border-radius: 4px; }
.gallery-grid img:hover { border-color: #cb4154; transform: scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* GOOGLE MAP SECTION (Light - Replaced Video) */
.map-container { max-width: 1000px; margin: 0 auto; border-radius: 6px; overflow: hidden; }
.map-container iframe { width: 100%; height: 450px; border: none; display: block; } /* No border as requested */

/* REGIONAL LINKS (Dark #171717) */
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.links-grid a { padding: 20px; text-decoration: none; font-weight: 700; text-align: center; font-size: 14px; }
.links-grid a:hover { background-color: #cb4154 !important; color: #ffffff !important; border-color: #cb4154 !important; }

/* FINAL PREMIUM CTA */
.premium-cta { padding: 80px 0; background: linear-gradient(135deg, #171717 0%, #0a0a0a 100%); text-align: center; color: #ffffff; border-bottom: 6px solid #cb4154; }
.premium-cta h2 { font-size: 42px; font-weight: 800; margin-bottom: 15px;color:#ffffff; }
.premium-cta p { color: #cbd5e1; margin-bottom: 35px; font-size: 18px; }
.cta-btns { display: flex; justify-content: center; gap: 20px; }

/* ==========================================================================
   5. FULLY RESPONSIVE ENGINE (Desktop, Tablet, Mobile)
   ========================================================================== */
@media(max-width: 991px) {
    .hero-section .container, .intro-section .container, .roads-section .container, .case-study-section .container { flex-direction: column; grid-template-columns: 1fr; text-align: center; }
    .hero-buttons, .cta-btns { justify-content: center; }
    .services-grid, .landmark-grid, .links-grid, .area-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .property-grid { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 767px) {
    .services-grid, .landmark-grid, .area-grid, .property-grid, .gallery-grid, .links-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
    .premium-cta h2 { font-size: 28px; }
    .map-container iframe { height: 300px; }
    .section-padding { padding: 60px 0; }
}

/* Testimonial Section */
.testimonial-section {
    background: #f4f7fb;
}

.testimonial-section .section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 54px;
}

.testimonial-section .section-heading h2 {
    position: relative;
    margin-bottom: 26px;
}

.testimonial-section .section-heading h2::after {
    content: "";
    display: block;
    width: 74px;
    height: 4px;
    background: #d94b5b;
    border-radius: 999px;
    margin: 18px auto 0;
}

.testimonial-section .section-heading p {
    max-width: 680px;
    margin: 0 auto;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 38px 44px;
    text-align: center;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.testimonial-card .review-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 22px;
    color: #f5b301;
    font-size: 20px;
    line-height: 1;
}

.testimonial-card p {
    max-width: 780px;
    margin: 0 auto 26px;
    font-size: 20px;
    line-height: 1.8;
    color: #334155;
}

.testimonial-card h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
    color: #071733;
}

.testimonial-card span {
    display: block;
    font-size: 16px;
    color: #64748b;
}

@media (max-width: 768px) {
    .testimonial-section .section-heading {
        margin-bottom: 34px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .testimonial-card p {
        font-size: 17px;
        line-height: 1.7;
    }

    .testimonial-card h3 {
        font-size: 24px;
    }
}