.elementor-187 .elementor-element.elementor-element-6229de5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-187 .elementor-element.elementor-element-f3e87f0{--display:flex;}.elementor-187 .elementor-element.elementor-element-3d9a1a0{margin:-36px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-3d9a1a0 */:root {
    --primary-blue: #007bff;
    --dark-blue-background: #001f3f;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --dark-heading-color: #1a202c;
    --light-text-color: #4a5568;
    --medium-gray: #666;
    --card-background: #ffffff;
    --contact-btn-dark: #222222;
    --border-radius-small: 5px;
    --listing-bg: #f4f4f9;
}

/* --- Base & Desktop Styles --- */
.hero-section {
    position: relative;
    min-height: 700px;
    background-color: var(--dark-blue-background);
    color: var(--text-color-light);
    overflow: hidden;
    background-image: url('https://gangedges.com/wp-content/uploads/2025/01/WhatsApp-Image-2025-01-16-at-12.28.17-450500-574x596.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 100px;
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.2) 80%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-content h1 { 
    color: #ffffff; 
    font-size: 3.5em; 
    font-weight: 800; 
    margin-bottom: 20px; 
    line-height: 1.1; 
}

.hero-content p { 
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em; 
    margin-bottom: 30px; 
    line-height: 1.6; 
}

.explore-btn {
    text-decoration: none;
    display: inline-block;
    padding: 12px 25px;
    border: 2px solid white;
    color: white;
    font-weight: bold;
    border-radius: var(--border-radius-small);
    transition: 0.3s;
}

.explore-btn:hover { background: white; color: var(--dark-blue-background); }

/* Slider Styling */
.image-slider-container {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-70%);
    width: 450px;
    height: 300px;
    z-index: 5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.slider-image {
    position: absolute;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-image.active { opacity: 1; }

/* Info Card */
.info-card-container {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.info-card {
    background: white;
    color: #333;
    padding: 20px;
    width: 280px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.contact-us-btn {
    display: block;
    text-align: center;
    background: #222;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

.avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -12px;
}

/* Intro Section */
.intro-section {
    padding: 80px 100px;
    display: flex;
    background: white;
    gap: 40px;
      
}

.intro-title { flex: 1; font-size: 3em;
    color: var(--dark-heading-color);
    position: relative;
    right: 30px;
    }
.intro-description {
    flex: 1; 
    color: var(--light-text-color);
    font-size: 1.1em;
    }

/* ============================================================
   TABLET RESPONSIVE (Max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .hero-section {
        padding-left: 50px;
        height: auto;
        min-height: 800px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-content {
        max-width: 80%;
        margin-bottom: 50px;
    }

    .image-slider-container {
        position: relative;
        right: 0; top: 0;
        transform: none;
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .info-card-container {
        position: relative;
        right: 0; bottom: 0;
        align-items: flex-start;
        width: 100%;
    }

    .intro-section {
        padding: 60px 50px;
        flex-direction: column;
    }
}

/* ============================================================
   MOBILE RESPONSIVE (Max-width: 768px)
   ============================================================ */
@media (max-width: 1000px) {
    .hero-section {
        padding: 80px 20px;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content p {
        font-size: 1em;
    }

    .image-slider-container {
        height: 250px;
    }

    .info-card {
        width: 100%;
        box-sizing: border-box;
    }

    .intro-title {
        position: relative;
        right: 10px;
        text-align: center;
        justify-content: center;
        font-size: 40px;
    }

    .intro-section {
        padding: 40px 20px;
    }

    .hero-image-overlay {
        background: rgba(0, 0, 0, 0.6); /* Uniform dark overlay for better readability on small screens */
    }
    
    .client-avatars span {
        font-size: 0.9em;
    }
}
/* ======================================= */
/* 7. WHAT WE OFFER CARDS STYLES           */
/* ======================================= */

.offer-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent; /* Allows section to sit on any bg */
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive heading sizing */
    font-weight: 800;
    color: var(--dark-heading-color);
    margin: 0;
    line-height: 1.1;
    flex: 1.5;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin: 0;
    max-width: 400px;
    line-height: 1.7;
    flex: 1;
}

.offer-cards-container {
    display: grid;
    /* Grid switches from 3 columns to 1 automatically */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 32px;
}

.offer-card {
    background-color: var(--card-background);
    border-radius: 20px; /* Modern smoother corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05); /* Soft border for definition */
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.image-wrapper {
    width: 100%;
    height: 220px; /* Taller images look more premium */
    overflow: hidden;
    position: relative;
}

.image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .card-image {
    transform: scale(1.1); /* Smooth zoom on card hover */
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-heading-color);
    margin: 0 0 12px 0;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    color: var(--light-text-color);
    line-height: 1.6;
    margin: 0;
    margin-bottom: 20px; /* Space for a potential button/link */
}

/* ======================================= */
/* RESPONSIVE ADJUSTMENTS                  */
/* ======================================= */

@media (max-width: 768px) {
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .offer-title {
        font-size: 2.2rem;
    }
    
    .offer-description {
        max-width: 100%;
        font-size: 1rem;
    }

    .offer-cards-container {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 24px;
    }
    
    .offer-section {
        padding: 60px 20px;
    }
}
/* ======================================= */
/* 7. WHAT WE OFFER CARDS STYLES           */
/* ======================================= */

.offer-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent; /* Allows section to sit on any bg */
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem); /* Responsive heading sizing */
    font-weight: 800;
    color: var(--dark-heading-color);
    margin: 0;
    line-height: 1.1;
    flex: 1.5;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin: 0;
    max-width: 400px;
    line-height: 1.7;
    flex: 1;
}

.offer-cards-container {
    display: grid;
    /* Grid switches from 3 columns to 1 automatically */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 32px;
}

.offer-card {
    background-color: var(--card-background);
    border-radius: 20px; /* Modern smoother corners */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05); /* Soft border for definition */
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.image-wrapper {
    width: 100%;
    height: 220px; /* Taller images look more premium */
    overflow: hidden;
    position: relative;
}

.image-wrapper a {
    display: block;
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .card-image {
    transform: scale(1.1); /* Smooth zoom on card hover */
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-heading-color);
    margin: 0 0 12px 0;
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    color: var(--light-text-color);
    line-height: 1.6;
    margin: 0;
    margin-bottom: 20px; /* Space for a potential button/link */
}

/* ======================================= */
/* 7. WHAT WE OFFER CARDS STYLES           */
/* ======================================= */

:root {
    /* Ensure these variables are defined in your global CSS or here */
    --dark-heading-color: #1a1a1a;
    --light-text-color: #666666;
    --card-background: #ffffff;
    --primary-blue: #007bff;
}

.offer-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
}

.offer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-heading-color);
    margin: 0;
    line-height: 1.1;
    flex: 1.5;
}

