@charset "UTF-8";
/*
Theme Name: Dream Home
Theme URI: 
Author: Tanmoy Paul
*/

/* ================================
   HERO BANNER – ASK4OFFER STYLE
================================ */

.hero-askoffer-v2 {
    position: relative;
    min-height: 92vh;
    background: url('https://ibuyhousescashnow.com/wp-content/uploads/2025/12/dreamser.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 55%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
}


.hero-askoffer-v2 .container {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.hero-left h1 {
    font-size: 35px;
    font-weight: 1000;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 25px;
}

.hero-left p {
    font-size: 30px;
    color: #ffffff;
    max-width: 530px;
    margin-bottom: 40px;
}

/* CTA BUTTON */
.hero-cta-btn {
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
}

/* FORM CARD */
.hero-form-card {
    background: #ffffff;
    padding: 36px 34px;
    border-radius: 15px;
    box-shadow: 0 35px 68px rgba(0,0,0,0.35);
}

/* MOBILE */
@media (max-width: 991px) {
    .hero-askoffer-v2 {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-left {
        text-align: center;
        margin-bottom: 48px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }
}


/* =====================================
   ASK4OFFER – FINAL HERO FORM DESIGN
===================================== */

.hero-form-card {
    background: #ffffff;
    padding: 44px 42px;        /* slimmer */
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    max-width: 480px;          /* slightly smaller */
    margin-left: auto;
    margin-right: 25px;        /* 👈 key fix */
}


/* TITLE */
.hero-form-card .offer-title {
    text-align: center;
    font-size: 33px;
    font-weight: 800;
    color: #0b3c6f;
    margin-bottom: 28px;
}

/* FIELD WRAPPER */
.hero-form-card .cf7-field {
    margin-bottom: 25px;
}

/* INPUTS */
.hero-form-card input[type="text"],
.hero-form-card input[type="email"],
.hero-form-card input[type="tel"] {
    width: 100%;
    height: 60px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid #cfd6dd;
    font-size: 20px;
    color: #1f2937;
    background: #fff;
    outline: none;
    box-shadow: none;
}

/* PLACEHOLDER STYLE */
.hero-form-card ::placeholder {
    color: #8b97a3;
    font-size: 14px;
}

/* SEARCH ADDRESS ICON LOOK */
.hero-form-card .search-address input {
    padding-left: 44px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%238b97a3' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001l3.85 3.85 1.415-1.414-3.85-3.85zm-5.242.656a5 5 0 1 1 0-10 5 5 0 0 1 0 10z'/%3E%3C/svg%3E") no-repeat 14px center;
}

/* CITY + STATE */
.hero-form-card .cf7-row {
    display: flex;
    gap: 14px;
}

.hero-form-card .cf7-col {
    flex: 1;
}

/* SUBMIT BUTTON */
.hero-form-card .offer-btn,
.hero-form-card input[type="submit"] {
    width: 100%;
    background: #ff0000;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    padding: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    text-transform: uppercase;
}

.hero-form-card input[type="submit"]:hover {
    background: #e60000;
}

/* REMOVE CF7 DEFAULT SPACING */
.hero-form-card .wpcf7-form p {
    margin: 0;
}

/* MOBILE */
@media (max-width: 767px) {
    .hero-form-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 34px 24px;
    }

    .hero-form-card .cf7-row {
        flex-direction: column;
        gap: 0;
    }
}

.hero-slider-wrap .row {
    --bs-gutter-x: 18px; /* default is 24px+ */
}


/* =====================================
   FIX CITY / STATE & PRICE FIELD SPACING
===================================== */

/* Remove unwanted CF7 margins */
.hero-form-card .wpcf7-form p {
    margin: 0 !important;
}

/* Control spacing for each field */
.hero-form-card .cf7-field {
    margin-bottom: 16px;
}

/* City + State row spacing */
.hero-form-card .cf7-row {
    margin-bottom: 16px; /* controls gap below City/State */
}

/* Ensure inputs inside row don’t add extra space */
.hero-form-card .cf7-row .cf7-col {
    margin-bottom: 0;
}

/* Final field (Price) should not stick to button */
.hero-form-card input[name="price"] {
    margin-bottom: 18px;
}

/* =====================================
   HERO BACKGROUND SLIDER
===================================== */

.hero-slider-wrap {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

/* SLIDER CONTAINER */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slider .slide {
    height: 90vh;
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.2) 100%
    );
    z-index: 1;
}

/* CONTENT ABOVE SLIDER */
.hero-slider-wrap .container {
    position: relative;
    z-index: 2;
}

/* =====================================
   VIDEO INTRO SECTION (BELOW HERO)
===================================== */

.video-intro-section {
    padding: 60px 0 70px;   /* controls gap from hero + next section */
    background: #ffffff;
}

/* HEADLINE */
.video-intro-title {
    font-size: 34px;
    font-weight: 800;
    color: #0b3c6f;
    margin-bottom: 30px;
}

/* VIDEO WRAPPER */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CTA BUTTON */
.video-cta {
    margin-top: 35px;
}

.video-offer-btn {
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    padding: 16px 42px;
    font-size: 18px;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
}

.video-offer-btn:hover {
    background: #e60000;
}

/* MOBILE */
@media (max-width: 767px) {
    .video-intro-section {
        padding: 45px 0 55px;
    }

    .video-intro-title {
        font-size: 26px;
    }
}

.video-intro-section .container {
    max-width: 100%;
}

/* Control overall video size */
.video-wrapper {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   ABOUT VIDEO SECTION
================================ */

.about-video-section {
    padding: 80px 0;
    background: #ffffff;
}

/* VIDEO WRAPPER (IMAGE SIZE MATCH) */
.about-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.about-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* CONTENT */
.about-content {
    padding-left: 20px;
}

.about-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b5ed7;
    margin-bottom: 12px;
    position: relative;
}

.about-label::before,
.about-label::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #000;
    vertical-align: middle;
    margin: 0 10px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 14px;
}

