* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-red: #d9232a;
    --navy-blue: #0b1b3d;
    --dark-navy: #07122b;
    --slate-grey: #58595b;
    --light-grey: #f4f6f8;
    --border-color: #e2e8f0;
    --dark-grey: #1a1a1a;
    --accent-yellow: #f5b027;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 45px;
    width: auto;
}

.brand-text h1 {
    font-size: 22px;
    color: var(--navy-blue);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.brand-text span {
    color: var(--primary-red);
}

.brand-text p {
    font-size: 11px;
    color: var(--slate-grey);
    font-style: italic;
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

nav a {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 14px;
    transition: 0.3s;
    padding: 6px 2px;
    position: relative;
}

nav a:hover {
    color: var(--primary-red);
}

nav a.active {
    color: var(--primary-red);
    font-weight: 700;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.btn-contact {
    background-color: var(--primary-red);
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(217, 35, 42, 0.3);
}

.btn-contact::after {
    display: none !important;
}

.btn-contact:hover {
    background-color: #b51a20;
}

.hero {
    background: linear-gradient(rgba(7, 18, 43, 0.85), rgba(7, 18, 43, 0.85)),
        url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 90px 20px 80px;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero p.subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.92;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.search-box {
    background: white;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    max-width: 750px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    flex-wrap: wrap;
    align-items: center;
}

.search-box select {
    flex: 1;
    min-width: 180px;
    padding: 13px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #333;
    background-color: #fff;
    font-weight: 500;
}

.search-box input {
    flex: 2;
    min-width: 220px;
    padding: 13px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    color: #333;
    font-weight: 500;
}

.search-box select:focus,
.search-box input:focus {
    border-color: var(--primary-red);
}

.search-box button {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-box button:hover {
    background: #b51a20;
}

.btn-hero-secondary {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 10px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--navy-blue);
}

.page-banner {
    background: linear-gradient(rgba(11, 27, 61, 0.88), rgba(11, 27, 61, 0.88)),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.page-banner h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.page-banner p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trust-bar {
    background: var(--navy-blue);
    color: white;
    padding: 14px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 4px solid var(--primary-red);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    color: var(--accent-yellow);
    font-size: 15px;
}

.section-container {
    max-width: 1240px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    color: var(--navy-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title p {
    color: var(--slate-grey);
    font-size: 15px;
    margin-top: 4px;
}

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

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

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

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.card-tag.tag-sale {
    background: var(--navy-blue);
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 17px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-location {
    font-size: 13px;
    color: var(--slate-grey);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 18px;
    font-size: 12px;
    color: #444;
    background: var(--light-grey);
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
}

.btn-view {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--primary-red);
    color: white;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    margin-top: auto;
}

.btn-view:hover {
    background: #b51a20;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.service-box {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-red);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(217, 35, 42, 0.08);
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
}

.service-box h3 {
    font-size: 17px;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-box p {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

.service-btn {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    background: var(--light-grey);
    color: var(--navy-blue);
    font-size: 12px;
    font-weight: 700;
    transition: 0.3s;
    margin-top: auto;
    text-transform: uppercase;
}

.service-btn:hover {
    background: var(--primary-red);
    color: white;
}

.title-banner {
    background: var(--navy-blue);
    color: white;
    padding: 35px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.title-banner h3 {
    font-size: 20px;
    font-weight: 700;
}

.title-banner p {
    opacity: 0.9;
    font-size: 14px;
    margin-top: 4px;
}

.btn-consult-now {
    background: white;
    color: var(--navy-blue);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-consult-now:hover {
    background: var(--primary-red);
    color: white;
}

.choose-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.why-choose-box h2 {
    font-size: 28px;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.why-choose-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-list li {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-list li i {
    color: var(--navy-blue);
    font-size: 18px;
}

.questionnaire-form-card {
    background: var(--navy-blue);
    padding: 30px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 10px 30px rgba(11, 27, 61, 0.25);
}

.questionnaire-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.questionnaire-form-card input,
.questionnaire-form-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 14px;
    background: white;
    color: #333;
}

.questionnaire-form-card textarea {
    height: 100px;
    resize: none;
    margin-bottom: 20px;
}

.btn-get-in-touch {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-get-in-touch:hover {
    background: #b51a20;
}

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

.workflow-step {
    background: white;
    padding: 28px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--navy-blue);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.workflow-step .step-number {
    width: 38px;
    height: 38px;
    background: var(--primary-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 14px;
    font-size: 15px;
}

.workflow-step h4 {
    font-size: 16px;
    color: var(--navy-blue);
    margin-bottom: 8px;
    font-weight: 700;
}

.workflow-step p {
    font-size: 13px;
    color: #666;
}

.footer-contact-strip {
    background: #fff;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-blue);
}

.footer-contact-strip i {
    color: var(--primary-red);
    margin-right: 6px;
}

footer {
    background: var(--dark-navy);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.footer-col h4 {
    font-size: 15px;
    color: var(--primary-red);
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-col p {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col i {
    width: 20px;
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid #1a2744;
    font-size: 12px;
    color: #888;
}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.cert-preview-img {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.cert-preview-img:hover {
    transform: scale(1.03);
    opacity: 0.95;
    box-shadow: 0 8px 25px rgba(217, 35, 42, 0.2);
}

.cert-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(7, 18, 43, 0.92);
    backdrop-filter: blur(6px);
}

.cert-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 82vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid white;
    animation: certZoomIn 0.3s ease-out;
}

.cert-modal-caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.cert-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 42px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    line-height: 1;
    z-index: 2001;
}

.cert-modal-close:hover {
    color: var(--primary-red);
}

@keyframes certZoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 992px) {
    .hero h2 {
        font-size: 34px;
    }
    .choose-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 14px;
        padding: 12px 15px;
    }

    .brand-text h1 {
        font-size: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 8px 12px;
    }

    nav a {
        font-size: 13px;
        padding: 4px 2px;
    }

    .btn-contact {
        padding: 6px 14px !important;
        font-size: 12px !important;
        box-shadow: none;
        display: inline-flex;
        align-items: center;
    }

    .hero {
        padding: 50px 15px 40px;
    }

    .hero h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero p.subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .search-box {
        flex-direction: column;
        width: 100%;
        padding: 12px;
    }

    .search-box select,
    .search-box input,
    .search-box button {
        width: 100%;
        flex: unset;
    }

    .trust-bar {
        gap: 12px 18px;
        font-size: 12px;
        text-align: center;
    }

    .section-container {
        margin: 35px auto;
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .title-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

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

    .questionnaire-form-card {
        padding: 22px 18px;
    }

    .footer-contact-strip {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 22px;
    }

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

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

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

.admin-login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 18, 43, 0.95);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-login-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary-red);
}

.admin-login-box h3 {
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.admin-login-box p {
    color: var(--slate-grey);
    font-size: 13px;
    margin-bottom: 25px;
}

.admin-pin-input {
    width: 100%;
    padding: 14px;
    font-size: 20px;
    letter-spacing: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    outline: none;
    font-weight: 700;
}

.admin-pin-input:focus {
    border-color: var(--primary-red);
}

.btn-admin-login {
    width: 100%;
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-admin-login:hover {
    background: #b51a20;
}

.admin-dashboard-container {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 20px;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
}

@media (max-width: 992px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.admin-card h3 {
    font-size: 20px;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-form-group {
    margin-bottom: 18px;
}

.admin-form-group label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy-blue);
    margin-bottom: 6px;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.admin-form-group input:focus,
.admin-form-group select:focus,
.admin-form-group textarea:focus {
    border-color: var(--primary-red);
}

.img-preview-box {
    width: 100%;
    height: 180px;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 10px;
    color: var(--slate-grey);
    font-size: 13px;
    font-weight: 600;
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 13px;
}

.admin-table th {
    background: var(--light-grey);
    color: var(--navy-blue);
    font-weight: 700;
    text-transform: uppercase;
}

.admin-thumb {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: 4px;
}

.btn-action-edit {
    background: #0b1b3d;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-right: 5px;
}

.btn-action-delete {
    background: var(--primary-red);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.btn-action-edit:hover { background: #162b58; }
.btn-action-delete:hover { background: #b51a20; }

.prop-details-container {
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 20px;
}

.prop-details-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .prop-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.prop-photo-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.prop-main-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .prop-main-photo {
        height: 280px;
    }
}

.prop-info-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.prop-info-card h1 {
    font-size: 28px;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
}

.prop-info-card .location-bar {
    font-size: 15px;
    color: var(--slate-grey);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.prop-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin: 25px 0;
}

.prop-spec-pill {
    background: var(--light-grey);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border-color);
}

.prop-cta-sidebar {
    position: sticky;
    top: 90px;
}

.cta-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    border-top: 5px solid var(--primary-red);
}

.cta-box h3 {
    font-size: 20px;
    color: var(--navy-blue);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 14px;
    color: var(--slate-grey);
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-book-wa {
    display: block;
    width: 100%;
    background: #25d366;
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 12px;
    transition: 0.3s;
}

.btn-book-wa:hover {
    background: #1eb857;
}

.btn-call-agent {
    display: block;
    width: 100%;
    background: var(--navy-blue);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-call-agent:hover {
    background: #162b58;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: var(--accent-yellow);
    font-size: 16px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--navy-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.author-info h5 {
    font-size: 15px;
    color: var(--navy-blue);
    font-weight: 700;
}

.author-info p {
    font-size: 12px;
    color: var(--slate-grey);
}

.faq-accordion {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.faq-question {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: 0.3s;
}

.faq-question:hover {
    background: var(--light-grey);
}

.faq-answer {
    padding: 0 22px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: none;
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.badge-inquiry-new {
    background: #ef4444;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-inquiry-contacted {
    background: #10b981;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.admin-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .admin-tabs-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
}

.admin-tab-btn {
    width: auto;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 6px;
    color: white;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.btn-tab-red { background: var(--primary-red); }
.btn-tab-navy { background: var(--navy-blue); }
.btn-tab-green { background: #059669; }
.btn-tab-amber { background: #d97706; }
.btn-tab-cyan { background: #0891b2; }
.btn-tab-blue { background: #2563eb; }
.btn-tab-purple { background: #7c3aed; }

.admin-tab-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .admin-dashboard-container {
        padding: 15px 10px;
        margin: 10px auto;
    }
    
    .admin-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .admin-card h3 {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .admin-tabs-nav {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 8px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .admin-tabs-nav::-webkit-scrollbar {
        display: none;
    }

    .admin-tab-btn {
        flex: 0 0 auto;
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 25px;
    }

    .admin-form-group input,
    .admin-form-group select,
    .admin-form-group textarea {
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Native Mobile App Card Transformation for Admin Tables */
    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table tr {
        background: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 16px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .admin-table td {
        padding: 6px 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
    }

    .admin-table td:first-child {
        justify-content: center;
        margin-bottom: 10px;
    }

    .admin-thumb {
        width: 100%;
        height: 150px;
        border-radius: 8px;
        object-fit: cover;
    }

    .admin-table td[style*="white-space: nowrap"],
    .admin-table td:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px dashed var(--border-color);
    }

    .admin-table td button {
        flex: 1;
        min-width: 80px;
        padding: 10px 6px !important;
        font-size: 12px !important;
        text-align: center;
        margin: 0 !important;
        border-radius: 6px !important;
    }

    .admin-login-box {
        width: 92%;
        padding: 25px 18px;
        border-radius: 12px;
    }

    .admin-pin-input {
        font-size: 22px;
        letter-spacing: 6px;
        padding: 12px;
    }

    .btn-admin-login {
        height: 48px;
        font-size: 14px;
    }
}