.offer-description {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin: 0;
    max-width: 400px;
    line-height: 1.7;
    flex: 1;
}

/* --- THE FIX IS HERE --- */
.offer-cards-container {
    display: grid;
    /* Force 4 equal columns on desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; /* Reduced gap slightly to help fit 4 cards comfortably */
}

.offer-card {
    background-color: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%; /* Ensures all cards are same height */
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-blue);
}

.image-wrapper {
    width: 100%;
    height: 200px; /* Adjusted for 4-column layout density */
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.offer-card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 20px; /* Slightly tighter padding for 4-column look */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.25rem; /* Scaled down slightly to prevent text wrapping */
    color: var(--dark-heading-color);
    margin: 0 0 12px 0;
    font-weight: 700;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    line-height: 1.5;
    margin: 0;
}

/* ======================================= */
/* RESPONSIVE ADJUSTMENTS                  */
/* ======================================= */

/* For smaller laptops/large tablets - Switch to 2x2 grid */
@media (max-width: 1100px) {
    .offer-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .offer-title {
        font-size: 2.2rem;
    }

    .offer-cards-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
    
    .offer-section {
        padding: 60px 20px;
    }
}

/* ======================================= */
/* 8. FACILITY INTRO SECTION STYLES        */
/* ======================================= */

.facility-intro-section {
    padding: 80px 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    background-color: var(--white-bg);
}

.facility-title {
    font-family: Arial, sans-serif;
    font-size: 3em;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-heading-color);
    flex: 1;
    margin: 0;
}

.facility-description {
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.6;
    color: var(--light-text-color);
    max-width: 400px;
    flex: 1;
    padding-top: 10px;
    margin: 0;
}
/* ======================================= */
/* 9. FEATURES SECTION (GRID CARDS)        */
/* ======================================= */

