/*
Theme Name: Becor Properties
Theme URI: https://becor.cl
Description: A modern, high-performance real estate theme for property sales and rentals.
Version: 1.0.0
Author: Antigravity
Text Domain: becor-properties
*/

:root {
    --primary: #545454;
    /* Charcoal from logo text */
    --primary-alt: #c4a47c;
    /* Gold from logo house outline */
    --gold: #998141;
    /* Brighter gold for active states */
    --dark: #1A1A1A;
    --text: #4F4F4F;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 50px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
    width: 100% !important;
    min-width: 320px;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
}

.container {
    max-width: 1750px !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.main-header .container {
    max-width: 1750px !important;
}

/* Layout */
.main-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* WP Admin Bar Fix for Sticky Header */
.admin-bar .main-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    /* Force single line */
}

.header-left {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.custom-logo {
    max-height: 120px;
    width: auto;
    display: block;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--primary);
}

.logo i {
    color: var(--primary);
    font-size: 32px;
}

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    white-space: nowrap;
}

.nav-links a {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text);
    position: relative;
    padding: 15px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links .current-menu-item a,
.nav-links .current_page_item a {
    color: #998141 !important;
}

.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after {
    width: 100%;
}

.main-footer {
    background: #0B1320;
    /* Deep Navy */
    color: #e2e8f0;
    padding: 0;
    font-size: 15px;
    width: 100% !important;
    display: block !important;
}

.footer-container {
    max-width: 1750px !important;
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    display: block !important;
}

.main-footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-footer a:hover {
    color: var(--primary);
}

.footer-top {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}

.footer-logo-wrapper .custom-logo {
    max-height: 100px;
}

.footer-logo-wrapper .logo {
    font-size: 40px;
}

.footer-logo-wrapper .logo i {
    font-size: 44px;
}

.logo-white {
    color: #fff !important;
}

.logo-white span {
    color: #fff !important;
    opacity: 0.7;
}

.footer-social-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.follow-us-text {
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    font-size: 13px;
}

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

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(255, 90, 60, 0.2);
}

.social-link i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.footer-main {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    width: 100% !important;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-desc {
    line-height: 1.8;
    color: #a0aec0;
    margin-bottom: 30px;
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    color: #cbd5e0;
}

.contact-info-list i {
    color: var(--primary);
    font-size: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary);
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

.col-newsletter p {
    color: #a0aec0;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #e04a2d;
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #718096;
    font-size: 14px;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal-links a {
    color: #718096;
}

.footer-legal-links a:hover {
    color: #fff;
}

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

@media (max-width: 600px) {

    .footer-top-container,
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .footer-social-top {
        flex-direction: column;
    }
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav refinements */
.main-header {
    min-height: 100px;
}

.header-right .btn {
    border-radius: 50px;
    padding: 10px 25px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
    margin-top: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Cards */
.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    height: 240px;
    position: relative;
    background: #ccc;
}

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

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.property-content {
    padding: 20px;
}

.property-price {
    color: #998141;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}

.property-title {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.property-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text);
    border-top: 1px solid var(--border);
    padding-top: 15px;
    margin-top: 15px;
}

/* Hero Section */
/* Hero Slider */
.hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    background: #000;
}

.hero-slider,
.swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

/* Fix for Video scaling in Hero */
.video-slide-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.video-slide-container iframe {
    width: 100vw !important;
    height: 56.25vw !important;
    /* 16:9 */
    min-height: 100vh !important;
    min-width: 177.77vh !important;
    /* 16:9 */
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    pointer-events: none;
}

.hero .container h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
}

.hero .container p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero .container h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero .container p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
    }
}

.search-container {
    pointer-events: auto;
}

/* Search Box Container */
.search-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px;
    border-radius: 100px;
    width: 95%;
    max-width: 1120px;
    margin: 40px auto 0;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.search-form-wrapper {
    background: var(--white);
    padding: 8px;
    border-radius: 100px;
}