/* MOBILE */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        text-align: center;
    }

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

    .about-label::before,
    .about-label::after {
        display: none;
    }
}

/* =====================================
   ABOUT MEDIA SECTION – FULL GREY
===================================== */

.about-media-section {
    padding: 80px 0 40px; /* top | sides | bottom */
}

/* VIDEO */
.about-media-video {
    position: relative;
    width: 100%;
    padding-top: 66%;
    border-radius: 8px;
    overflow: hidden;
}

.about-media-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* CONTENT */
.about-media-content {
    max-width: 560px;
}

/* ABOUT TAG */
.about-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0b5ed7;
    margin-bottom: 18px;
}

.about-tag span {
    flex: 1;
    max-width: 60px;
    height: 2px;
    background: #000;
}

/* HEADING */
.about-media-content h2 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    color: #000;
    margin-bottom: 26px;
}

/* TEXT */
.about-media-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 18px;
    text-align: justify;
}

/* MOBILE */
@media (max-width: 991px) {
    .about-media-section {
        padding: 100px 0;
    }

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

    .about-media-content {
        max-width: 100%;
    }
}

/* =====================================
   LAND OFFER SECTION
===================================== */

.land-offer-section {
    background: #2E8B57; /* Sea Green */
    padding: 40px 0 70px;
}

/* TITLE */
.land-offer-title {
    text-align: center;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 45px;
}

/* CHECKLIST */
.land-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.land-checklist li {
    display: flex;
    gap: 14px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 14px;
}

/* CHECK ICON */
.land-checklist li::before {
    content: "✓";
    background: #ff7a00;
    color: #ffffff;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* IMAGE */
.land-image-box {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

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

/* CTA */
.land-offer-cta {
    margin-top: 50px;
    text-align: center;
}

.land-offer-btn {
    display: inline-block;
    background: #ff0000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px 48px;
    border-radius: 10px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
}

.land-offer-btn:hover {
    background: #e60000;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .land-offer-title {
        font-size: 24px;
    }

    .land-image-box {
        margin-top: 30px;
        height: 320px;
    }
}

/* =====================================
   HELP SECTION
===================================== */

.help-section {
    background: #f3f5f7;
    padding: 60px 0 70px;
}

/* HEADER */
.help-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.help-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0b3c6f;
    margin-bottom: 12px;
}

.help-underline {
    display: block;
    width: 70px;
    height: 4px;
    background: #e6360f;
    margin: 0 auto 20px;
}

.help-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

/* ICONS */
.help-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 22px;
    filter: grayscale(100%);
}

.help-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TITLES */
.help-section h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0b3c6f;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* LIST */
.help-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-section ul li {
    position: relative;
    padding-left: 18px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #111;
    text-align: left;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.help-section ul li::before {
    content: "•";
    color: #e6360f;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 22px;
    line-height: 1;
}

/* CTA */
.help-cta {
    margin-top: 60px;
    text-align: center;
}

.help-btn {
    background: #e6360f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 44px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: all 0.25s ease;
}

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

/* MOBILE */
@media (max-width: 991px) {
    .help-header h2 {
        font-size: 30px;
    }

    .help-icon {
        width: 120px;
        height: 120px;
    }
}

/* ===============================
   6 REASONS – PREMIUM GRID
================================ */

.reasons-section {
    background: #ffffff;
    padding: 60px 0;
}

.reasons-header {
    text-align: center;
    margin-bottom: 60px;
}

.reasons-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0b3c6f;
}

