:root {
    --primary-raw: 8, 8, 8;
    --primary: #080808;
    --light-bg: #FCFCFC;
    --brown: #6C5A19;
    --gold: #FACE0D;

    --text-primary: #333333;
    --text-light: #f5f5f5;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.text-gold {
    color: var(--gold);
}

.text-brown {
    color: var(--brown);
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: var(--primary);
    color: var(--light-bg);
}

.py-5 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-4 {
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    background: #e5bd0c;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 206, 13, 0.4);
}

.btn-secondary {
    background: var(--primary);
    color: var(--gold);
}

.btn-secondary:hover {
    background: #1a1a1a;
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--gold);
}

/* Navbar */
.navbar {
    background: #090909;
    backdrop-filter: blur(10px);
    /* position: fixed; */
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    height: 100% !important;
}

.brand-logo img {
    height: 100% !important;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    color: white;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--brown);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--brown);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-left::after {
    margin: 15px 0 0;
}

/* 1. Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-block: 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.8) 100%);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    color: var(--light-bg);
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    /* color: #e0e0e0; */
    /* text-shadow: 1px 1px 2px rgba(0,0,0,0.5); */
}

/* Hero Search Tabs */
.search-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-tabs {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
}

.search-tab {
    padding: 10px 25px;
    background: rgba(0, 0, 0);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.search-tab.active,
.search-tab:hover {
    background: var(--gold);
    color: var(--primary);
}

.search-box {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.search-box input,
.search-box select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    flex: 1;
    outline: none;
}

.search-box select {
    flex: 0.5;
    background: #f9f9f9;
}

.search-box .btn {
    flex: 0.3;
}

/* 2. Stats Counter Bar */
.stats-bar {
    background: var(--gold);
    padding: 40px 0;
    /* position: relative; */
    z-index: 10;
    /* margin-top: -50px; */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    color: var(--primary);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 3. Properties Carousel & Cards */
.property-carousel-wrap {
    position: relative;
}

.property-carousel {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 20px 5px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.property-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.property-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #eee;
    position: relative;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.property-grid .property-card {
    flex: auto;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.property-img {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-img img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-status {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(8, 8, 8, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    z-index: 2;
}

.property-info {
    padding: 25px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
}

.property-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.property-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.property-meta span i {
    color: var(--brown);
    margin-right: 5px;
}

.property-actions {
    display: flex;
    gap: 10px;
}

.property-actions .btn {
    flex: 1;
    padding: 10px;
}

/* 4. Filter Tabs for Properties */
.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-tab {
    padding: 12px 25px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: #666;
}

.filter-tab.active,
.filter-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 5. CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(250, 206, 13, 0.15) 0%, rgba(250, 206, 13, 0) 70%);
    border-radius: 50%;
}

.cta-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-image {
    flex: 0.4;
    text-align: right;
    position: relative;
    z-index: 2;
}

.cta-image i {
    font-size: 10rem;
    color: rgba(250, 206, 13, 0.2);
}

/* 6. Localities Grid */
.localities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.locality-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.locality-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.locality-card:hover .locality-img {
    transform: scale(1.1);
}

.locality-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    transition: var(--transition);
}

.locality-card:hover .locality-overlay {
    padding-bottom: 30px;
}

.locality-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.locality-props {
    font-size: 0.9rem;
    color: var(--gold);
}

/* 7. Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(250, 206, 13, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brown);
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-content p {
    color: #666;
    font-size: 0.95rem;
}

/* 8. Why Choose Us / How it works */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    position: relative;
}

.split-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.split-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.feature-text p {
    color: #666;
    font-size: 0.95rem;
}

/* Timeline / How it works */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -28px;
    border-left-color: #fff;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -28px;
    border-right-color: #fff;
    transform: translateY(-50%);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 8px #f9f9f9;
    z-index: 2;
}

/* 11. Testimonials */
.testimonials-wrapper {
    background: var(--primary);
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.testimonials-wrapper .section-title {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(250, 206, 13, 0.1);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    color: #ddd;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.client-details h4 {
    color: #fff;
    margin-bottom: 2px;
}

.client-details p {
    color: #aaa;
    font-size: 0.85rem;
}

/* 12. Popular Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.project-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-type {
    color: var(--brown);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-name {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.project-loc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.project-price {
    font-weight: 700;
    color: var(--primary);
}

/* 14. FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: #666;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
    /* arbitrary max-height for animation */
}

/* 15. Contact Section */
.contact-wrapper {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 60px 40px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.contact-info p {
    color: #ccc;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    min-width: 40px;
    height: 40px;
    background: rgba(250, 206, 13, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item span {
    color: #ccc;
}

.contact-form {
    flex: 1.5;
    padding: 60px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: var(--brown);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(108, 90, 25, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Mega Footer */
.mega-footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-about p {
    color: #bbb;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #fff;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    color: var(--primary);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .search-box {
        flex-direction: column;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-end;
    }

    .timeline-content {
        width: calc(100% - 80px);
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -28px;
        border-right-color: #fff;
        border-left-color: transparent;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 40px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .search-tabs {
        flex-wrap: wrap;
    }

    .search-tab {
        flex: 1;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 40px 20px;
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }

    .cta-image {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }
}


/* custom css */
#hero-carousel img {
    width: 100%;
}

.hero-title,
.hero-title+p {
    text-align: center;

}

body {
    /* padding-top: 80px; */
}

/* icon-bar */
.icon-bar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.icon-bar a:hover {
    background-color: #000;
}

.facebook {
    background: #3B5998;
    color: white;
}

.instagram {
    background: #ee2a7b;
    color: white;
}

.google {
    background: #dd4b39;
    color: white;
}

.phone {
    background: #007bb5;
    color: white;
}

.youtube {
    background: #bb0000;
    color: white;
}

/* icon-bar */

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    padding: 20px;
}

lite-youtube {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#dm-spic {
    width: 100%;
}



/* Layout & Container */
.csk-container {
    max-width: 1152px; /* Equivalent to 6xl */
    margin-left: auto;
    margin-right: auto;
    padding: 2rem; /* Equivalent to p-8 */
}

.csk-title {
    font-size: 2.25rem; /* Equivalent to text-4xl */
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
    color: var(--primary);
}

/* Filter Navigation */
.csk-filter-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.csk-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280; /* Neutral gray */
}

.csk-filter-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ffffff;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-primary);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
}

.csk-filter-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
}