.search-form {
    display: flex;
    align-items: center;
    width: 100%;
}

.search-group {
    flex: 1;
    padding: 10px 25px;
    border-right: 1px solid #eee;
    text-align: left;
}

.search-group:last-of-type {
    border-right: none;
}

.search-group label {
    display: block;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.search-group select,
.search-group input {
    border: none;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    background: transparent;
    color: var(--dark);
    padding: 5px 0;
    cursor: pointer;
}

.search-group select option {
    color: #333;
    background: #fff;
}

.btn-search {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    margin-right: 0;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-search:hover {
    background: var(--dark) !important;
    transform: scale(1.02);
}

/* Mobile Search Bar Responsiveness */
@media (max-width: 768px) {
    .search-container {
        border-radius: 30px;
        padding: 5px;
        margin-top: 20px;
        width: 100%;
        backdrop-filter: none;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .search-form-wrapper {
        border-radius: 25px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .search-form {
        flex-direction: column;
        gap: 0;
    }

    .search-group {
        width: 100%;
        padding: 15px 0;
        border-right: none !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .search-group:last-of-type {
        border-bottom: none;
    }

    .search-group label {
        font-size: 0.65rem;
    }

    .search-group select,
    .search-group input {
        font-size: 1.1rem;
        padding: 8px 0;
    }

    .btn-search {
        width: 100%;
        margin-top: 20px;
        padding: 16px;
        font-size: 1rem;
        justify-content: center;
    }
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-img-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    background: var(--light);
    transition: transform 0.3s ease;
}

.service-card:hover .service-img-wrapper {
    transform: scale(1.05);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
}

/* Section Common */
.section-header {
    margin-bottom: 50px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light);
}

/* Modern Property Card Design */
.property-card {
    background: var(--white);
    border-radius: 20px;
    /* Slightly less than 50px for better fit */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.property-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

/* Badges */
.property-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.badge-featured {
    background: var(--primary);
}

.badge-status {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* Address Overlay */
.property-address-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    z-index: 2;
}

.property-address-overlay i {
    font-size: 18px;
}

/* Content Area */
.property-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.property-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.spec-item i {
    font-size: 18px;
}

.item-beds i {
    color: #4A90E2;
}

.item-baths i {
    color: #50E3C2;
}

.item-sqft i {
    color: #F5A623;
}

.spec-item strong {
    color: var(--dark);
}

/* Footer Section */
.property-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}


/* Category Grid Adjustment */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

/* --- Mobile Menu & Responsiveness --- */

/* Hamburger Toggle - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.mobile-logo .custom-logo {
    max-height: 70px !important;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav {
    flex-grow: 1;
    padding: 30px 20px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.mobile-menu-footer {
    padding: 30px 20px;
    border-top: 1px solid var(--border);
}

.w-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Responsive Queries */
@media (max-width: 1200px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-header {
        min-height: 100px;
        padding: 10px 0;
    }

    .custom-logo {
        max-height: 80px;
    }

    .logo {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .header-right .btn-whatsapp {
        display: none;
    }

    .header-inner {
        gap: 15px;
    }
}

/* --- Single Property Page Responsiveness --- */
.property-header-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.property-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.property-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.technical-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .property-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .technical-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .property-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-header-section {
        padding: 40px 0 !important;
    }

    .property-header-grid>div {
        padding: 25px !important;
    }

    .property-header-grid h1 {
        font-size: 1.6rem !important;
    }

    .property-header-grid .badge {
        font-size: 0.75rem !important;
        padding: 4px 12px !important;
    }
}

/* Base utility for avoiding overflow */
img,
iframe,
video {
    max-width: 100%;
}
/* --- Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-lg);
}

.why-us-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-us-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-benefits li {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .why-us-grid {
        gap: 40px;
    }
    
    .why-us-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-us-img-wrapper {
        height: 350px;
    }
    
    .why-us-content h2 {
        font-size: 2rem;
    }

    .why-us-content {
        text-align: left;
    }
}