/* GRID */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* ITEM */
.reason-item {
    text-align: center;
    padding: 0 10px;
}

.reason-item img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 20px;
}

.reason-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b3c6f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.reason-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    max-width: 280px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

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

    .reasons-header h2 {
        font-size: 30px;
    }
}

/* FAQ SECTION */
.faq-section {
    background: #ffffff;
    padding: 30px 20px;
}

.faq-container {
    max-width: 820px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* FAQ ITEM */
.faq-item {
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ICON */
.faq-icon {
    font-size: 26px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    display: none;
    padding: 0 26px 24px;
    font-size: 16px;
    line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta-btn {
    display: inline-block;
    background-color: #e5391a;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    background-color: #cc2f15;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}


/* MOBILE */
@media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }
}

/* FOOTER BASE */
.footer {
    background: #007a82;
    color: #fff;
    padding: 70px 0 30px;
}

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.9;
}

.footer-column ul li a:hover {
    opacity: 1;
}

/* BRAND COLUMN */
.footer-brand .footer-desc {
    margin: 15px 0 20px;
    line-height: 1.6;
    font-size: 15px;
    max-width: 320px;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-social img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.footer-social a:hover img {
    transform: scale(1.12);
}

/* BOTTOM */
.footer-bottom {
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
    opacity: 0.85;
}

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

/* ================================
   FOOTER – SEA GREEN + WHITE TEXT
   ================================ */

.footer {
    background-color: #2E8B57;
    color: #ffffff;
    padding: 70px 0 30px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* HEADINGS */
.footer h4,
.footer-title {
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
}

/* PARAGRAPH TEXT */
.footer p,
.footer-desc {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

/* MENU LISTS */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ffffff !important;
    font-size: 15px;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.footer-social img {
    width: 34px;
    height: 34px;
    filter: brightness(0) invert(1); /* force white */
    transition: transform 0.3s ease;
}

.footer-social a:hover img {
    transform: translateY(-4px);
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
    text-align: center;
}

.footer-bottom p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

/* ============================
   FOOTER – GREEN THEME
============================ */

.footer-green {
    background: #2E8B57;
    color: #ffffff;
    padding: 70px 0 30px;
}

.footer-green h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 18px;
}

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

.footer-green ul li {
    margin-bottom: 10px;
}

.footer-green ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.footer-green ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* SOCIAL ICONS */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 10px;
}

.footer-social img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.25s ease;
}


.footer-social img:hover {
    transform: scale(1.1);
}

/* COPYRIGHT */
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.25);
    font-size: 14px;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

/* ===== FOOTER SOCIAL – HARD RESET ===== */

.footer-social a {
    all: unset;
    display: inline-block;
    margin-right: 12px;
}

.footer-social a img {
    width: 32px !important;
    height: auto !important;
    max-width: 100% !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    background: transparent !important;
}

/* ABOUT PAGE CTA ONLY */
.about-cta-section {
    padding: 40px 0 60px;
    background: #ffffff;
}

/* CTA BUTTON */
.about-cta-btn {
    display: inline-block;
    background: #e63b1f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 50px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(230, 59, 31, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover */
.about-cta-btn:hover {
    background: #c93017;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(230, 59, 31, 0.45);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .about-cta-btn {
        font-size: 16px;
        padding: 16px 28px;
        width: 100%;
        max-width: 320px;
    }
}

/* CTA BUTTON INSIDE FEATURED PROPERTIES */
.winwin-cta-btn {
    display: inline-block;
    background: #e63b1f;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 60px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(230, 59, 31, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.winwin-cta-btn:hover {
    background: #c93017;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(230, 59, 31, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
    .winwin-cta-btn {
        width: 100%;
        max-width: 320px;
        font-size: 16px;
        padding: 16px 24px;
    }
}

/* ================================
   FIX GAP BETWEEN SERVICES & FEATURED PROPERTIES
================================ */

/* Reduce bottom space of Services section */
.services {
    padding-bottom: 30px !important;
}

/* Reduce header spacing inside Services */
.services .section-header {
    margin-bottom: 20px !important;
}

/* Reduce top space of Featured Properties */
.featured-properties {
    padding-top: 30px !important;
}

/* Kill accidental margin stacking */
.services + .featured-properties {
    margin-top: 0 !important;
}

/* FEATURED PROPERTIES – GREY BACKGROUND */
.featured-properties {
    background: #f3f5f7; /* same soft grey used elsewhere */
    padding: 80px 0 90px; /* keeps spacing consistent */
}

/* ================================
   PROPERTY INFORMATION – FORM UI
================================ */

/* Grey background section */
.property-info-section,
.cash-offer-wrapper {
    background: #f3f5f7;
    padding: 80px 20px;
}

/* Center the form */
.cash-offer-wrapper {
    display: flex;
    justify-content: center;
}