/* Use a light background for the section to make white cards pop */
.features-section {
    padding: 80px 100px;
    background-color: #f8f9fa; 
    text-align: center;
}

.features-header {
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.5em;
    color: var(--dark-heading-color);
    font-weight: 800;
    margin-bottom: 10px;
}

.features-grid {
    display: grid;
    /* This creates the 4-column layout seen in your image */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius-large);
    /* Soft shadow to match the screenshot */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the icon and text */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Specific styling for the Blue Icons */
.feature-card i, 
.feature-card svg {
    font-size: 40px; /* Adjust size to match image */
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--dark-heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--light-text-color);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px;
    }
}
/* ===== GALLERY SECTION ===== */

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Inter', sans-serif;
}

/* ===== HEADING ===== */
.gallery-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 4rem;
    }
}

.blue-text {
    color: #1e3a8a;
}

.accent-text {
    color: #FF7E6B;
}

/* ===== GRID LAYOUT ===== */
.gallery-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-item-large-horizontal {
        grid-column: span 2;
    }

    .grid-item-tall-vertical {
        grid-row: span 2;
    }

    .grid-item-bottom-row {
        grid-column: span 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

/* ===== IMAGE STYLE ===== */
.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Aspect Ratios */
.grid-item-large-horizontal .image-wrapper {
    padding-bottom: 66.66%;
}

.grid-item-tall-vertical .image-wrapper {
    padding-bottom: 200%;
}

.grid-item-bottom-row .image-wrapper {
    padding-bottom: 100%;
}

@media (min-width: 1024px) {
    .grid-item-tall-vertical .image-wrapper {
        padding-bottom: 0;
        height: 100%;
    }
}

.image-wrapper img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

/* ======================================= */
/* PROPERTY LISTINGS SECTION */
/* ======================================= */

.property-listings {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.listing-header {
    text-align: center;
    margin-bottom: 60px;
}

.listing-header h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
}

.listing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0 0;
}

/* Container */
.listings-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card */
.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

/* Image */
.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Tags */
.tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.tag {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 20px;
    color: #fff;
}

.tag.type {
    background: #007bff;
}

.tag.deal {
    background: #e63946;
}

/* Content */
.content {
    padding: 20px;
}

.content h3 {
    margin: 0;
    font-size: 20px;
}

.price {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
    color: #007bff;
}

.description {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.details {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
}

/* ======================================= */
/* RESPONSIVE */
/* ======================================= */

@media (max-width: 768px) {

    .listings-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
        max-width: 400px;
    }

    .listing-header h1 {
        font-size: 2rem;
    }

    .listing-header h2 {
        font-size: 2.3rem;
    }
}
/* Container & Typography */
.testimonial-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
    background-color: #ffffff;
}

.testimonial-container {
    max-width: 800px;
    width: 100%;
}

.testimonial-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* Slide Logic */
.all-testimonials {
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card.active {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Styling */
.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
    font-style: italic;
}

.client-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-title {
    font-size: 14px;
    color: #999;
}

/* Navigation Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #bbb;
}

.dot.active {
    background-color: #333;
    transform: scale(1.3);
}
/* --- Global Widget Scope --- */
.secondhomes-widget-wrapper {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333333;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.main-hero-area {
    position: relative;
    width: 100%;
    height: 650px;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                url('https://gangedges.com/wp-content/uploads/2025/01/WhatsApp-Image-2025-01-16-at-12.28.17-450500-574x596.jpeg') no-repeat center center/cover;
    color: #ffffff;
    display: flex;
    align-items: center; 
    padding: 0 5%;
    box-sizing: border-box; 
}

.hero-wrapper-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px; 
    width: 100%;
    margin: 0 auto;
}

.page-title-main {
    font-size: 3.8em; 
    font-weight: 700;
    margin: 0;
    line-height: 1.1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    color: #ffffff; /* This is the hex code for pure white */
}

.hero-info-panel-right {
    flex: 0 0 380px;
    background-color: rgba(255, 255, 255, 0.15); 
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-search {
    background-color: #007bff;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-search:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Steps Section --- */
.secondhomes-steps-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.step-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.arrow {
    font-size: 24px;
    color: #007bff;
    font-weight: bold;
}/* End custom CSS */