/* ============================================ */
/* CITY AGENT PAGE - COMPLETE STYLES            */
/* ============================================ */


/* =============================== */
/* HERO SECTION                    */
/* =============================== */

.hero-content .heading-section {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
flex-direction:column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px;
    box-sizing: border-box;
}

.hero-video-bg,
.hero-fallback-bg,
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-video-bg {
    object-fit: cover;
    z-index: 1;
}

.hero-fallback-bg {
    background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.hero-content h1 span {
    color: #38BDF8;
}

.hero-content h2 {
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 10px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.8;
}

.button-section {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px;
        min-height: 100vh;
    }
    .hero-content h1 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .button-section {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }
}


/* ================================ */
/* COMPARISON SECTION (Section 1)  */
/* Image left + Content right       */
/* ================================ */
.comparison-content .heading-section {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.comparison-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

/* LEFT: Image */
.comparison-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: block;
}

/* RIGHT: Content */
.comparison-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.comparison-content h2 {
    font-size: 40px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.comparison-content h2 span {
    color: #38BDF8;
}

.comparison-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }
    .comparison-content h2 {
        font-size: 30px;
    }
    .comparison-section {
        padding: 60px 0;
    }
    .comparison-image img {
        height: auto;
        max-height: 400px;
    }
}


/* ================================ */
/* SECTION 1 - TWO BUTTON GROUP    */
/* ================================ */
.ca-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: #000;
    border: 2px solid #000;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-dark:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ca-btn-group {
        flex-direction: column;
    }
    .btn-outline-dark {
        width: 100%;
        justify-content: center;
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ================================ */
/* COUNTER SECTION                  */
/* ================================ */
.counter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 50%;
}

.counter-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 50%;
}

.counter-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.counter-subtitle {
    display: inline-block;
    font-size: 13px;
    color: #38BDF8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.counter-header h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.counter-header h2 span {
    color: #38BDF8;
}

.counter-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.counter-header-line {
    width: 80px;
    height: 4px;
    background: #38BDF8;
    margin: 25px auto 0;
    border-radius: 2px;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.counter-item {
    text-align: center;
    padding: 30px;
}

.counter-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.counter-item .counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.counter-item .counter-number span {
    color: #38BDF8;
}

@media (max-width: 768px) {
    .counter-section {
        padding: 70px 0;
    }
    .counter-header {
        margin-bottom: 45px;
    }
    .counter-header h2 {
        font-size: 30px;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .counter-item {
        padding: 20px 15px;
    }
    .counter-item .counter-number {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .counter-section {
        padding: 60px 0;
    }
    .counter-header h2 {
        font-size: 24px;
    }
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .counter-item {
        padding: 25px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .counter-item:last-child {
        border-bottom: none;
    }
    .counter-item .counter-number {
        font-size: 42px;
    }
}


/* ================================ */
/* TESTIMONIALS SECTION             */
/* ================================ */
.testimonials-section {
    padding: 100px 0;
    background: #F8FAFC !important;
}

.testimonial-slider {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
}
/* ========================== */
/* SECTION 12: AGENTS / TEAM  */
/* ========================== */
.agents-section {
    padding: 100px 0;
    background: white;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 72%;
    margin: 0 auto;
    align-items: stretch;
}

.agent-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    padding-bottom: 24px;
}

.agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.agent-card-image {
    position: relative;
    overflow: hidden;
}

.agent-card-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.agent-card:hover .agent-card-image img {
    transform: scale(1.05);
}

.agent-card h4 {
    font-size: 20px;
    color: #000;
    margin: 20px 0 6px;
    font-weight: 700;
}

.agent-card .agent-title {
    font-size: 13px;
    color: #38BDF8;
    font-weight: 500;
    margin-bottom: 18px;
}

.agent-contact-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.agent-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 110px;
    height: 42px;
    padding: 0 18px;
    background: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.agent-contact-btn:hover {
    background: #38BDF8;
    color: #fff;
    border-color: #38BDF8;
}

/* Tablet */
@media (max-width: 1024px) {
    .agents-grid {
        width: 85%;
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .agents-grid {
        grid-template-columns: 1fr;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .agents-section {
        padding: 70px 0;
    }

    .agents-grid {
        width: 100%;
    }

    .agent-card-image img {
        height: 400px;
    }
}



/* ================================ */
/* SELL CTA - BOTTOM SECTION       */
/* ================================ */
.sellcta-section {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80') center/cover no-repeat fixed;
}

.sellcta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.sellcta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.sellcta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #fff;
}

.sellcta-content h2 span {
    color: #38BDF8;
}

.sellcta-content p {
    font-size: 17px;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
    color: #fff;
}

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

@media (max-width: 768px) {
    .sellcta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    .sellcta-content h2 {
        font-size: 32px;
    }
    .sellcta-content p {
        font-size: 15px;
    }
}


/* ================================ */
/* SECTION HEADER (shared)         */
/* ================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h2 span {
    color: #38BDF8;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .header-line {
    width: 80px;
    height: 4px;
    background: #38BDF8;
    margin: 20px auto 0;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
}

 /* ========================== */
        /* SECTION 23: CONTACT        */
        /* ========================== */
        .contact-section {
            padding: 100px 0;
            background: #F8FAFC;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .contact-form h3 {
            font-size: 28px;
            color: #000;
            margin-bottom: 10px;
        }

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

        .contact-form .form-group {
            margin-bottom: 15px;
        }

        .contact-form label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #333;
            margin-bottom: 6px;
        }

        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 13px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            color: #333;
            transition: border-color 0.3s ease;
            resize: vertical;
        }

        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #38BDF8;
        }

        .contact-form textarea {
            height: 120px;
        }

        .contact-form .form-error {
            color: #ef4444;
            font-size: 12px;
            margin-top: 4px;
            display: none;
        }

        .contact-submit-btn {
            width: 100%;
            padding: 16px;
            background: #38BDF8;
            color: #fff;
            border: none;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-submit-btn:hover {
            background: #0EA5E9;
        }

        .contact-info {
            padding: 20px 0;
        }

        .contact-info h3 {
            font-size: 28px;
            color: #000;
            margin-bottom: 30px;
        }

        .contact-info-item {
            display: flex;
            gap: 18px;
            margin-bottom: 25px;
            align-items: flex-start;
        }

        .contact-info-item .ci-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: rgba(56, 189, 248, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #38BDF8;
            font-size: 20px;
        }

        .contact-info-item h5 {
            font-size: 15px;
            color: #000;
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .contact-info-item p {
            font-size: 14px;
            color: #666;
        }

        .contact-map {
            margin-top: 30px;
            border-radius: 12px;
            overflow: hidden;
            height: 300px;
        }

        .contact-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

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

            .contact-form {
                padding: 25px;
            }

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



.featured-properties .container{
	    padding: 100px 0;

}


@media (max-width: 768px) {
	.container-homesmove{
		padding:40px 0px;
	}
}