/* White form card */
.cash-offer-form {
    background: #ffffff;
    max-width: 520px;
    width: 100%;
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Form Title */
.cash-offer-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #0b3c6f;
    margin-bottom: 30px;
}

/* CF7 input fields */
.cash-offer-form input[type="text"],
.cash-offer-form input[type="email"],
.cash-offer-form input[type="tel"],
.cash-offer-form select,
.cash-offer-form textarea {
    width: 100%;
    height: 58px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccd5df;
    margin-bottom: 16px;
    background: #fff;
    outline: none;
}

/* Textarea height */
.cash-offer-form textarea {
    height: 110px;
    resize: vertical;
}

/* Dropdown arrow fix */
.cash-offer-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23999' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

/* Submit button */
.cash-offer-form input[type="submit"] {
    width: 100%;
    background: #ff0000;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    padding: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 15px 35px rgba(255,0,0,0.35);
    transition: all 0.25s ease;
}

.cash-offer-form input[type="submit"]:hover {
    background: #e60000;
    transform: translateY(-2px);
}

/* Remove CF7 extra spacing */
.cash-offer-form .wpcf7-form p {
    margin: 0;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .cash-offer-form {
        padding: 35px 25px;
    }

    .cash-offer-title {
        font-size: 26px;
    }
}

/* Reduce space below header */
header,
.site-header,
.main-header {
    margin-bottom: 20px !important;   /* was large, now controlled */
    padding-bottom: 0 !important;
}

/* Reduce page top spacing */
.site-content,
.page-content,
.content-area {
    padding-top: 20px !important;
    margin-top: 0 !important;
}

.cash-offer-form {
    padding: 28px 24px !important;   /* was too large */
}

.cash-offer-form input,
.cash-offer-form select {
    height: 44px !important;   /* compact but touch-friendly */
    font-size: 14px;
}

.cash-offer-form textarea {
    min-height: 90px !important;   /* was too tall */
    resize: vertical;
    font-size: 14px;
}

.cash-offer-form .wpcf7-form-control-wrap {
    margin-bottom: 10px !important;
}

.cash-offer-title {
    margin-bottom: 18px !important;
    font-size: 22px;
}

/* ===============================
   PROPERTY INFORMATION SECTION
================================ */

.property-info-section {
    background: #f5f7fa;
    padding: 50px 0;
}

.property-info-text,
.property-info-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    height: 100%;
}
.property-info-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.property-info-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 14px;
}

/* FORM CARD */
.property-info-form {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* ===== CF7 GRID LAYOUT ===== */

.cf7-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cf7-col {
  width: calc(50% - 7px);
}

.cf7-col-full {
  width: 100%;
}

.cf7-grid input,
.cf7-grid select,
.cf7-grid textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #d6dce5;
  font-size: 14px;
}

/* Reduce textarea height */
.cf7-grid textarea {
  min-height: 90px;
  resize: vertical;
}

/* Submit button */
.cf7-grid input[type="submit"] {
  background: #ff0000;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* Card width */
.property-info-form {
  max-width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .cf7-col {
    width: 100%;
  }
}

.cash-offer-title {
  font-size: 28px;
  font-weight: 800;
  color: #0b3a6f;
}

/* Make textarea height similar to other rows */
.cf7-grid textarea {
  min-height: 80px;   /* reduce height */
  height: 80px;
  resize: none;       /* optional: disable manual resize */
}

.property-info-form {
  padding-top: 20px !important; /* reduce top space */
}

.property-info-form {
  padding-bottom: 15px !important;
}

/* Contact section background */
.contact-section {
    background: #f5f7fa; /* light grey */
    padding: 80px 0;     /* keeps spacing clean */
}

.contact-section h2,
.contact-section p,
.contact-section .method-label,
.contact-section .method-value {
    color: #1e293b; /* dark professional text */
}

.contact-section .method-icon {
    font-size: 22px;
    color: #0d6efd; /* blue accent */
}

/* ===============================
   CONTACT SECTION – GREY BG
================================ */

.contact-section {
    background: #f5f7fa;
    padding: 80px 0;
}

.contact-section h2,
.contact-section p,
.contact-section .method-label,
.contact-section .method-value {
    color: #1e293b;
}

.contact-section .method-icon {
    font-size: 22px;
    color: #0d6efd;
}

/* ===============================
   HERO FORM FIELD SPACING
================================ */

.save-short-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 10px; /* controls gap between fields */
}

/* Input styling consistency */
.save-short-form input,
.save-short-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d6dce5;
  font-size: 15px;
}

/* Button spacing */
.save-short-form input[type="submit"] {
  margin-top: 18px;
}

.testimonials .winwin-cta-btn {
    margin-top: 30px;
}









