/* Base Styling */
html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    background-color: #f8fdfb;
    color: #003c34;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1200;
}

.navbar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    min-height: 80px;
    gap: 12px;
}

.navbar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.logo {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.logo a {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    display: block;
}

.logo img {
    height: 44px;
    width: auto;
    display: block;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.logo span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #004c46;
}

/* Nav Links */
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #004c46;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 10px 6px;
    display: inline-block;
}

.nav-links a:hover {
    color: #2b7c6c;
}

/* Dropdown Arrow */
.nav-links li.dropdown>a::after {
    content: "▼";
    font-size: 0.6rem;
    margin-left: 5px;
    color: #004c46;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover>a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 200px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: #004c46;
    font-weight: 500;
    font-size: 0.92rem;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #e0f0ea;
    color: #2b7c6c;
}

/* Show dropdown on hover */
.nav-links li.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.navbar-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.nav-button {
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.login-btn {
    background-color: transparent;
    color: #004c46;
    border-color: #004c46;
}

.login-btn:hover {
    background-color: #eaf5f2;
}

.register-btn {
    background-color: #004c46;
    color: white;
    border-color: #004c46;
}

.register-btn:hover {
    background-color: #2b7c6c;
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 30px;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background-color: #eaf5f2;
    padding: 100px 30px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../images/pattern.png");
    background-repeat: repeat;
    background-size: 600px;
    opacity: 0.10;
    z-index: 0;
}

.hero h1,
.hero p {
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.2rem;
    color: #2b7c6c;
    max-width: 700px;
    line-height: 1.6;
}

/* Trust Icons */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: white;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.trust-box {
    background-color: #e0f0ea;
    color: #004c46;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* Video Section */
.video-section {
    background-color: #f6fbf9;
    padding: 60px 20px;
    text-align: center;
}

.video-title {
    font-size: 2rem;
    color: #004c46;
    margin-bottom: 30px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.video-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Desktop navbar stays single-row; mobile uses drawer */

/* Hide mobile-only elements on desktop */
@media (min-width: 901px) {
    .nav-links .mobile-auth {
        display: none !important;
    }

    .drawer-logo {
        display: none !important;
    }
}

/* Remove bullets from all nav and dropdown lists */
.nav-links,
.nav-links ul,
.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Hero Section */
.hero-section {
    background-color: #eaf5f2;
    padding: 100px 30px;
    text-align: center;
}

/* Override for find-property page - white text on green background */
.find-property .hero-section {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #004c46;
    margin-bottom: 12px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #2b7c6c;
    max-width: 700px;
    margin: 0 auto;
}


/* Override for services page hero subtitle */
.hero-section .hero-subtitle {
    color: white !important;
}

/* Steps Wrapper */
.steps-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 30px;
    background-color: #fff;
}

.step-box {
    width: 320px;
    background: #f0faf6;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.step-box h3,
.step-box p {
    padding: 0 20px 16px;
}

.step-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #003c34;
}

.step-box p {
    font-size: 0.95rem;
    color: #555;
}

/* Visual Illustration Section */
.visual-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 70px 30px;
    gap: 40px;
    background-color: #f8fdfb;
}

.visual-text {
    flex: 1;
    max-width: 500px;
}

.visual-text h2 {
    font-size: 2rem;
    color: #004c46;
    margin-bottom: 15px;
}

.visual-text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

.visual-image img {
    max-width: 400px;
    border-radius: 12px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-button {
    padding: 12px 24px;
    background-color: #004c46;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2b7c6c;
}




.form-section,
.filter-section {
    padding: 50px 20px;
    max-width: 1000px;
    margin: auto;
}

.property-form,
.filters {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.property-form input,
.property-form select,
.property-form textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.property-form button,
.filters button {
    padding: 10px 18px;
    background-color: #004c46;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.property-form button:hover,
.filters button:hover {
    background-color: #2b7c6c;
}

.note {
    font-size: 0.9rem;
    background: #eaf5f2;
    padding: 12px 16px;
    border-radius: 8px;
    color: #004c46;
    margin-top: 10px;
}

.basic-tools {
    margin-top: 40px;
    background-color: #eaf5f2;
    padding: 20px;
    border-radius: 10px;
}

.basic-tools h3 {
    color: #004c46;
    margin-bottom: 10px;
}

.basic-tools ul {
    list-style: none;
    padding-left: 0;
}

.basic-tools li {
    margin-bottom: 6px;
    font-weight: 500;
    color: #004c46;
}

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

.property-card {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0f0ea;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.property-card h4 {
    color: #004c46;
    margin-bottom: 10px;
}

.property-card button {
    background-color: #004c46;
    color: white;
    padding: 8px 14px;
    border: none;
    border-radius: 6px;
    margin-top: 12px;
    cursor: pointer;
}








.map-filters-section {
    padding: 60px 20px;
    background: #f6fbf9;
}

.map-filter-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media(min-width: 768px) {
    .map-filter-container {
        flex-direction: row;
    }

    .map-box,
    .filters-box {
        flex: 1;
    }

    .filters-box {
        padding-left: 40px;
    }
}

.listing-form input,
.listing-form select,
.listing-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.listing-form button {
    background-color: #004c46;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.listing-form button:hover {
    background-color: #2b7c6c;
}

.note {
    background: #eaf5f2;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    color: #004c46;
}

.tools-section {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

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

.tools-list li {
    margin: 8px 0;
    font-weight: 600;
    color: #004c46;
}





.filter-select {
    padding: 10px 14px;
    border: 1.5px solid #c5ded8;
    border-radius: 8px;
    font-size: 0.95rem;
    min-width: 180px;
    color: #004c46;
    font-family: 'Quicksand', sans-serif;
}

.filter-select:focus {
    outline: none;
    border-color: #2b7c6c;
    box-shadow: 0 0 5px rgba(43, 124, 108, 0.2);
}



/* =============================== */
/* 🌍 FIND PROPERTY PAGE ENHANCEMENTS */
/* =============================== */

/* Map Box */
.map-box {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

/* Map Styling */
#map {
    height: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 16px;
}

/* Filter Box */
.filter-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.filter-box label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #004c46;
    margin-bottom: 6px;
    display: inline-block;
}

.filter-box .filter-select {
    margin-bottom: 18px;
}

/* Responsive Adjustments for Find Property Layout */
@media (max-width: 768px) {
    .map-filter-container {
        flex-direction: column;
    }

    .map-box,
    .filter-box {
        width: 100%;
    }

    #map {
        height: 400px;
    }
}

/* =============================== */
/* AUTH PAGES — SHARED STYLES                                        */
/* =============================== */

.auth-wrapper {
    display: flex;
    gap: 0;
    min-height: calc(100vh - 80px);
}

.auth-side {
    flex: 1 1 50%;
    background: linear-gradient(135deg, seagreen 0%, #2e8b57 40%, #3aa574 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.auth-side .quote {
    max-width: 560px;
}

.auth-side .quote p {
    font-size: 20px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.auth-side .quote .author {
    opacity: 0.9;
    font-weight: 600;
}

.auth-side .quote h2 {
    margin: 0 0 16px;
    font-size: 32px;
}

.auth-form {
    flex: 1 1 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.auth-card {
    width: 100%;
    max-width: 560px;
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-title {
    font-size: 40px;
    margin: 0 0 8px;
}

.auth-subtle {
    color: #6b7280;
    font-size: 14px;
}

.auth-subtle a {
    color: seagreen;
    text-decoration: none;
}

.auth-subtle a:hover {
    text-decoration: underline;
}

.google-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.google-logo {
    height: 18px;
    width: auto;
}

.or-sep {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #9ca3af;
}

.or-sep::before,
.or-sep::after {
    content: "";
    height: 1px;
    background: #e5e7eb;
    display: block;
}

.auth-form .form {
    display: grid;
    gap: 14px;
}

.field {
    position: relative;
}

.field i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
}

.input {
    width: 100%;
    padding: 12px 14px 12px 40px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
}

.input:focus {
    outline: none;
    border-color: seagreen;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.15);
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.form-row a {
    color: seagreen;
    text-decoration: none;
}

.form-row a:hover {
    text-decoration: underline;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-btn {
    width: 100%;
    background: seagreen;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.submit-btn:hover {
    filter: brightness(0.95);
}

.brand-mark {
    height: 28px;
    margin-bottom: 24px;
    opacity: .95;
}

.brand-mark-invert {
    filter: invert(1);
}

@media (max-width: 960px) {
    .auth-wrapper {
        flex-direction: column;
    }

    .auth-side {
        min-height: 260px;
        padding: 32px;
    }
}

/* AUTH — REGISTER PAGE GRID */
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.auth-grid .span-2 {
    grid-column: 1 / -1;
}

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

/* =============================== */
/* FORGOT PASSWORD PAGE                                              */
/* =============================== */
.reset-section {
    max-width: 560px;
    margin: 48px auto;
    padding: 24px;
}

.muted {
    color: #6b7280;
}

.reset-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.reset-input {
    padding: 12px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.reset-btn {
    background: seagreen;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
}

/* =============================== */
/* PRIVACY POLICY PAGE                                                 */
/* =============================== */
.policy-page {
    background: #f6fbf9;
    padding: 60px 20px;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e0f0ea;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    padding: 32px 28px;
}

.policy-container h1 {
    color: #004c46;
    margin-top: 0;
}

.policy-container h2 {
    color: #004c46;
    margin-top: 28px;
}

.policy-container h3 {
    color: #2b7c6c;
    margin-top: 18px;
}

.policy-container p {
    color: #334155;
    line-height: 1.7;
}

.policy-updated {
    color: #6b7280;
    font-size: 0.95rem;
}

.policy-list {
    padding-left: 20px;
}

.policy-list li {
    margin: 6px 0;
    color: #04463f;
}


.toastContain {
    position: fixed;
    left: 50%;
    bottom: 64px;
    transform: translateX(-50%);
    z-index: 9999;
    width: auto;
    min-width: 18rem;
}

.toast {
    opacity: 0;
    min-height: 2rem;
    margin-top: -40px;
    border-radius: 8px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    color: #0f172a;
    transform: scale(0.92) translateY(50px);
    transition: margin-top 0.5s ease, transform 0.5s ease, opacity 0.5s ease;
    font-weight: 600;
}

.toast.open {
    margin-top: 8px;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: #cde7db;
    background: #f3fbf7;
    color: #14532d;
}

.toast.failure {
    border-color: #f5c2c7;
    background: #fff5f5;
    color: #7f1d1d;
}

.toast.warning {
    border-color: #fde68a;
    background: #fffbeb;
    color: #78350f;
}

.toast.info {
    border-color: #bae6fd;
    background: #f0f9ff;
    color: #0c4a6e;
}


.why-hostbridge-section {
    background: #ffffff;
    padding: 80px 20px;
    margin-top: 60px;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-title {
    color: #004c46;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 60px 0;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0f0ea;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 139, 87, 0.15);
    border-color: #2E8B57;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: #2E8B57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #236b43;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.feature-title {
    color: #004c46;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.feature-description {
    color: #2b7c6c;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Why HostBridge Section */
@media (max-width: 768px) {
    .why-hostbridge-section {
        padding: 60px 20px;
    }

    .why-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .feature-icon {
        width: 90px;
        height: 90px;
    }

    .feature-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .why-container {
        padding: 0 16px;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 24px 20px;
    }
}

/* =============================== */
/* VERIFICATION SECTION                                              */
/* =============================== */
.verification-section {
    background: linear-gradient(135deg, #eaf5f2 0%, #f8fdfb 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

.verification-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.verification-title {
    color: #004c46;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.verification-subtitle {
    color: #2b7c6c;
    font-size: 1.1rem;
    margin: 0 0 60px 0;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.verification-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid #e0f0ea;
    transition: all 0.3s ease;
    text-align: center;
}

.verification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 139, 87, 0.15);
    border-color: #2E8B57;
}

.verification-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.verification-card-title {
    color: #004c46;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.verification-card-text {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5f0;
    color: #2E8B57;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.verification-badge i {
    font-size: 0.9rem;
}

/* Verification Process Timeline */
.verification-process {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.process-title {
    color: #004c46;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

.step-number-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    color: #004c46;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.process-step p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.process-arrow {
    color: #2E8B57;
    font-size: 2rem;
    font-weight: 700;
}

.verification-cta {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.verification-cta-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.verification-cta-button {
    display: inline-block;
    background: white;
    color: #2E8B57;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.verification-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Responsive Design for Verification */
@media (max-width: 768px) {
    .verification-section {
        padding: 60px 20px;
    }

    .verification-title {
        font-size: 2rem;
    }

    .verification-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .process-arrow {
        transform: rotate(90deg);
    }

    .verification-process {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .verification-card {
        padding: 30px 24px;
    }

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

/* =============================== */
/* TESTIMONIALS SECTION                                              */
/* =============================== */
.testimonials-section {
    background: #ffffff;
    padding: 80px 20px;
    margin-top: 60px;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-title {
    color: #004c46;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.testimonials-subtitle {
    color: #2b7c6c;
    font-size: 1.1rem;
    margin: 0 0 60px 0;
    line-height: 1.5;
}

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

.testimonial-card {
    background: #f8fdfb;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0f0ea;
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 139, 87, 0.12);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2E8B57;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info {
    text-align: left;
}

.author-name {
    color: #004c46;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-role {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Trust Logos Section */
.trust-logos-section {
    background: #eaf5f2;
    padding: 40px 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.trust-logos-title {
    color: #004c46;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.trust-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.trust-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #2E8B57;
    font-weight: 600;
}

.trust-logo-item i {
    font-size: 2.5rem;
    color: #2E8B57;
}

.trust-logo-item span {
    color: #004c46;
    font-size: 0.95rem;
    text-align: center;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 480px) {
    .testimonials-container {
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 30px 24px;
    }

    .trust-logos-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================== */
/* CONTACT FORM SECTION                                              */
/* =============================== */
.contact-form-section {
    background: linear-gradient(135deg, #f8fdfb 0%, #e8f5f0 100%);
    padding: 80px 20px;
    margin-top: 60px;
}

/* =============================== */
/* MARKETPLACE LISTINGS PAGE STYLES                                   */
/* =============================== */
.marketplace-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px
}

.marketplace-header {
    text-align: center;
    margin-bottom: 40px
}

.marketplace-title {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 20px;
    font-weight: 700
}

.search-filter-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px
}

.search-container {
    flex: 1;
    position: relative;
    max-width: 500px
}

.search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color .3s ease
}

.search-input:focus {
    border-color: #2E8B57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, .1)
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 18px
}

.filter-btn {
    background: #2E8B57;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease;
    white-space: nowrap
}

.filter-btn:hover {
    background: #1f5f3f
}

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

.property-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
    display: block;
    color: inherit;
    text-decoration: none;
}

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

.property-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    position: relative
}

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

.property-content {
    padding: 20px;
    text-align: center;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 10px
}

.property-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    justify-items: start;
    gap: 12px 16px;
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
    text-align: left;
}

.property-details>span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    min-width: 90px;
}

.property-details i {
    color: #2E8B57;
    width: 18px;
    text-align: center;
    font-size: 16px
}

.property-details .detail-count {
    font-weight: 600;
    color: #2E8B57;
}

.property-listed {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.property-address {
    color: #374151;
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.property-address strong {
    color: #111827
}

.no-listings {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280
}

.no-listings h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #374151
}

@media (max-width:768px) {
    .search-filter-section {
        flex-direction: column;
        align-items: stretch
    }

    .search-container {
        max-width: none
    }

    .listings-grid {
        grid-template-columns: 1fr
    }
}


.property-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px
}

.operators-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.operators-section .section-title {
    color: #2E8B57;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.operators-note {
    text-align: center;
    color: #6b7280;
    margin: 6px 0 14px;
}

.operators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 12px;
}

.operator-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
}

.operator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #2E8B57;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.operator-name {
    color: #111827;
    font-weight: 600;
}

.operator-meta {
    color: #6b7280;
    font-size: 13px;
}

.operator-stars {
    color: #2E8B57;
    font-size: 14px;
}

.operator-stars .operator-score {
    color: #374151;
    margin-left: 6px;
    font-weight: 600;
}

.operator-cta {
    background: #2E8B57;
    color: #fff;
    border-radius: 20px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 14px;
}

.operator-cta:hover {
    background: #1f5f3f;
    color: #fff;
    text-decoration: none;
}

.rating-widget {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

.rating-title {
    color: #2E8B57;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.star-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.star-widget input {
    display: none;
}

.star-widget label {
    font-size: 28px;
    color: #cbd5e1;
    padding: 6px;
    cursor: pointer;
    transition: color .2s ease, text-shadow .2s ease;
}

.star-widget label.active {
    color: #f59e0b;
}

.star-widget input:not(:checked)~label:hover {
    color: #fbbf24;
}

.star-widget input:checked~label {
    color: #f59e0b;
}

#rate-5:checked~label {
    color: #fde68a;
    text-shadow: 0 0 12px rgba(149, 82, 0, .4);
}

.rating-widget form {
    display: none;
}

.star-widget input:checked~form {
    display: block;
}

.rating-widget form header {
    color: #2E8B57;
    text-align: center;
    margin: 10px 0 12px;
    font-weight: 700;
    font-size: 16px;
}

.rating-widget .textarea textarea {
    width: 100%;
    height: 90px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    padding: 10px;
    resize: vertical;
}

.rating-widget .btn {
    margin-top: 10px;
}

.rating-widget .btn button {
    width: 100%;
    background: #2E8B57;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
    cursor: pointer;
}

.rating-widget .btn button:hover {
    background: #1f5f3f;
}

/* HOW OPERATORS — DASHBOARD */
.operators-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.operators-dashboard .section-title {
    color: #2E8B57;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.calendar-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.cal-title {
    font-weight: 700;
    color: #2E8B57;
}

.cal-nav {
    background: #2E8B57;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
}

.cal-nav:hover {
    background: #1f5f3f;
}

.calendar-legend {
    display: flex;
    gap: 16px;
    color: #6b7280;
    font-size: 14px;
    margin: 6px 0 10px;
}

.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.legend-dot.available {
    background: #10b981;
}

.legend-dot.occupied {
    background: #ef4444;
}

.legend-dot.maintenance {
    background: #f59e0b;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-head {
    text-align: center;
    color: #6b7280;
    font-size: 12px;
    padding: 6px 0;
}

.cal-cell {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    min-height: 56px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 6px;
}

.cal-cell.day {
    cursor: pointer;
    transition: background .2s ease;
}

.cal-cell.day:hover {
    background: #eefaf3;
}

.cal-cell .num {
    color: #374151;
    font-size: 12px;
}

.cal-cell.available {
    background: #ecfdf5;
    border-color: #a7f3d0;
}

.cal-cell.occupied {
    background: #fef2f2;
    border-color: #fecaca;
}

.cal-cell.maintenance {
    background: #fffbeb;
    border-color: #fde68a;
}

.managed-list {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.managed-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px;
}

.managed-title {
    color: #111827;
    font-weight: 600;
    margin-bottom: 4px;
}

.managed-meta {
    color: #6b7280;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.landlord-form-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.landlord-form-section .section-title {
    color: #2E8B57;
    font-weight: 700;
    margin-bottom: 6px;
}

.landlord-form-section .section-subtitle {
    color: #6b7280;
    margin-bottom: 16px;
}

.landlord-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

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

.landlord-form .form-field {
    display: flex;
    flex-direction: column;
}

.landlord-form .form-field label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 6px;
}

.landlord-form .form-field input,
.landlord-form .form-field select,
.landlord-form .form-field textarea {
    width: 96%;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 12px;
    background: #f9fafb;
}

.landlord-form .form-field input,
.landlord-form .form-field select {
    min-height: initial;
}

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

.landlord-form .form-field.form-full {
    grid-column: 1 / -1;
}

.landlord-form .form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.btn-primary {
    background: #2E8B57;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1f5f3f;
}

@media (max-width: 640px) {
    .landlord-form .form-grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .landlord-form {
        padding: 16px;
    }
}

.property-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px
}

.back-btn {
    background: #2E8B57;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color .3s ease
}

.back-btn:hover {
    background: #1f5f3f;
    color: #fff;
    text-decoration: none
}

.page-title {
    font-size: 2.5rem;
    color: #2E8B57;
    margin: 0 auto;
    font-weight: 700
}

.property-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.property-image-section {
    text-align: center
}

.property-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 20px;
    overflow: hidden
}

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

.property-info {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .05)
}

.property-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 15px
}

.property-specs {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #374151;
    font-size: 16px
}

.property-specs span {
    display: flex;
    align-items: center;
    gap: 8px
}

.property-specs i {
    color: #2E8B57;
    font-size: 18px
}

.property-address {
    color: #374151;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px
}

.property-address strong {
    color: #111827
}

.financial-summary {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px
}

.financial-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2E8B57;
    margin-bottom: 20px
}

.financial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb
}

.financial-item:last-child {
    border-bottom: none
}

.financial-label {
    color: #374151;
    font-weight: 500
}

.financial-value {
    color: #2E8B57;
    font-weight: 600;
    font-size: 1.1rem
}

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

.connect-title {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 20px;
    font-weight: 600
}

.submit-enquiry-btn {
    background: #2E8B57;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .3s ease
}

.submit-enquiry-btn:hover {
    background: #1f5f3f
}

.regulations-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px
}

.regulation-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05)
}

.regulation-label {
    color: #374151;
    font-weight: 600;
    font-size: 16px
}

.regulation-status {
    background: #10b981;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600
}

.regulation-status.rejected {
    background: #ef4444
}

.regulation-status.pending {
    background: #f59e0b
}

.admin-dashboard {
    background: #f8fafc;
    border: 2px solid #2E8B57;
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
    display: none
}

.admin-dashboard.show {
    display: block
}

.admin-title {
    font-size: 1.5rem;
    color: #2E8B57;
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px
}

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

.admin-btn {
    background: #2E8B57;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.admin-btn:hover {
    background: #1f5f3f;
    transform: translateY(-2px)
}

.admin-btn.secondary {
    background: #6b7280
}

.admin-btn.secondary:hover {
    background: #4b5563
}

.admin-btn.danger {
    background: #ef4444
}

.admin-btn.danger:hover {
    background: #dc2626
}

@media (max-width:768px) {
    .property-content {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .regulations-section {
        grid-template-columns: 1fr
    }

    .admin-actions {
        grid-template-columns: 1fr
    }
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    color: #004c46;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.contact-subtitle {
    color: #2b7c6c;
    font-size: 1.1rem;
    margin: 0 0 40px 0;
    line-height: 1.5;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0f0ea;
}

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

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #004c46;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0f0ea;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Quicksand', sans-serif;
    color: #004c46;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

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

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 48px;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 2;
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232E8B57' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E8B57;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.submit-btn {
    background: #2E8B57;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #236b43;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 20px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 24px;
    }

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

    .form-group {
        margin-bottom: 16px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 16px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .contact-title {
        font-size: 1.8rem;
    }
}

.hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    margin-left: 10px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2E8B57;
    margin: 5px 0;
    transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 900px) {
    .navbar-container {
        justify-content: space-between;
        padding: 0 16px;
        flex-direction: row;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 280px;
        background: #ffffff;
        box-shadow: 2px 0 12px rgba(0, 0, 0, .08);
        padding: 80px 16px 16px;
        transform: translateX(-100%);
        transition: transform .25s ease;
        display: block;
        overflow-y: auto;
        z-index: 1201;
    }

    .nav-links li {
        margin: 12px 0;
    }

    .drawer-logo {
        margin-bottom: 10px;
        display: block;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .drawer-logo a {
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        display: block;
    }

    .drawer-logo img {
        height: 34px;
        display: block;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding-left: 12px;
    }

    .hamburger {
        display: inline-block;
    }

    .navbar-right {
        display: none;
    }

    .mobile-auth {
        margin-top: 12px;
    }

    .mobile-auth .nav-button {
        display: block;
        width: 85%;
        text-align: center;
        margin: 8px auto;
    }

    .mobile-auth .register-btn {
        color: #ffffff !important;
        font-weight: 700;
    }

    .mobile-auth-email {
        color: #004c46;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .logo {
        margin-right: auto;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .logo a {
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        display: block;
    }

    .logo img {
        height: 40px;
        display: block;
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    body.nav-open .nav-links {
        transform: translateX(0);
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .35);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease;
        z-index: 1100;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 900px) {
    .map-filter-container {
        grid-template-columns: 1fr;
    }

    .filters-box {
        margin-bottom: 16px;
    }
}

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

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

.legality-hero {
    background: #f8fdfb;
    padding: 80px 20px 60px;
    text-align: center;
}

.legality-hero h1 {
    font-size: 3rem;
    color: #2E8B57;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: #2E8B57;
    color: white;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #1f5f3f;
}

.map-section {
    padding: 40px 20px;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

#str-map {
    height: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 10px;
}

.legend-color.permitted {
    background: #10b981;
    /* Bright emerald green */
}

.legend-color.restricted {
    background: #f59e0b;
    /* Amber/Orange */
}

.legend-color.not-permitted {
    background: #ef4444;
    /* Red */
}

.area-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 24px;
    max-width: 400px;
    width: 90%;
    z-index: 2000;
    display: none;
}

.popup-content h3 {
    color: #2E8B57;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.popup-content p {
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.5;
}

.popup-link {
    color: #2E8B57;
    text-decoration: underline;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.popup-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.stat-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.stat-value {
    color: #2E8B57;
    font-weight: 700;
    font-size: 1.1rem;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
}

.popup-close:hover {
    color: #374151;
}

.legality-cta {
    background: #2E8B57;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.legality-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-button {
    background: white;
    color: #2E8B57;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f0faf6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Custom tooltip styling */
.custom-tooltip {
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    padding: 12px !important;
    font-size: 0.9rem !important;
}

/* Mobile responsiveness for legality map */
@media (max-width: 768px) {
    .legality-hero h1 {
        font-size: 2.2rem;
    }

    .search-container {
        margin: 0 10px;
    }

    .map-legend {
        position: static;
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    #str-map {
        height: 400px;
    }

    .legality-cta h2 {
        font-size: 1.8rem;
    }
}


.hero-section {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: white !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #495057;
}

.service-features i {
    color: #2E8B57;
    margin-right: 12px;
    font-size: 0.9rem;
}

.service-btn {
    display: inline-block;
    background: #2E8B57;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.service-btn:hover {
    background: #228B22;
    color: white;
    text-decoration: none;
}

/* How It Works Section */
.how-it-works-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-description {
    color: #495057;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    color: #2E8B57;
    font-size: 1.5rem;
    margin: 0 20px;
}

/* Pro Benefits Section */
.pro-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    color: white;
}

.pro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-left: 40px;
}

.pro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pro-subtitle {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
}

.pro-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.pro-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: white;
}

.pro-features i {
    color: #FFD700;
    margin-right: 16px;
    font-size: 1.2rem;
}

.pro-btn {
    display: inline-block;
    background: white;
    color: #2E8B57;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #2E8B57;
    text-decoration: none;
}

.pro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discount-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transform: rotate(-5deg);
}

.discount-text {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.discount-amount {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: #2c3e50;
    text-decoration: none;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

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

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .pro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-left: 0;
    }

    .pro-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}


.templates-hero {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.templates-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.templates-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Templates Section */
.templates-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.template-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.template-card.premium-card {
    border: 2px solid #FFD700;
}

.template-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 2rem;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.template-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.template-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
}

.template-btn {
    display: inline-block;
    background: #2E8B57;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.template-btn:hover {
    background: #228B22;
    color: white;
    text-decoration: none;
}

.template-btn.disabled {
    background: #6c757d;
    color: white;
    cursor: not-allowed;
}

.template-btn.disabled:hover {
    background: #6c757d;
    color: white;
}

/* Guides Section */
.guides-section {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.guide-image {
    height: 200px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.guide-content {
    padding: 30px;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.guide-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 24px;
}

.guide-link {
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #228B22;
    text-decoration: none;
}

/* Webinars Section */
.webinars-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.webinar-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.webinar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.webinar-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
}

.webinar-thumbnail i {
    transition: transform 0.3s ease;
}

.webinar-card:hover .webinar-thumbnail i {
    transform: scale(1.1);
}

.webinar-content {
    padding: 30px;
}

.webinar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
}

.webinar-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.webinar-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.duration,
.level {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #6c757d;
}

.level {
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.webinar-btn {
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.webinar-btn:hover {
    color: #228B22;
    text-decoration: none;
}

/* Airbtics Section */
.airbtics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

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

.airbtics-icon {
    font-size: 4rem;
    color: #3CB371;
    margin-bottom: 30px;
}

.airbtics-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.airbtics-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-style: italic;
}

.premium-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2c3e50;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.airbtics-btn {
    display: inline-block;
    background: white;
    color: #2E8B57;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airbtics-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #2E8B57;
    text-decoration: none;
}

/* Templates CTA Section */
.templates-cta {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.cta-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin-bottom: 40px;
    text-align: center;
}

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

.templates-cta .btn-outline {
    background: transparent;
    color: #2E8B57;
    border: 2px solid #2E8B57;
}

.templates-cta .btn-outline:hover {
    background: #2E8B57;
    color: white;
}

.templates-cta .btn-primary,
.templates-cta .btn-outline {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsive Design for Templates & Resources */
@media (max-width: 768px) {
    .templates-hero .hero-title {
        font-size: 2.5rem;
    }

    .templates-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .templates-grid,
    .guides-grid,
    .webinars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .template-card,
    .guide-card,
    .webinar-card {
        padding: 30px 20px;
    }

    .airbtics-title {
        font-size: 2rem;
    }

    .airbtics-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* ===================================
   MODERN CONTACT PAGE STYLES
   =================================== */

.contact-page-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 300px);
}

.contact-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Card Styling */
.direct-contact-card,
.message-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.direct-contact-card:hover,
.message-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.contact-card-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
}

.contact-icon i {
    font-size: 30px;
    color: white;
}

.contact-card-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-card-header p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    background: #fff;
    border-color: #2E8B57;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 22px;
    color: white;
}

