/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #141414;
    color: #FFFFFF;
    line-height: 1.5;
    padding-top: 0; /* Will be adjusted by header height via JS if needed */
}

/* Ensure content doesn't hide behind fixed header */
.header-clean ~ * {
    padding-top: 0;
}

/* Color Variables */
:root {
    --grey-08: #141414;
    --grey-10: #1A1A1A;
    --grey-15: #262626;
    --grey-20: #333333;
    --grey-30: #4D4D4D;
    --grey-40: #666666;
    --grey-50: #808080;
    --grey-60: #999999;
    --white: #FFFFFF;
    --purple-60: #703BF7;
    --purple-75: #A685FA;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.section-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

/* Buttons */
.btn-primary {
    background-color: var(--purple-60);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background-color: var(--purple-75);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--grey-10);
    color: var(--white);
    border: 1px solid var(--grey-15);
    border-radius: 10px;
    padding: 18px 24px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: var(--grey-15);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--grey-08);
    border-bottom: 1px solid var(--grey-15);
}

.banner {
    background-color: var(--grey-10);
    border-bottom: 1px solid var(--grey-15);
    padding: 18px 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.banner-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    cursor: pointer;
    text-decoration: underline;
}

.banner-close {
    position: absolute;
    right: 160px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav {
    background-color: var(--grey-10);
    padding: 20px 162px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 0;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link.active {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
}

.nav-link:hover {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
}

.contact-btn {
    background-color: var(--grey-08);
    color: var(--white);
    border: 1px solid var(--grey-15);
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: var(--grey-15);
}

/* Hero Section */
.hero {
    background-color: var(--grey-08);
    padding: 100px 0;
}

.hero-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 162px;
}

.hero-content {
    display: flex;
    align-items: stretch;
    gap: 80px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

.hero-title {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-card {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 16px 24px;
    flex: 1;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Services Section */
.services {
    background-color: var(--grey-08);
    padding: 20px;
}

.services-container {
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    box-shadow: 0px 0px 0px 10px rgba(25, 25, 25, 1);
}

.service-card {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid;
    border-image: linear-gradient(41deg, rgba(166, 133, 250, 1) 0%, rgba(166, 133, 250, 0) 31%) 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    text-align: center;
}

.service-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-arrow {
    opacity: 1;
}

/* Section Container */
.section-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 162px;
}

.section-header {
    display: flex;
    align-items: flex-end;
    gap: 200px;
    margin-bottom: 80px;
}

.section-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.abstract-design {
    position: absolute;
    top: -40px;
    left: -20px;
    width: 68.4px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68.4 30"><path d="M0 15c0-8.284 6.716-15 15-15h38.4c8.284 0 15 6.716 15 15s-6.716 15-15 15H15c-8.284 0-15-6.716-15-15z" fill="%23A685FA" opacity="0.3"/></svg>') no-repeat;
    background-size: contain;
}

/* Properties Grid */
.properties-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.property-image {
    width: 100%;
    height: 318px;
    border-radius: 10px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.property-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.property-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.property-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.property-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-tag {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 28px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.feature-tag svg {
    width: 24px;
    height: 24px;
}

.property-footer {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.property-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-60);
}

.price-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

/* Projects Grid */
.projects-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.project-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-image {
    width: 100%;
    height: 318px;
    border-radius: 10px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.project-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.project-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.project-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-footer {
    display: flex;
    justify-content: stretch;
    gap: 50px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: var(--grey-08);
    padding: 100px 0;
}

.why-choose-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 165px;
    display: flex;
    gap: 80px;
    align-items: stretch;
}

.why-choose-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.why-choose-description {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--grey-60);
    text-align: justify;
}

.why-choose-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid var(--grey-15);
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    display: flex;
    justify-content: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
}

.author-location {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

/* FAQ Grid */
.faq-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.faq-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.faq-answer {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
    letter-spacing: -0.6%;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    border-top: 1px solid var(--grey-15);
}

.pagination-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

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

.pagination-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: var(--grey-15);
}

/* Footer */
.footer {
    background-color: var(--grey-08);
}

.footer-cta {
    background-color: var(--grey-08);
    border-bottom: 1px solid var(--grey-15);
    padding: 100px 162px;
    display: flex;
    align-items: center;
    gap: 250px;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 1287px;
    width: 725px;
    height: 394px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 725 394"><path d="M0 0h725v394H0z" fill="%23A685FA" opacity="0.1"/></svg>') no-repeat;
    background-size: contain;
}

.footer-cta::after {
    content: '';
    position: absolute;
    top: 59px;
    left: -20px;
    width: 566px;
    height: 308px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 566 308"><path d="M0 0h566v308H0z" fill="%23A685FA" opacity="0.1"/></svg>') no-repeat;
    background-size: contain;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 250px;
    width: 100%;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.cta-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.footer-main {
    padding: 100px 162px;
}

.footer-container {
    display: flex;
    gap: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 538px;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 60px;
    width: auto;
    display: block;
}

.newsletter {
    width: 100%;
}

.newsletter-input {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 423px;
}

.newsletter-input svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.newsletter-input input {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
    flex: 1;
    outline: none;
}

.newsletter-input input::placeholder {
    color: var(--grey-60);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex: 1;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-column-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--grey-60);
    letter-spacing: -0.6%;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
}

.footer-link-list a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.6%;
    transition: color 0.3s ease;
}

.footer-link-list a:hover {
    color: var(--purple-75);
}

.footer-bottom {
    background-color: var(--grey-10);
    padding: 16px 162px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1216px;
}

.footer-bottom-links {
    display: flex;
    gap: 38px;
    padding: 10px 0;
}

.footer-bottom-links span,
.footer-bottom-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: -0.6%;
}

