/* ================================================
   NEW SECTIONS STYLING - PLATINUM CHOICE
   ================================================ */

/* Hero Section Updates */
.hero-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6em;
    color: #FFFFFF;
    text-align: center;
    margin: 20px auto 0;
    max-width: 900px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-experience {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: center;
    margin: 15px auto 0;
    max-width: 800px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary {
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
}

.btn-hero-primary:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-hero-secondary {
    background-color: #703BF7;
    color: #FFFFFF;
    border: none;
}

.btn-hero-secondary:hover {
    background-color: #5F32D5;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(112, 59, 247, 0.4);
}

/* What Makes Us Different Section */
.what-makes-different {
    padding: 100px 0;
    background-color: #141414;
}

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

.difference-card {
    background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.difference-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.difference-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.difference-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6em;
    color: #999999;
    margin-bottom: 25px;
}

.difference-highlight {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    color: #703BF7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* For the Diaspora Section */
.diaspora-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

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

.tab-button {
    padding: 16px 32px;
    background-color: transparent;
    border: 2px solid #262626;
    color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #703BF7;
    color: #703BF7;
}

.tab-button.active {
    background-color: #703BF7;
    border-color: #703BF7;
    color: #FFFFFF;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

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

.diaspora-card {
    background: linear-gradient(180deg, #141414 0%, #0F0F0F 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.diaspora-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.diaspora-card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.diaspora-card-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    color: #CCCCCC;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #141414;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.testimonial-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7em;
    color: #CCCCCC;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

.testimonial-author span {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: #1A1A1A;
    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.final-cta-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    border: none;
}

.btn-cta-primary {
    background-color: #25D366;
    color: #FFFFFF;
}

.btn-cta-primary:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-cta-secondary {
    background-color: #FFFFFF;
    color: #703BF7;
}

.btn-cta-secondary:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(255, 255, 255, 0.4);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
    }
    
    .hero-experience {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tabs-navigation {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
    }
    
    .diaspora-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .final-cta-title {
        font-size: 32px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .what-makes-different,
    .diaspora-section,
    .testimonials-section,
    .final-cta-section {
        padding: 60px 0;
    }
    
    .difference-card,
    .diaspora-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
}

/* ================================================
   CONSTRUCTION PAGE - Recent Builds
   ================================================ */

.recent-builds-section {
    padding: 100px 0;
    background-color: #141414;
}

.builds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.build-card {
    background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.build-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.build-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.build-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.build-card:hover .build-image img {
    transform: scale(1.05);
}

.build-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    padding: 20px;
    margin: 0;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-link-arrow {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #703BF7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link-arrow:hover {
    color: #8254F8;
    transform: translateX(5px);
}

/* Project Management Section */
.project-management-section {
    padding: 100px 0;
    background-color: #1A1A1A;
}

.management-content {
    max-width: 1000px;
    margin: 0 auto;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.management-block {
    background: linear-gradient(180deg, #141414 0%, #0F0F0F 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 40px;
}

.management-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
}

.management-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.management-list li {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.8em;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.management-list li:before {
    content: "•";
    color: #703BF7;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

.management-text {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.7em;
    margin-bottom: 20px;
}

.management-highlight {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #703BF7;
    margin: 0;
}

.management-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

/* ================================================
   LAND PAGE - Listings
   ================================================ */

.land-listings-section {
    padding: 100px 0;
    background-color: #141414;
}

.land-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.land-card {
    background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.land-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.land-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.land-location {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.land-details {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 15px;
}

.land-description {
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6em;
    margin-bottom: 20px;
}

.land-price {
    font-family: 'Urbanist', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #703BF7;
    margin-bottom: 20px;
}

.land-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-land {
    flex: 1;
    min-width: 140px;
    padding: 12px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-land-primary {
    background-color: transparent;
    border: 2px solid #703BF7;
    color: #703BF7;
}

.btn-land-primary:hover {
    background-color: #703BF7;
    color: #FFFFFF;
}

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

.btn-land-secondary:hover {
    background-color: #FFFFFF;
    color: #141414;
}

.looking-for-section {
    padding: 80px 0;
    background-color: #1A1A1A;
    text-align: center;
}

.looking-for-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ================================================
   PROPERTIES & PROJECTS PAGE - Additional Styles
   ================================================ */

.properties-section {
    background-color: #141414;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.property-card {
    /* Inherits land-card styles */
}

.tab-intro {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: linear-gradient(180deg, #1A1A1A 0%, #141414 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #703BF7;
    box-shadow: 0px 10px 30px rgba(112, 59, 247, 0.2);
}

.project-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.project-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.project-details {
    font-family: 'Urbanist', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.6em;
    margin-bottom: 15px;
}

.project-status {
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #703BF7;
    margin-bottom: 20px;
}

.btn-project {
    width: 100%;
    padding: 12px 20px;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    background-color: transparent;
    border: 2px solid #703BF7;
    color: #703BF7;
}

.btn-project:hover {
    background-color: #703BF7;
    color: #FFFFFF;
}

/* ================================================
   DIASPORA PAGE - FAQ Section
   ================================================ */

.faq-container {
    max-width: 1000px;
    margin: 60px auto 0;
}

.faq-item {
    background: linear-gradient(180deg, #141414 0%, #0F0F0F 100%);
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #703BF7;
}

.faq-question {
    font-family: 'Urbanist', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.faq-answer {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #CCCCCC;
    line-height: 1.7em;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .builds-grid,
    .land-grid,
    .properties-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .management-block {
        padding: 30px 20px;
    }
    
    .management-buttons {
        flex-direction: column;
    }
    
    .management-buttons .btn-cta-primary,
    .management-buttons .btn-cta-secondary {
        width: 100%;
    }
    
    .land-buttons {
        flex-direction: column;
    }
    
    .btn-land {
        width: 100%;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
}

