:root {
    --primary-color: #d45e20; /* Primary Orange */
    --secondary-color: #c56930; /* Secondary Orange */
    --header-bg: #222; /* Keep darker bg for header contrast or use secondary if preferred */
    --light-bg: #fff5ee; /* Very light tint */
    --text-color: #333;
    --white: #fff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #1a1a1a; /* Dark Header */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.4s;
}

.logo h1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.cta-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 94, 32, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Projects Section */
.projects {
    padding: 80px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: var(--white);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img {
    height: 250px;
    width: 100%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.project-info {
    padding: 25px;
}

.project-tag {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: inline-block;
}

.project-title {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.project-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
}

/* Contact/Lead Gen Form */
.lead-gen {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.lead-gen-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-list {
    margin-top: 30px;
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.lead-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background-color: #e65c00; /* Darker Orange */
}

/* Lead-only Ads Landing Page */
.lead-only-section {
    padding: 40px 0;
    background: var(--light-bg);
    min-height: 100vh;
}

.lead-focus-wrap {
    max-width: 560px;
    margin: 0 auto;
}

/* Privacy Policy Page */
.privacy-policy-section {
    background: var(--light-bg);
    padding: 60px 0;
    min-height: calc(100vh - 220px);
}

.privacy-policy-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 36px;
}

.privacy-policy-card h1 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 2.1rem;
}

.privacy-policy-meta {
    color: #666;
    margin-bottom: 28px;
}

.privacy-policy-card h2 {
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 1.25rem;
}

.privacy-policy-card p,
.privacy-policy-card li {
    color: #444;
}

.privacy-policy-card ul {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .privacy-policy-card {
        padding: 24px;
    }

    .privacy-policy-card h1 {
        font-size: 1.7rem;
    }
}

.lead-focus-title {
    font-size: 2rem;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.lead-focus-subtitle {
    margin-bottom: 22px;
    color: #444;
}

.lead-plain-form {
    width: 100%;
}

.lead-encouragement {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

.lead-project-image {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    background: #f0f0f0;
}

.lead-project-details {
    max-width: 760px;
    margin: 100px auto 20px;
}

.lead-project-details h2 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.lead-project-details.is-hidden {
    display: none;
}

.lead-project-description {
    color: #444;
    line-height: 1.6;
}

.lead-form-message {
    margin-top: 12px;
    font-size: 0.95rem;
    min-height: 24px;
}

.lead-form-message.success {
    color: #1f7a1f;
}

.lead-form-message.error {
    color: #b3261e;
}

@media (max-width: 900px) {
    .lead-focus-title {
        font-size: 1.7rem;
    }

    .lead-project-details {
        margin-top: 70px;
    }
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.back-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; 
    padding: 0;
    border: 1px solid #888;
    width: 90%; 
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.modal-header {
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    padding: 20px 30px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aeaeae;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Sticky Bottom CTA */
.sticky-bottom-cta {
    display: none; /* Hidden by default on desktop, shown on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1500;
    padding: 15px;
    text-align: center;
}

.sticky-bottom-cta .cta-btn {
    width: 100%;
    display: block;
    font-size: 1.1rem;
    padding: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide header call button on mobile to avoid duplication */
    nav .cta-btn {
        display: none !important;
    }

    .sticky-bottom-cta {
        display: block;
    }

    /* Add padding to body or footer so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 80px; 
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%; /* Below the header */
        left: 0;
        background-color: #1a1a1a;
        padding: 20px 0;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .nav-links .cta-btn {
        display: inline-block;
        margin-top: 10px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .lead-gen-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

/* Project Options List (Radio Buttons) */
.project-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.project-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.project-option:hover {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
}

.project-option input[type='radio'] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.project-option label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    flex: 1;
}

.project-option.selected {
    background-color: var(--light-bg);
    border-color: var(--primary-color);
    font-weight: bold;
}


/* Project Detail Page */
.project-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.project-detail-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-detail-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.project-detail-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
    list-style: none;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenities-list li i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .project-detail-content {
        grid-template-columns: 1fr;
    }
}


/* Project Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Badges */
.badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #c8e6c9;
}

/* Highlights */
.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.highlights-container {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #eee;
}

.highlights-container h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.highlights-box {
    /* Keep for backward compatibility or different usage */
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.highlights-box h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    list-style: none; /* Already defined but good to confirm */
}

.highlights-list li {
    margin-bottom: 0;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    color: #555;
}

.highlights-list li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free'; /* Updated font family name if needed, usually 5 Free works too depending on version included */
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Price Tag */
.price-tag {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}


/* Project Portal Style */
.project-portal-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
    align-items: stretch; /* Ensure columns are equal height for sticky to work */
    position: relative;
}

body {
    background-color: #f8f9fa; /* Slight off-white background for the whole page to make cards pop */
}

.gallery-hero {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.thumbnail-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}

.thumbnail-img:hover, .thumbnail-img.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.portal-nav-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.portal-nav {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0 10px;
    overflow-x: auto;
    border-bottom: none;
    justify-content: flex-start;
}

.portal-nav a {
    padding: 20px 5px;
    font-weight: 600;
    color: #555;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.portal-nav a.active, .portal-nav a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 35px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.info-card h3 {
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Specifications Grid */
.specifications-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.spec-value {
    font-size: 1.1rem;
    color: #222;
    font-weight: 600;
}

/* Amenities Grid Redesign */
.amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    list-style: none;
    margin: 0;
}

.amenities-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.amenities-list li:hover {
    background: #fff;
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.amenities-list li:hover i {
    color: #fff !important;
}

.amenities-list li:hover .amenity-title {
    color: var(--primary-color);
}

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff5ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    transition: all 0.4s ease;
    color: var(--primary-color);
}

.amenities-list li:hover .amenity-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.amenities-list li:hover .amenity-icon-wrapper i {
    color: #fff !important; /* Force white icon on orangebg */
}

.amenity-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

.amenity-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* Accordion for FAQ */
.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
    color: #555;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid #eee;
}

/* Sidebar Specifics */
.portal-sidebar {
    height: 100%;
    position: relative;
}

.sticky-sidebar-card {
    position: -webkit-sticky;
    position: sticky;
    top: 140px; /* Leaves space for sticky header & nav bar */
    border-top: 5px solid var(--primary-color) !important;
    z-index: 90;
}

.portal-sidebar .info-card {
    padding: 30px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.portal-sidebar .cta-btn {
    box-shadow: 0 8px 15px rgba(212, 94, 32, 0.3);
    transition: all 0.3s ease;
}

.portal-sidebar .cta-btn:hover {
    box-shadow: 0 12px 20px rgba(212, 94, 32, 0.4);
    transform: translateY(-3px);
}

.sidebar-location {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.sidebar-cta-group h4 {
    color: #444;
    font-size: 1.1rem;
}

.primary-cta {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: block;
    text-align: center;
}

.secondary-cta {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.secondary-cta:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.privacy-note {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #999;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Builder Section */
.builder-profile {
    padding-top: 5px;
}

.builder-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.builder-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 8px;
    background: #fff;
}

.builder-info-text h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-badge {
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.experience-badge i {
    color: #ffc107; /* Gold */
}

.builder-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 10px;
}

.stat-box {
    background: #f8f9fa;
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid #ccc;
    transition: transform 0.3s;
}

.stat-box.success { border-bottom-color: #2e7d32; }
.stat-box.warning { border-bottom-color: #ff9800; }

.stat-box:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Location Section */
.location-header {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff5ee;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.location-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.location-header p {
    margin: 0;
    color: #444;
    font-size: 1.05rem;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.interactive-map {
    width: 100%;
    height: 350px; /* Taller Map */
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-container:hover .interactive-map {
    transform: scale(1.05);
}

.landmarks-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.landmark-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.landmark-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #ddd;
    transform: translateY(-2px);
}

.landmark-icon-box {
    width: 50px;
    height: 50px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.landmark-content {
    flex: 1;
}

.landmark-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.landmark-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.landmark-items li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.landmark-items li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .builder-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .landmarks-wrapper {
        grid-template-columns: 1fr;
    }
}