.footer-bottom-links a:hover {
    color: var(--purple-75);
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.social-icons svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-icons svg:hover {
    color: var(--purple-75);
}

/* Additional Styles for New Pages */

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-detail-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: var(--grey-60);
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-75);
    font-weight: bold;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.why-choose-item {
    text-align: center;
    padding: 30px 20px;
}

.why-choose-icon {
    margin-bottom: 20px;
}

.why-choose-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.why-choose-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
}

.step-number {
    background: linear-gradient(135deg, var(--purple-60), var(--purple-75));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.step-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

/* Properties Page Styles */
.filters-container {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 50px;
}

.property-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.filter-group select,
.filter-group input {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 16px;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--purple-75);
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background-color: var(--purple-60);
    border-color: var(--purple-60);
}

.view-btn:hover {
    background-color: var(--grey-15);
}

.properties-container {
    min-height: 400px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--grey-15);
    border-top: 4px solid var(--purple-75);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.property-type-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.property-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.type-icon {
    margin-bottom: 20px;
}

.type-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.type-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-count {
    font-size: 18px;
    font-weight: 500;
    color: var(--purple-75);
}

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

.featured-property-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.featured-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--purple-60), var(--purple-75));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

/* Projects Page Styles */
.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2;
}

.project-status.completed {
    background-color: #10B981;
    color: var(--white);
}

.project-status.ongoing {
    background-color: #F59E0B;
    color: var(--white);
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.project-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 14px;
    color: var(--grey-60);
}

.detail-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-item {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.stat-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

/* Resources/Blog Page Styles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--purple-60), var(--purple-75));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.article-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--grey-60);
}

.article-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.article-excerpt {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 15px;
    padding: 6px 12px;
    font-size: 12px;
    color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-icon {
    margin-bottom: 20px;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.category-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-count {
    font-size: 18px;
    font-weight: 500;
    color: var(--purple-75);
}

.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.newsletter-signup {
    background: linear-gradient(135deg, var(--grey-08), var(--grey-10));
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 18px;
    color: var(--grey-60);
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.newsletter-input-group input {
    flex: 1;
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 16px;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--purple-75);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--grey-60);
}

/* Single Property/Project Page Styles */
.property-hero,
.project-hero {
    background-color: var(--grey-08);
    padding: 100px 0;
}

.property-hero-container,
.project-hero-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 162px;
}

.property-hero-content,
.project-hero-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.property-hero-text,
.project-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.property-breadcrumb,
.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--grey-60);
}

.property-breadcrumb a,
.project-breadcrumb a {
    color: var(--purple-75);
    text-decoration: none;
}

