/* =====================================================
   GLOBAL RESET
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f8fa;
    color: #172033;
    line-height: 1.5;
}

img {
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
    min-height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eeeeee;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    color: #172033;
}

.logo span {
    color: #e66b35;
}

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

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active,
.navbar nav a.active {
    color: #e66b35;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
}

.add-property {
    border: none;
    background: #172033;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.add-property:hover {
    background: #e66b35;
}

/* =====================================================
   MAIN HOME HERO
===================================================== */

.hero {
    min-height: 620px;
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 86%;
    max-width: 1250px;
    margin: auto;
    color: #ffffff;
}

.hero-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.05;
    margin: 20px 0;
}

.hero h1 span {
    color: #ff9b6c;
}

.hero p {
    max-width: 550px;
    line-height: 1.7;
    font-size: 17px;
}

/* =====================================================
   SEARCH BOX
===================================================== */
.search-box {
    margin-top: 40px;
    max-width: 1000px;
    background: #ffffff;
    color: #172033;
    padding: 12px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.search-item {
    flex: 1;
    padding: 12px 20px;
    border-right: 1px solid #dddddd;
}

.search-item:last-of-type {
    border-right: none;
}

.search-item label {
    display: block;
    color: #888888;
    font-size: 12px;
    margin-bottom: 7px;
}

.search-value {
    font-size: 14px;
    font-weight: 600;
}

.search-btn {
    border: none;
    background: #e66b35;
    color: #ffffff;
    padding: 17px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-btn:hover {
    background: #d45d2b;
}

/* =====================================================
   GENERAL SECTIONS
===================================================== */
.categories,
.properties {
    width: 86%;
    max-width: 1250px;
    margin: auto;
    padding: 90px 0;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
}

.small-title {
    color: #e66b35;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    font-size: 34px;
    margin-top: 8px;
}

.section-heading a {
    text-decoration: none;
    color: #e66b35;
    font-weight: 600;
}

/* =====================================================
   CATEGORIES
===================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 14px;
    border: 1px solid #eeeeee;
    transition: 0.3s ease;
}

.category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

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

.category-card h3 {
    margin-bottom: 8px;
}

.category-card p {
    color: #888888;
    font-size: 13px;
}

/* =====================================================
   FILTERS
===================================================== */

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter {
    border: 1px solid #dddddd;
    background: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.25s ease;
}

.filter:hover {
    border-color: #e66b35;
}

.filter.active {
    background: #172033;
    color: #ffffff;
}

/* =====================================================
   PROPERTY GRID
===================================================== */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.property-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
/* =====================================================
   PROPERTY IMAGE
===================================================== */
.property-image {
    width: 100%;
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.property-status {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e66b35;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 800;
}

.property-status.rent {
    background: #172033;
}

.favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.25s ease;
}

.favorite:hover {
    color: #e66b35;
}
/* =====================================================
   PROPERTY INFO
===================================================== */
.property-info {
    padding: 22px;
}

.property-price {
    color: #e66b35;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.property-price small {
    color: #888888;
    font-size: 12px;
}

.property-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.location {
    color: #777777;
    font-size: 13px;
    margin-bottom: 20px;
}

.property-details {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    color: #777777;
    font-size: 15px;
    flex-wrap: wrap;
}
/* ====================================================
   PROPERTY CARD FOOTER
===================================================== */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 17px;
}

.card-footer button {
    border: none;
    background: none;
    color: #e66b35;
    font-weight: 700;
    cursor: pointer;
}

.pdf-btn {
    display: inline-block;
    padding: 7px 12px;
    background: #172033;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pdf-btn:hover {
    background: #e66b35;
}

.view-details {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d2438;
    color: #ffffff !important;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

.view-details:hover {
    background: #e66a32;
    color: #ffffff !important;
    transform: translateY(-1px);
}
/* =====================================================
   OLD ABOUT SECTION Kept for compatibility with other pages
===================================================== */
.about {
    width: 86%;
    max-width: 1250px;
    margin: 30px auto 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    height: 500px;
    border-radius: 20px;
    background-image: url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1000&q=80");
    background-size: cover;
    background-position: center;
}

.about-content h2 {
    font-size: 52px;
    line-height: 1.2;
    margin: 15px 0;
}

.about-content > p {
    color: #777777;
    line-height: 1.8;
    max-width: 500px;
}

.about-points {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.about-points div {
    display: flex;
    flex-direction: column;
}

.about-points strong {
    font-size: 25px;
}

.about-points span {
    color: #888888;
    font-size: 12px;
    margin-top: 5px;
}

.primary-btn {
    border: none;
    background: #e66b35;
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}
/* =====================================================
   ABOUT US PAGE CURRENT HTML
===================================================== *
/* ---------- About Hero ---------- */
.contact-hero {
    width: 90%;
    max-width: 1200px;
    height: 260px;
    margin: 30px auto 0;
    border-radius: 18px;
    background:
        linear-gradient(
            rgba(24, 40, 75, 0.78),
            rgba(24, 40, 75, 0.78)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.contact-hero-content {
    padding: 20px;
}

.contact-hero-content > span {
    color: #f28b3c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero-content span i {
    margin-right: 6px;
}

.contact-hero-content h1 {
    font-size: 44px;
    margin: 12px 0 8px;
    color: #ffffff;
}

.contact-hero-content p {
    color: #e5e7eb;
    font-size: 14px;
}

/* ---------- About Intro ---------- */
.about-intro {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 90px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-intro-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(24, 40, 75, 0.08);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-intro-image:hover img {
    transform: scale(1.03);
}

.about-intro-content {
    padding: 10px 0;
}

.section-label {
    display: inline-block;
    color: #e66b35;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.about-intro-content h2 {
    color: #18284b;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-intro-content h2 span {
    color: #e66b35;
}

.about-intro-content p {
    color: #6f7480;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-intro-content strong {
    color: #25345d;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px 23px;
    background: #e66b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #d45d2b;
    transform: translateY(-2px);
}
/* =====================================================
   ABOUT STATISTICS
===================================================== */
.about-stats {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #e66b35;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.stat-box i {
    width: 52px;
    height: 52px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25345d;
    color: #ffffff;
    font-size: 18px;
    transition: 0.3s ease;
}

.stat-box:hover i {
    background: #e66b35;
}

.stat-box h3 {
    color: #18284b;
    font-size: 27px;
    margin-bottom: 5px;
}

.stat-box p {
    color: #888888;
    font-size: 12px;
}

/* =====================================================
   WHY CHOOSE US
===================================================== */
.why-us {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 90px;
}

.why-heading {
    max-width: 650px;
    margin: 0 auto 45px;
    text-align: center;
}

.why-heading h2 {
    color: #18284b;
    font-size: 40px;
    line-height: 1.2;
    margin: 8px 0 15px;
}

.why-heading h2 span {
    color: #e66b35;
}

.why-heading p {
    color: #777777;
    font-size: 14px;
    line-height: 1.8;
}

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

.why-card {
    background: #ffffff;
    padding: 35px 28px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: #e66b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25345d;
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s ease;
}

.why-card:hover .why-icon {
    background: #e66b35;
}

.why-card h3 {
    color: #18284b;
    font-size: 17px;
    margin-bottom: 12px;
}

.why-card p {
    color: #777777;
    font-size: 13px;
    line-height: 1.8;
}
/* =====================================================
   ABOUT CTA
===================================================== */
.about-cta {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 90px;
    padding: 55px;
    border-radius: 18px;
    background: #172033;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta > div {
    max-width: 700px;
}

.about-cta span {
    color: #ff9b6c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-cta h2 {
    font-size: 38px;
    line-height: 1.2;
    margin: 12px 0;
}

.about-cta h2 strong {
    color: #ff9b6c;
}

.about-cta p {
    color: #bbbbbb;
    font-size: 14px;
    line-height: 1.7;
}

.about-cta > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 14px 24px;
    background: #e66b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.3s ease;
}

.about-cta > a:hover {
    background: #d45d2b;
    transform: translateY(-2px);
}
/* =====================================================
   GENERIC PAGE HERO For categories/contact pages using .page-hero
===================================================== */
.page-hero {
    width: 90%;
    max-width: 1200px;
    height: 260px;
    margin: 30px auto 0;
    border-radius: 16px;
    background:
        linear-gradient(
            rgba(24, 40, 75, 0.75),
            rgba(24, 40, 75, 0.75)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.page-hero p {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.page-hero p i {
    color: #e66b35;
    margin-right: 5px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-hero span {
    font-size: 14px;
    color: #e5e7eb;
}
/* =====================================================
   SERVICES
===================================================== */
.service-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 70px 0;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 30px 22px;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    text-align: center;
    background: #ffffff;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #f28b3c;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25345d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 20px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #25345d;
}

.service-card p {
    font-size: 12px;
    line-height: 1.8;
    color: #777777;
    margin-bottom: 15px;
}

.service-card a {
    text-decoration: none;
    color: #f28b3c;
    font-size: 12px;
    font-weight: 600;
}
/* =====================================================
   OLD ABOUT SECTION .about-section compatibility
===================================================== */
.about-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-section .about-image {
    width: 100%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    background: none;
}

.about-section .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.about-section .about-image:hover img {
    transform: scale(1.03);
}

.about-section .about-content {
    padding: 10px 0;
}

.about-section .about-label {
    display: inline-block;
    color: #e66b35;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-section .about-content h2 {
    color: #18284b;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-section .about-content > p:not(.about-label) {
    color: #6f7480;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-section .about-stats {
    display: flex;
    gap: 45px;
    margin: 35px 0;
}

.about-section .about-stats div {
    display: flex;
    flex-direction: column;
}

.about-section .about-stats strong {
    color: #e66b35;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about-section .about-stats span {
    color: #888888;
    font-size: 12px;
}

.about-section .primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e66b35;
    color: #ffffff;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-section .primary-link:hover {
    background: #d45d2b;
    transform: translateY(-2px);
}


/* =====================================================
   MODERN CONTACT PAGE
===================================================== */
.new-contact-section {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 85px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.new-contact-info {
    padding-top: 10px;
}

.contact-label {
    display: inline-block;
    color: #e66b35;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.new-contact-info h2 {
    color: #18284b;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.new-contact-info h2 span {
    color: #e66b35;
}

.contact-intro {
    color: #777777;
    font-size: 14px;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 35px;
}

.new-contact-item {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 24px;
}

.new-contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #25345d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: 0.3s ease;
}

.new-contact-item:hover .new-contact-icon {
    background: #e66b35;
    transform: translateY(-2px);
}

.new-contact-item h4 {
    color: #18284b;
    font-size: 14px;
    margin-bottom: 4px;
}

.new-contact-item p {
    color: #777777;
    font-size: 12px;
    line-height: 1.6;
}
/* =====================================================
   MODERN CONTACT FORM
===================================================== */
.new-contact-form {
    background: #ffffff;
    padding: 38px;
    border-radius: 16px;
    border: 1px solid #eeeeee;
    box-shadow: 0 15px 45px rgba(24, 40, 75, 0.09);
}

.form-heading span {
    color: #e66b35;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.form-heading h3 {
    color: #18284b;
    font-size: 27px;
    margin: 8px 0;
}

.form-heading p {
    color: #888888;
    font-size: 12px;
    margin-bottom: 28px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    color: #25345d;
    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e1e3e8;
    background: #fafbfc;
    border-radius: 7px;
    padding: 13px;
    font-family: inherit;
    font-size: 12px;
    color: #333333;
    outline: none;
    transition: 0.25s ease;
}

.form-group input,
.form-group select {
    height: 48px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e66b35;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(230, 107, 53, 0.08);
}

.new-send-btn {
    border: none;
    background: #e66b35;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 7px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s ease;
}

.new-send-btn:hover {
    background: #d45d2b;
    transform: translateY(-2px);
}

.new-send-btn i {
    font-size: 12px;
}
/* =====================================================
   INSTAGRAM BUTTON
==================================================== */
.instagram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    background: #e66b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.instagram-btn:hover {
    background: #d85d28;
    transform: translateY(-2px);
}

.instagram-btn i {
    font-size: 18px;
}
/* =====================================================
   PROPERTY IMAGE CLASSES
===================================================== */
.image-one {
    background-image: url("images/elan_emperor.png");
    background-position: center center;
}

.image-two {
    background-image: url("images/m3m_crown.jpg");
    background-position: center center;
}

.image-three {
    background-image: url("images/sobha_ltd.webp");
    background-position: center center;
}
/* =====================================================
   ELAN IMAGES
===================================================== */
.elan-one {
    background-image: url("./images/elan_emperor.png");
}

/* =====================================================
   M3M IMAGES
===================================================== */
.m3m-one {
    background-image: url("./images/m3m_andrews.webp");
}

.m3m-two {
    background-image: url("./images/m3m_mansion.webp");
}

.m3m-three {
    background-image: url("./images/m3m_crown.jpg");
}
/* =====================================================
   SOBHA IMAGES
===================================================== */
.sobha-one {
    background-image: url("./images/sobha_ltd.webp");
}
/* =====================================================
   M3M PROPERTIES
===================================================== */
.m3m-properties {
    width: 86%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 70px 0 100px;
}

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

.m3m-properties .property-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
}

.m3m-properties .property-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* =====================================================
   ELAN PROPERTIES
===================================================== */
.elan-properties {
    width: 86%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 70px 0 100px;
}

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

.elan-properties .property-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
}

.elan-properties .property-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* =====================================================
   SOBHA PROPERTIES
===================================================== */
.sobha-properties {
    width: 86%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 70px 0 100px;
}

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

.sobha-properties .property-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    overflow: hidden;
}

.sobha-properties .property-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* =====================================================
   PROPERTY DETAILS PAGE
===================================================== */
.property-details-page {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.property-detail-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

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

.property-detail-content {
    padding: 10px;
}

.property-detail-status {
    display: inline-block;
    background: #f47d32;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.property-detail-content h1 {
    font-size: 48px;
    color: #18284b;
    margin: 0 0 10px;
}

.property-location {
    font-size: 15px;
    color: #777777;
    margin-bottom: 30px;
}

.property-detail-content h2 {
    font-size: 25px;
    color: #18284b;
    margin-bottom: 15px;
}

.property-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.property-features {
    display: flex;
    gap: 40px;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 20px 0;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.property-features div {
    display: flex;
    flex-direction: column;
}

.property-features strong {
    font-size: 22px;
    color: #18284b;
}

.property-features span {
    font-size: 12px;
    color: #777777;
    margin-top: 4px;
}

.property-information {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.property-information div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.property-information span {
    font-size: 11px;
    color: #888888;
}

.property-information strong {
    font-size: 13px;
    color: #18284b;
}

.property-contact-btn {
    display: inline-block;
    background: #f47d32;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.property-contact-btn:hover {
    background: #d96520;
}

.property-description-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 40px;
    background: #f7f8fa;
    border-radius: 12px;
}

.property-description-section h2 {
    color: #18284b;
    font-size: 25px;
    margin-bottom: 15px;
}

.property-description-section p {
    color: #666666;
    font-size: 14px;
    line-height: 1.9;
}
/* =====================================================
   SOBHA CRESCENT PROPERTY DETAIL
===================================================== */
.property-detail-hero {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background:
        linear-gradient(
            rgba(8, 18, 30, 0.72),
            rgba(8, 18, 30, 0.72)
        ),
        url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=85");
    background-size: cover;
    background-position: center;
}

.property-detail-overlay {
    color: #ffffff;
    padding: 40px 20px;
}

.property-detail-overlay p {
    color: #d4af37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.property-detail-overlay h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
}

.property-detail-overlay span {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.property-detail {
    background: #f7f8fa;
    padding: 80px 20px;
}

.property-detail-container {
    max-width: 1100px;
    margin: auto;
}

.property-main {
    background: #ffffff;
    padding: 55px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.detail-label {
    display: inline-block;
    color: #b18a25;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.property-main h2 {
    color: #172438;
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.property-main > p {
    color: #555555;
    font-size: 16px;
    line-height: 1.8;
}

.detail-section {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #e8e8e8;
}

.detail-section h3 {
    color: #172438;
    font-size: 24px;
    margin-bottom: 20px;
}

.detail-section ul {
    margin: 0;
    padding-left: 22px;
}

.detail-section li {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.highlight-box {
    padding: 22px 15px;
    background: #f7f5ef;
    border: 1px solid #eee5cd;
    border-radius: 10px;
    text-align: center;
}

.highlight-box strong {
    display: block;
    color: #b18a25;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 7px;
}

.highlight-box span {
    color: #666666;
    font-size: 12px;
}

.lifestyle-text {
    margin-top: 20px;
    color: #172438 !important;
    font-weight: 600;
}

.pricing-box {
    margin-top: 50px;
    padding: 35px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            #172438,
            #263d55
        );
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.pricing-box::after {
    content: "₹";
    position: absolute;
    right: 30px;
    top: 5px;
    font-size: 130px;
    color: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

.pricing-box > span {
    color: #d4af37;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.pricing-box h3 {
    margin: 12px 0 5px;
    font-size: 42px;
}

.pricing-box h3 small {
    font-size: 17px;
    font-weight: 500;
}

.pricing-box p {
    margin: 0 0 15px;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-box strong {
    color: #ffffff;
    font-size: 14px;
}

.investment-section p {
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.property-cta {
    margin-top: 55px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #f7f5ef;
    border-radius: 14px;
}

.property-cta span {
    color: #b18a25;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.property-cta h2 {
    margin: 8px 0 0;
    font-size: 28px;
}

.property-cta h2 strong {
    color: #b18a25;
}

.property-cta a {
    display: inline-block;
    padding: 14px 25px;
    background: #b18a25;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s ease;
}

.property-cta a:hover {
    background: #92721d;
    transform: translateY(-2px);
}
/* ====================================================
   PROPERTY DOCUMENTS
===================================================== */
.property-documents {
    padding: 80px 20px;
    background: #f7f8fa;
}

.documents-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.documents-heading span {
    color: #b18a25;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.documents-heading h2 {
    margin: 10px 0;
    color: #172438;
    font-size: 36px;
}

.documents-heading p {
    color: #666666;
    line-height: 1.7;
}

.documents-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.document-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: 0.3s ease;
}

.document-card:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.document-icon {
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f5ef;
    border-radius: 10px;
    font-size: 25px;
}

.document-card h3 {
    margin: 0 0 7px;
    color: #172438;
}

.document-card p {
    margin: 0 0 15px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.document-btn {
    color: #b18a25;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.document-btn:hover {
    color: #8f701d;
}
/* =====================================================
   FOOTER
===================================================== */
footer {
    background: #111827;
    color: #ffffff;
}

.footer-main {
    width: 86%;
    max-width: 1250px;
    margin: auto;
    padding: 70px 0;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 15px;
    max-width: 250px;
    line-height: 1.6;
}

footer h4 {
    margin-bottom: 20px;
}

footer a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.25s ease;
}

footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #293241;
    text-align: center;
    padding: 20px;
    color: #777777;
    font-size: 12px;
}

.footer-bottom p {
    margin-top: 5px;
}
/* =====================================================
   RESPONSIVE - 1100px
===================================================== */
@media (max-width: 1100px) {
    .navbar {
        padding: 0 5%;
    }
    .nav-links {
        gap: 22px;
    }
    .about-intro {
        gap: 45px;
    }
    .about-intro-content h2 {
        font-size: 37px;
    }
    .about-cta {
        padding: 45px;
    }
}
/* =====================================================
   RESPONSIVE - 900px
===================================================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about {
        grid-template-columns: 1fr;
    }
    .about-section {
        grid-template-columns: 1fr;
    }
    .about-intro {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 70px 0;
    }
    .about-intro-image {
        height: 450px;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 70px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .m3m-properties .property-grid,
    .elan-properties .property-grid,
    .sobha-properties .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-section {
        grid-template-columns: 1fr;
    }
    .new-contact-section {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 65px 0;
    }
    .new-contact-info {
        max-width: 700px;
    }
    .property-details-page {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .property-detail-image {
        height: 400px;
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* =====================================================
   RESPONSIVE - 800px
===================================================== */
@media (max-width: 800px) {
    .about-section {
        width: 90%;
        gap: 40px;
        padding: 60px 0;
    }

    .about-section .about-image {
        height: 380px;
    }

    .about-section .about-content h2 {
        font-size: 34px;
    }

    .about-section .about-stats {
        gap: 30px;
    }

    .page-hero {
        width: 90%;
        height: 220px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .property-detail-hero {
        min-height: 350px;
    }

    .property-detail-overlay h1 {
        font-size: 42px;
    }

    .property-detail-overlay span {
        font-size: 14px;
    }

    .property-detail {
        padding: 45px 15px;
    }

    .property-main {
        padding: 30px 22px;
    }

    .property-main h2 {
        font-size: 30px;
    }

    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-box strong {
        font-size: 18px;
    }

    .pricing-box {
        padding: 28px 22px;
    }

    .pricing-box h3 {
        font-size: 34px;
    }

    .property-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-cta h2 {
        font-size: 24px;
    }

}
/* =====================================================
   RESPONSIVE - 700px
===================================================== */
@media (max-width: 700px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
    .documents-heading h2 {
        font-size: 28px;
    }

    .document-card {
        padding: 22px;
    }
}
/* =====================================================
   RESPONSIVE - 600px
==================================================== */
@media (max-width: 600px) {
    .navbar {
        padding: 0 5%;
    }

    .logo {
        font-size: 20px;
    }

    .add-property {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        width: 90%;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero p {
        font-size: 15px;
    }

    .search-box {
        flex-direction: column;
        align-items: stretch;
    }

    .search-item {
        border-right: none;
        border-bottom: 1px solid #eeeeee;
    }

    .search-item:last-of-type {
        border-bottom: none;
    }

    .search-btn {
        margin-top: 10px;
    }

    .categories,
    .properties {
        width: 90%;
        padding: 60px 0;
    }

    .category-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .about {
        width: 90%;
    }

    .about-image {
        height: 350px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-points {
        gap: 20px;
    }

    .about-intro {
        width: 90%;
        padding: 55px 0;
        gap: 35px;
    }

    .about-intro-image {
        height: 330px;
    }

    .about-intro-content h2 {
        font-size: 31px;
    }

    .about-intro-content p {
        font-size: 14px;
    }

    .about-stats {
        width: 90%;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 60px;
    }

    .stat-box {
        padding: 24px 12px;
    }

    .stat-box h3 {
        font-size: 23px;
    }

    .stat-box p {
        font-size: 11px;
    }

    .why-us {
        width: 90%;
        padding-bottom: 60px;
    }

    .why-heading h2 {
        font-size: 31px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-cta {
        width: 90%;
        padding: 40px 25px;
        margin-bottom: 60px;
    }

    .about-cta h2 {
        font-size: 30px;
    }

    .about-cta > a {
        width: 100%;
    }

    .service-container {
        grid-template-columns: 1fr;
    }

    .m3m-properties,
    .elan-properties,
    .sobha-properties {
        width: 90%;
        padding: 50px 0 70px;
    }

    .m3m-properties .property-grid,
    .elan-properties .property-grid,
    .sobha-properties .property-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        width: 90%;
        height: 210px;
        margin-top: 20px;
    }

    .contact-hero-content h1 {
        font-size: 32px;
    }

    .contact-hero-content p {
        font-size: 12px;
    }

    .new-contact-section {
        width: 90%;
        padding: 50px 0;
    }

    .new-contact-info h2 {
        font-size: 31px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .new-contact-form {
        padding: 25px 20px;
    }

    .form-heading h3 {
        font-size: 23px;
    }

    .property-details-page {
        width: 90%;
        margin: 40px auto;
    }

    .property-detail-image {
        height: 300px;
    }

    .property-detail-content h1 {
        font-size: 36px;
    }

    .property-information {
        grid-template-columns: 1fr;
    }

    .property-description-section {
        padding: 25px;
        margin-bottom: 50px;
    }

    .property-features {
        gap: 25px;
    }

    .footer-main {
        width: 90%;
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   RESPONSIVE - 500px
===================================================== */
@media (max-width: 500px) {
    .logo {
        font-size: 18px;
    }
    .page-hero {
        height: 200px;
    }
    .page-hero h1 {
        font-size: 30px;
    }

    .about-section {
        padding: 45px 0;
    }

    .about-section .about-image {
        height: 300px;
    }

    .about-section .about-content h2 {
        font-size: 29px;
    }

    .about-section .about-content > p:not(.about-label) {
        font-size: 14px;
    }

    .about-section .about-stats {
        gap: 22px;
    }

    .about-section .about-stats strong {
        font-size: 23px;
    }

    .about-intro-content h2 {
        font-size: 28px;
    }

    .about-intro-image {
        height: 280px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px 22px;
    }

    .about-cta h2 {
        font-size: 27px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 25px;
    }

    .property-detail-overlay h1 {
        font-size: 36px;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

    .documents-heading h2 {
        font-size: 26px;
    }

    .document-card {
        flex-direction: column;
    }
}

/* =====================================================
   SMALL MOBILE - 380px
===================================================== */
@media (max-width: 380px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-intro-content h2 {
        font-size: 26px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .about-cta {
        padding: 30px 20px;
    }

    .about-cta h2 {
        font-size: 25px;
    }

}