.csk-filter-btn.csk-active {
    outline: 2px solid var(--brown);
    font-weight: 600;
    color: var(--brown);
}

/* Empty State */
.csk-empty-state {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.csk-empty-text {
    color: #6b7280;
    font-size: 1.125rem;
    margin: 0;
}

/* Property Grid */
.csk-property-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .csk-property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .csk-property-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Property Card */
.csk-property-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.csk-property-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.csk-card-body {
    padding: 1.5rem;
    flex: 1 1 auto;
}

/* Badges */
.csk-badge-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.csk-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
}

.csk-badge-category {
    background-color: rgba(108, 90, 25, 0.1); /* 10% opacity of --brown */
    color: var(--brown);
}

.csk-badge-tag {
    background-color: rgba(250, 206, 13, 0.15); /* 15% opacity of --gold */
    color: #5c4400; /* Darkened gold contrast for readability */
}

/* Card Content & Footer */
.csk-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--primary);
}

.csk-card-footer {
    background-color: var(--light-bg);
    padding: 1rem 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.csk-card-link {
    color: var(--brown);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition);
}

.csk-card-link:hover {
    color: var(--primary);
}




:root {
    --primary-raw: 8, 8, 8;
    --primary: #080808;
    --light-bg: #FCFCFC;
    --brown: #6C5A19;
    --gold: #FACE0D;

    --text-primary: #333333;
    --text-light: #f5f5f5;

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Container Card */
.csk-container {
    /*max-width: 48rem; */
    /* 768px (max-w-3xl) */
    margin: 3rem auto; /* my-12 */
    /*background-color: #ffffff;*/
    /*border-radius: 1rem;*/
    /*box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);*/
    /*border: 1px solid #e5e7eb;*/
    padding: 2rem;
}

@media (min-width: 768px) {
    .csk-container {
        padding: 3rem;
    }
}

/* Back Link Navigation */
.csk-back-link {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brown);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.csk-back-link:hover {
    color: var(--primary);
}

/* Badges Layout & Styles */
.csk-badge-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.csk-badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
}

.csk-badge-category {
    color: var(--brown);
    background-color: rgba(108, 90, 25, 0.1); /* 10% opacity of brown */
}

.csk-badge-tag {
    color: #8C731F; /* Darker gold representation for accessible reading contrast */
    background-color: rgba(250, 206, 13, 0.15); /* 15% opacity of gold */
}

/* Main Page Title */
.csk-title {
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--primary);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .csk-title {
        font-size: 2.25rem;
    }
}

/* Content Spacing (Tailwind space-y-6 behavior) */
.csk-content-wrapper > * + * {
    margin-top: 1.5rem;
}

/* Content Blocks elements */
.csk-heading {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.csk-paragraph {
    font-size: 1rem;
    line-height: 1.75;
    color: #555555;
    white-space: pre-line;
}

/* Image Gallery Layout */
.csk-gallery {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 640px) {
    .csk-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.csk-gallery-item {
    overflow: hidden;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.csk-gallery-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: var(--transition);
}

.csk-gallery-img:hover {
    transform: scale(1.05);
}