.property-breadcrumb a:hover,
.project-breadcrumb a:hover {
    text-decoration: underline;
}

.property-hero-title,
.project-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}

.property-hero-location,
.project-hero-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--grey-60);
}

.property-hero-features,
.project-hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--white);
}

.property-hero-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 16px;
    color: var(--grey-60);
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.property-hero-buttons,
.project-hero-buttons {
    display: flex;
    gap: 20px;
}

.property-hero-image,
.project-hero-image {
    flex: 1;
}

.property-hero-image img,
.project-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.project-hero-status {
    display: flex;
    align-items: center;
    gap: 15px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge.completed {
    background-color: #10B981;
    color: var(--white);
}

.status-badge.ongoing {
    background-color: #F59E0B;
    color: var(--white);
}

.completion-date {
    font-size: 16px;
    color: var(--grey-60);
}

.property-details-grid,
.project-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.property-main-content,
.project-main-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.property-description,
.project-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-description-text,
.project-description-text {
    font-size: 18px;
    color: var(--grey-60);
    line-height: 1.7;
}

.features-title,
.specifications-title,
.gallery-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.specification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-15);
}

.spec-label {
    font-size: 16px;
    color: var(--grey-60);
}

.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.property-sidebar,
.project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.agent-card,
.sales-team-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 30px;
}

.agent-title,
.team-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.agent-info,
.team-member {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.agent-avatar,
.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.agent-avatar img,
.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-details,
.member-details {
    flex: 1;
}

.agent-name,
.member-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.agent-position,
.member-position {
    font-size: 14px;
    color: var(--grey-60);
    margin-bottom: 15px;
}

.agent-contact,
.member-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--grey-60);
}

.agent-actions,
.team-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-actions,
.project-actions {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 30px;
}

.actions-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-location,
.project-location {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 30px;
}

.location-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.location-map {
    margin-bottom: 15px;
}

.map-placeholder {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey-60);
}

.location-address {
    font-size: 16px;
    color: var(--grey-60);
}

.project-timeline {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 30px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--grey-30);
    flex-shrink: 0;
}

.timeline-item.completed .timeline-marker {
    background-color: var(--purple-75);
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 14px;
    color: var(--grey-60);
}

.project-gallery {
    margin-top: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px 15px 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: var(--grey-60);
}

.contact-form-container {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--white);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-75);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--purple-75);
}

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

.office-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.office-image {
    height: 200px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.office-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--grey-60);
}

/* About Page Styles */
.story-content {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-size: 18px;
    color: var(--grey-60);
    line-height: 1.7;
}

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

.value-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
    margin-bottom: 20px;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.value-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

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

.team-member {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.member-position {
    font-size: 18px;
    color: var(--purple-75);
    margin-bottom: 15px;
}

.member-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    color: var(--grey-60);
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--purple-75);
}

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

.achievement-card {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.achievement-icon {
    margin-bottom: 20px;
}

.achievement-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.achievement-description {
    font-size: 16px;
    color: var(--grey-60);
    line-height: 1.6;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--grey-08);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--grey-15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--grey-08);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Button Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 1920px) {
    .section-container,
    .hero-container,
    .why-choose-container,
    .footer-cta,
    .footer-main,
    .footer-bottom {
        padding-left: 80px;
        padding-right: 80px;
    }
    
    .nav {
        padding: 20px 80px;
    }
    
    .banner {
        padding: 18px 80px;
    }
    
    .banner-close {
        right: 80px;
    }
}