.method-content h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-content p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #3CB371;
    gap: 12px;
}

.contact-link i {
    font-size: 14px;
}

/* Additional Contact Info */
.contact-additional {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #2E8B57;
}

.additional-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.additional-item i {
    font-size: 20px;
    color: #2E8B57;
    margin-top: 3px;
}

.additional-item strong {
    display: block;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 5px;
}

.additional-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* Modern Contact Form */
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.modern-contact-form label {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8f9fa;
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: #2E8B57;
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 139, 87, 0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.modern-contact-form .select-wrapper {
    position: relative;
}

.modern-contact-form .select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
}

.modern-contact-form select {
    appearance: none;
    cursor: pointer;
    padding-right: 45px;
}

.modern-contact-form .submit-btn {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(46, 139, 87, 0.3);
    margin-top: 10px;
}

.modern-contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.modern-contact-form .submit-btn:active {
    transform: translateY(0);
}

.modern-contact-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.modern-contact-form .submit-btn i {
    margin-right: 8px;
}

.form-disclaimer {
    text-align: center;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-disclaimer i {
    color: #2E8B57;
}

/* =============================== */
/* FOOTER STYLES                   */
/* =============================== */
.site-footer {
    background: linear-gradient(135deg, #004c46 0%, #003832 100%);
    color: #ffffff;
    padding: 60px 20px 20px 20px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.footer-description {
    color: #b8d4d1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2E8B57;
    transform: translateY(-3px);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8d4d1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #3CB371;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

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

.footer-copyright {
    color: #b8d4d1;
    font-size: 0.9rem;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b8d4d1;
    font-size: 0.85rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.footer-badge i {
    color: #3CB371;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 40px 20px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-badges {
        justify-content: center;
    }
}

/* =============================== */
/* RESPONSIVE DESIGN               */
/* =============================== */
/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .direct-contact-card,
    .message-form-card {
        padding: 30px 25px;
    }

    .contact-card-header h2 {
        font-size: 1.5rem;
    }

    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-method:hover {
        transform: translateX(0);
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .contact-page-section {
        padding: 40px 15px;
    }

    .direct-contact-card,
    .message-form-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 26px;
    }

    .method-icon {
        width: 45px;
        height: 45px;
    }

    .method-icon i {
        font-size: 20px;
    }

    .modern-contact-form input,
    .modern-contact-form select,
    .modern-contact-form textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* ULTRA-SPECIFIC: Force white text for find-property hero section */
body.find-property .hero-section {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%) !important;
}

body.find-property .hero-section h1,
body.find-property .hero-section p {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Property Management Section with Images */
.managed-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.managed-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.managed-details {
    flex: 1;
}

.managed-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.managed-meta {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.managed-meta i {
    margin-right: 4px;
    color: #27ae60;
}

/* ============================================
   New Hero Section with CTA Buttons
   ============================================ */
.hero-main {
    padding: 120px 20px 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(225, 245, 240, 0.9), rgba(225, 245, 240, 0.95)),
        url('../images/pattern.png');
    background-size: cover;
    background-position: center;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #003c34;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-main-title .highlight-text {
    color: #2E8B57;
}

.hero-main-subtitle {
    font-size: 1.3rem;
    color: #2b7c6c;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.cta-button {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    position: relative;
    z-index: 10;
}

.cta-primary {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
    background: white;
    color: #2E8B57;
    border: 2px solid #2E8B57;
}

.cta-secondary {
    background: white;
    color: #2E8B57;
    border: 2px solid #2E8B57;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.5);
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    border: 2px solid transparent;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8fdfb 0%, #e8f5f1 100%);
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
}

.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-landlord {
    border-top: 4px solid #27ae60;
}

.benefit-operator {
    border-top: 4px solid #2b7c6c;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-header i {
    font-size: 2rem;
}

.benefit-landlord .benefit-header i {
    color: #27ae60;
}

.benefit-operator .benefit-header i {
    color: #2b7c6c;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.benefit-landlord .benefit-title {
    color: #27ae60;
}

.benefit-operator .benefit-title {
    color: #2b7c6c;
}

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

.benefit-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

.benefit-list i {
    color: #27ae60;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-list div {
    flex: 1;
    line-height: 1.6;
    color: #2c3e50;
}

.benefit-list strong {
    color: #2c3e50;
    font-weight: 700;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works-section {
    padding: 80px 20px;
    background: white;
}

.how-it-works-container {
    max-width: 1400px;
    margin: 0 auto;
}

.how-it-works-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.how-it-works-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.step-featured {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
}

.step-featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-featured .step-icon {
    background: white;
}

.step-icon i {
    font-size: 2rem;
    color: #2b7c6c;
}

.step-featured .step-icon i {
    color: #2E8B57;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-featured .step-title {
    color: white;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #7f8c8d;
    margin: 0;
}

.step-featured .step-description {
    color: rgba(255, 255, 255, 0.95);
}

.step-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.step-arrow i {
    font-size: 2rem;
    color: #2b7c6c;
}

.step-arrow-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Responsive Design for New Sections */
@media (max-width: 992px) {
    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-main-subtitle {
        font-size: 1.1rem;
    }

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

    .how-it-works-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .step-featured {
        transform: scale(1);
    }

    .step-featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }

    .hero-main-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefits-title,
    .how-it-works-title {
        font-size: 2rem;
    }
}