@media (max-width: 1440px) {
    .section-container,
    .hero-container,
    .why-choose-container,
    .footer-cta,
    .footer-main,
    .footer-bottom {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .nav {
        padding: 20px 40px;
    }
    
    .banner {
        padding: 18px 40px;
    }
    
    .banner-close {
        right: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .cta-title {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .properties-grid,
    .projects-grid,
    .testimonials-grid,
    .faq-grid {
        flex-direction: column;
    }
    
    .section-header {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    
    .services-container {
        flex-direction: column;
    }
    
    .why-choose-container {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-container,
    .hero-container,
    .why-choose-container,
    .footer-cta,
    .footer-main,
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .nav {
        padding: 20px;
    }
    
    .banner {
        padding: 18px 20px;
    }
    
    .banner-close {
        right: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .property-card,
    .project-card,
    .testimonial-card,
    .faq-card {
        padding: 20px;
    }
    
    .service-card {
        padding: 20px 10px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .stat-card {
        padding: 12px 16px;
    }
    
    .stat-number {
        font-size: 32px;
    }
}

/* ============================================ */
/* Contact Page Styles */
/* ============================================ */

/* Contact Hero Section with Background Image */
.contact-hero {
    position: relative;
    width: 100%;
    padding: 150px 162px 100px;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.9) 76%, rgba(20, 20, 20, 1) 100%), 
                url('../images/hero-image.png') no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid var(--grey-15);
}

.contact-hero-container {
    max-width: 1120px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-hero-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
    max-width: 100%;
}

/* Contact Cards Section */
.contact-cards-section {
    padding: 20px 162px;
    background-color: var(--grey-08);
}

.contact-cards-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--purple-60);
    box-shadow: 0 0 0 1px var(--purple-60);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(41deg, rgba(166, 133, 250, 0.1) 0%, rgba(166, 133, 250, 0) 31%);
    border: 1px solid var(--grey-15);
    border-radius: 100px;
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--purple-60);
}

.contact-card-arrow {
    flex-shrink: 0;
    position: absolute;
    right: 20px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--grey-08);
}

.contact-form-wrapper {
    max-width: 1597px;
    margin: 0 auto;
    padding: 0 162px;
}

.contact-form-header {
    margin-bottom: 80px;
    max-width: 1297px;
}

.contact-form-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-form-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.abstract-design-small {
    width: 68.4px;
    height: 30px;
    margin-top: 14px;
    background: linear-gradient(90deg, var(--purple-75) 0%, transparent 100%);
    border-radius: 15px;
    opacity: 0.3;
}

.contact-form {
    background: transparent;
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 100px;
}

.form-group-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-row-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 24px 20px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1111111111111112;
    color: var(--white);
    font-family: 'Urbanist', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group textarea::placeholder {
    color: var(--grey-40);
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-60);
    box-shadow: 0 0 0 2px rgba(112, 59, 247, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 24px 24px;
    padding-right: 54px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.checkbox-container input[type="checkbox"] {
    width: 28px;
    height: 28px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.checkbox-container input[type="checkbox"]:checked {
    background-color: var(--purple-60);
    border-color: var(--purple-60);
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.form-footer .btn-primary {
    padding: 18px 46px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3333333333333333;
    border-radius: 8px;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--grey-08);
}

.map-wrapper {
    max-width: 1597px;
    margin: 0 auto;
    padding: 0 162px;
}

.map-header {
    margin-bottom: 80px;
    max-width: 1297px;
}

.map-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.map-description {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.map-container {
    width: 100%;
    height: 770px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #A3A3A3;
    box-shadow: 0 0 0 8px var(--purple-60);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* ========================================
   PROPERTIES PAGE STYLES
   ======================================== */

/* Properties Hero Section */
.properties-hero {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(20, 20, 20, 0.9) 76%, rgba(20, 20, 20, 1) 100%),
                url('../images/properties/hero-bg.jpg') center/cover no-repeat;
    padding: 150px 0 160px;
    border-bottom: 1px solid var(--grey-15);
    position: relative;
}

.properties-hero-content {
    max-width: 1320px;
    margin: 0 auto 52px;
}

.properties-hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.properties-hero-description {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--grey-60);
    max-width: 1020px;
}

/* Properties Search Container */
.properties-search-container {
    max-width: 1285px;
    margin: 0 auto;
}

.properties-search-bar {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px 12px 0 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 0 0 10px rgba(25, 25, 25, 1);
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--grey-40);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    outline: none;
}

.search-input::placeholder {
    color: var(--grey-40);
}

.search-btn {
    padding: 18px 24px;
    white-space: nowrap;
}

/* Properties Filters */
.properties-filters {
    display: flex;
    gap: 20px;
    padding: 10px;
    background-color: var(--grey-10);
    border-radius: 12px;
}

.filter-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 20px;
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-item:hover {
    background-color: var(--grey-15);
}

.filter-item svg {
    color: var(--grey-60);
    flex-shrink: 0;
}

.filter-divider {
    width: 1px;
    height: 100%;
    background-color: var(--grey-15);
}

.filter-text {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    color: var(--grey-60);
}

.filter-dropdown {
    background: var(--grey-10);
    border: none;
    border-radius: 46px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-dropdown:hover {
    background: var(--grey-15);
}

.filter-dropdown svg {
    color: var(--grey-60);
}

/* Properties Section */
.properties-section {
    padding: 80px 0;
}

.section-header-properties {
    max-width: 1047px;
    margin-bottom: 80px;
    position: relative;
}

.section-title-large {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 14px;
}

.section-description-large {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.abstract-design-small {
    position: absolute;
    top: -40px;
    left: -20px;
    width: 68.4px;
    height: 30px;
    background: url('data:image/svg+xml,<svg width="69" height="30" viewBox="0 0 69 30" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="15" fill="%23666666" opacity="0.3"/><circle cx="45" cy="15" r="15" fill="%23666666" opacity="0.2"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Properties Grid Section */
.properties-grid-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Property Card Large */
.property-card-large {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.3s ease;
}

.property-card-large:hover {
    transform: translateY(-5px);
    border-color: var(--purple-60);
}

.property-image-large {
    width: 100%;
    height: 318px;
    border-radius: 10px;
    overflow: hidden;
}

.property-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.property-card-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.property-tag {
    display: inline-flex;
    padding: 8px 14px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--white);
    align-self: flex-start;
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.property-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.property-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.property-card-footer {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    margin-top: auto;
}

.property-price-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.price-amount {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.property-btn {
    flex: 1;
    padding: 18px 24px;
}

/* Properties Pagination */
.properties-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--grey-15);
}

.pagination-info {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
}

.pagination-controls {
    display: flex;
    gap: 10px;
}

.pagination-btn {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--grey-50);
}

.pagination-btn:hover {
    color: var(--purple-60);
}

/* Inquiry Form Section */
.inquiry-form-section {
    padding: 80px 0;
}

.inquiry-header {
    max-width: 1297px;
    margin-bottom: 80px;
    position: relative;
}

.inquiry-form {
    border: 1px solid var(--grey-15);
    border-radius: 12px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.form-field input,
.form-field select,
.form-field textarea {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    padding: 24px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.11;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--grey-40);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--purple-60);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    padding-right: 50px;
}

.select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey-60);
    pointer-events: none;
}

.form-field-contact {
    grid-column: span 2;
}

.contact-method-options {
    display: flex;
    gap: 16px;
}

.contact-option {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-option:hover {
    border-color: var(--purple-60);
}

.contact-option svg {
    color: var(--grey-60);
    flex-shrink: 0;
}

.contact-option span:not(.radio-indicator) {
    flex: 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.11;
    color: var(--grey-40);
}

.radio-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--purple-60);
    position: relative;
}

.radio-indicator.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--purple-60);
}

.form-field-full {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field-full label {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--white);
}

.form-field-full textarea {
    min-height: 160px;
    resize: vertical;
}

.form-submit-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 28px;
    height: 28px;
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--grey-60);
    cursor: pointer;
}

.btn-submit {
    padding: 18px 46px;
}


/* ========================================
   COASTAL HOMEPAGE STYLES
   ======================================== */

/* Clean Header */
.header-clean {
    background-color: var(--grey-08);
    border-bottom: 1px solid var(--grey-15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.nav-clean {
    padding: 20px 0;
}

.btn-cta-header {
    background-color: var(--purple-60);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-header:hover {
    background-color: var(--purple-75);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(112, 59, 247, 0.3);
}

/* Hero Coastal Section - Updated to Match Figma */
.hero-coastal {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../images/hero-background-a4cdd0.png') center/cover no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-coastal-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.hero-coastal-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    max-width: 1200px;
}

.hero-coastal-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 7px 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.btn-hero-primary {
    background-color: #703BF7;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 24px 28px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 4px 7px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
    background-color: #A685FA;
    transform: translateY(-3px);
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.3), 6px 10px 6px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us - 4 Pillars */
.why-choose-us {
    padding: 120px 0;
    background-color: var(--grey-08);
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-title-main {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--grey-60);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pillar-card {
    background-color: var(--grey-10);
    border: 1px solid var(--grey-15);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-60);
    box-shadow: 0 20px 40px rgba(112, 59, 247, 0.2);
}

.pillar-icon {
    margin-bottom: 24px;
}

.pillar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.pillar-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--grey-60);
}

/* Core Services */
.core-services {
    padding: 120px 0;
    background-color: var(--grey-10);
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-main {
    background-color: var(--grey-08);
    border: 1px solid var(--grey-15);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-main:hover {
    transform: translateY(-8px);
    border-color: var(--purple-60);
    box-shadow: 0 15px 40px rgba(112, 59, 247, 0.2);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(112, 59, 247, 0.1);
    line-height: 1;
}

.service-title-main {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description-main {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--grey-60);
    margin-bottom: 24px;
}

.btn-service {
    background: transparent;
    color: var(--purple-60);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.btn-service:hover {
    color: var(--purple-75);
    transform: translateX(5px);
}

/* Featured Project */
.featured-project {
    padding: 120px 0;
    background-color: var(--grey-08);
}

.featured-project-card {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-project-image {
    position: relative;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}

.featured-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.3) 0%, rgba(20, 20, 20, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
    transition: all 0.4s ease;
}

.featured-project-card:hover .project-overlay {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.2) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.project-overlay-content {
    max-width: 700px;
}

.project-status {
    display: inline-block;
    background-color: var(--purple-60);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.project-overlay-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.project-overlay-description {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.btn-project-view {
    background-color: var(--white);
    color: var(--grey-08);
    border: none;
    border-radius: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-project-view:hover {
    background-color: var(--purple-60);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer CTA Section */
.footer-cta-main {
    background: linear-gradient(135deg, var(--purple-60) 0%, #8c5aff 100%);
    padding: 100px 0;
    text-align: center;
}

.footer-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-cta-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-footer-cta {
    background-color: var(--white);
    color: var(--purple-60);
    border: none;
    border-radius: 10px;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-footer-cta:hover {
    background-color: var(--grey-08);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 24px 0 32px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    padding: 12px 0;
    border-left: 4px solid #703BF7;
    padding-left: 16px;
    background: linear-gradient(90deg, rgba(112, 59, 247, 0.1) 0%, transparent 50%);
}

/* Responsive */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-coastal-title {
        font-size: 42px;
    }
    
    .hero-coastal-subtitle {
        font-size: 18px;
    }
    
    .section-title-main {
        font-size: 36px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }
    
    .featured-project-image {
        height: 400px;
    }
    
    .project-overlay {
        padding: 30px;
    }
    
    .project-overlay-title {
        font-size: 32px;
    }
    
    .footer-cta-title {
        font-size: 36px;
    }
}

/* Footer CTA Section - Updated to Match Figma Design */

.footer-cta-main {
    position: relative;
    background-color: var(--grey-08);
    border-top: 1px solid var(--grey-15);
    border-bottom: 1px solid var(--grey-15);
    padding: 100px 162px;
    overflow: hidden;
}

/* Abstract Design Elements */
.abstract-design-1 {
    position: absolute;
    top: 36px;
    right: 0px;
    width: 725px;
    height: 394px;
    pointer-events: none;
    opacity: 0.6;
}

.abstract-design-2 {
    position: absolute;
    top: 59px;
    left: -20px;
    width: 566px;
    height: 308px;
    pointer-events: none;
    opacity: 0.6;
}

/* Footer CTA Content Container */
.footer-cta-content-figma {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
    max-width: 1200px;
}

/* Footer CTA Text Container */
.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Footer CTA Title */
.footer-cta-title-figma {
    font-family: 'Urbanist', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5em;
    color: #FFFFFF;
    margin: 0;
}

/* Footer CTA Subtitle/Paragraph */
.footer-cta-subtitle-figma {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: #999999;
    margin: 0;
    max-width: 900px;
}

/* Footer CTA Button */
.btn-footer-cta-figma {
    background-color: #703BF7;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 18px 40px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-footer-cta-figma:hover {
    background-color: #A685FA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 59, 247, 0.3);
}

/* Responsive Styles for Footer CTA */

@media (max-width: 1440px) {
    .footer-cta-main {
        padding: 80px 80px;
    }
    
    .abstract-design-1 {
        width: 600px;
        height: 326px;
    }
    
    .abstract-design-2 {
        width: 470px;
        height: 256px;
    }
}

@media (max-width: 1024px) {
    .footer-cta-main {
        padding: 60px 40px;
    }
    
    .footer-cta-title-figma {
        font-size: 40px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 16px;
    }
    
    .abstract-design-1 {
        width: 500px;
        height: 272px;
        opacity: 0.4;
    }
    
    .abstract-design-2 {
        width: 400px;
        height: 218px;
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .footer-cta-main {
        padding: 50px 20px;
    }
    
    .footer-cta-content-figma {
        gap: 30px;
    }
    
    .footer-cta-title-figma {
        font-size: 32px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 15px;
    }
    
    .btn-footer-cta-figma {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
    }
    
    .abstract-design-1,
    .abstract-design-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-cta-main {
        padding: 40px 16px;
    }
    
    .footer-cta-title-figma {
        font-size: 28px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 14px;
    }
    
    .btn-footer-cta-figma {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
}

/* ========================================
   HERO SECTION - DARKEN BACKGROUND & ENHANCE TEXT
   ======================================== */

.hero-coastal {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/hero-background-a4cdd0.png') center/cover no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-coastal-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 80px;
    font-weight: 700;
    line-height: 1.2em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7), 0px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
}

.hero-coastal-subtitle {
    font-family: 'Urbanist', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7), 0px 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
}

/* ========================================
   FOOTER CTA SECTION - UPDATED LAYOUT
   ======================================== */

/* Remove old abstract design styles */
.abstract-design-1,
.abstract-design-2 {
    display: none !important;
}

/* Updated Footer CTA Main Container */
.footer-cta-main {
    position: relative;
    background-color: var(--grey-08);
    border-top: 1px solid var(--grey-15);
    border-bottom: 1px solid var(--grey-15);
    padding: 60px 162px; /* Reduced from 100px */
    overflow: hidden;
}

/* Footer CTA Content - Row Layout with Button on Right */
.footer-cta-content-figma {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 100%;
}

/* Footer CTA Text Container - Takes Available Space */
.footer-cta-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

/* Footer CTA Title - Smaller Size */
.footer-cta-title-figma {
    font-family: 'Urbanist', sans-serif;
    font-size: 38px; /* Reduced from 48px */
    font-weight: 600;
    line-height: 1.5em;
    color: #FFFFFF;
    margin: 0;
}

/* Footer CTA Subtitle - Smaller Size */
.footer-cta-subtitle-figma {
    font-family: 'Urbanist', sans-serif;
    font-size: 16px; /* Reduced from 18px */
    font-weight: 500;
    line-height: 1.5em;
    color: #999999;
    margin: 0;
    max-width: 900px;
}

/* Footer CTA Button - Aligned to Right */
.btn-footer-cta-figma {
    background-color: #703BF7;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    padding: 18px 40px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-footer-cta-figma:hover {
    background-color: #A685FA;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 59, 247, 0.3);
}

/* ========================================
   RESPONSIVE UPDATES
   ======================================== */

@media (max-width: 1440px) {
    .footer-cta-main {
        padding: 50px 80px;
    }
    
    .footer-cta-title-figma {
        font-size: 34px;
    }
}

@media (max-width: 1024px) {
    .footer-cta-main {
        padding: 40px 40px;
    }
    
    .footer-cta-title-figma {
        font-size: 30px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 15px;
    }
    
    .hero-coastal-title {
        font-size: 60px;
    }
    
    .hero-coastal-subtitle {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .footer-cta-main {
        padding: 40px 20px;
    }
    
    .footer-cta-content-figma {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-cta-title-figma {
        font-size: 26px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 14px;
    }
    
    .btn-footer-cta-figma {
        width: 100%;
        max-width: 400px;
    }
    
    .hero-coastal-title {
        font-size: 48px;
    }
    
    .hero-coastal-subtitle {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .footer-cta-main {
        padding: 30px 16px;
    }
    
    .footer-cta-title-figma {
        font-size: 24px;
    }
    
    .footer-cta-subtitle-figma {
        font-size: 13px;
    }
    
    .btn-footer-cta-figma {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-coastal-title {
        font-size: 32px;
    }
    
    .hero-coastal-subtitle {
        font-size: 16px;
    }
}

/* ========================================
   ABSTRACT DESIGNS - VISIBLE WITHOUT BLUE FILL
   ======================================== */

/* Re-enable Abstract Designs and Remove Blue Fill */
.abstract-design-1,
.abstract-design-2 {
    display: block !important;
    position: absolute;
    pointer-events: none;
    /* Remove any fill by making them appear as subtle outlines/strokes */
    opacity: 0.15; /* Very subtle - adjust as needed */
    filter: grayscale(100%) brightness(2); /* Convert to white/grey tones */
    mix-blend-mode: soft-light; /* Blend with background */
}

.abstract-design-1 {
    top: 36px;
    right: 0px;
    width: 725px;
    height: 394px;
}

.abstract-design-2 {
    top: 59px;
    left: -20px;
    width: 566px;
    height: 308px;
}

/* Responsive - Hide on smaller screens if needed */
@media (max-width: 1440px) {
    .abstract-design-1 {
        width: 600px;
        height: 326px;
    }
    
    .abstract-design-2 {
        width: 470px;
        height: 256px;
    }
}

@media (max-width: 1024px) {
    .abstract-design-1 {
        width: 500px;
        height: 272px;
        opacity: 0.1;
    }
    
    .abstract-design-2 {
        width: 400px;
        height: 218px;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .abstract-design-1,
    .abstract-design-2 {
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .abstract-design-1,
    .abstract-design-2 {
        display: none !important;
    }
}

/* ========================================
   REMOVE PURPLE BACKGROUND FROM FOOTER CTA
   ======================================== */

/* Override old purple gradient background */
.footer-cta-main {
    background: var(--grey-08) !important; /* Dark grey background, NO purple */
    background-image: none !important; /* Remove any gradient */
    background-color: #141414 !important; /* Force dark grey */
}

/* ========================================
   FOOTER UPDATES - MATCH FIGMA DESIGN
   ======================================== */

/* Email Input Field - Match Figma */
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background-color: #141414; /* Grey/08 */
    border: 1px solid #262626; /* Grey/15 */
    border-radius: 12px;
    width: 423px;
    max-width: 100%;
}

.newsletter-form svg:first-child {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #999999; /* Grey/60 */
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33em;
    letter-spacing: -0.006em;
}

.newsletter-form input::placeholder {
    color: #999999; /* Grey/60 */
}

.newsletter-form button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.newsletter-form button:hover {
    transform: translateX(2px);
}

.newsletter-form button svg {
    width: 30px;
    height: 30px;
}

/* Footer Bottom - Single Line Layout */
.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 10px 0;
}

.footer-bottom-links span,
.footer-bottom-links a {
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33em;
    letter-spacing: -0.006em;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
}

.footer-bottom-links a:hover {
    color: #A685FA;
    text-decoration: none;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.social-icons a {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Footer Bottom Container Background */
.footer-bottom {
    background-color: #1A1A1A; /* Grey/10 */
    padding: 16px 162px;
}

/* Responsive Updates */
@media (max-width: 1440px) {
    .footer-bottom {
        padding: 16px 80px;
    }
    
    .newsletter-form {
        width: 380px;
    }
}

@media (max-width: 1024px) {
    .footer-bottom {
        padding: 16px 40px;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        padding: 16px 20px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
    
    .footer-bottom-links span,
    .footer-bottom-links a {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 16px 16px;
    }
    
    .footer-bottom-links {
        gap: 12px;
    }
    
    .footer-bottom-links span,
    .footer-bottom-links a {
        font-size: 14px;
    }
    
    .newsletter-form {
        padding: 14px 18px;
    }
    
    .newsletter-form input {
        font-size: 16px;
    }
}

