@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --navy: #0A192F;
    --navy-dark: #050A14;
    --gold: #C5A019;
    --gold-gradient: linear-gradient(135deg, #C5A019 0%, #D4AF37 100%);
    --white: #FFFFFF;
    --gray-bg: #F8F9FA;
    --text-main: #1D2124;
    --text-muted: #6C757D;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img,
video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
.font-luxury {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--white);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 25, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-dark);
    transform: translateY(-3px);
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    /* Default to transparent */
}

header.scrolled {
    background: var(--navy);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

header.header-light:not(.scrolled) {
    background: white;
    border-bottom: 1px solid #eee;
}

header.header-light:not(.scrolled) .logo h1,
header.header-light:not(.scrolled) .nav-links a {
    color: var(--navy);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
    transition: var(--transition);
    z-index: 1002;
}

.header-light:not(.scrolled) .mobile-toggle,
.scrolled .mobile-toggle {
    color: var(--navy) !important;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: clamp(18px, 4vw, 24px);
    color: var(--white);
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo h1 span {
    font-weight: 400;
    font-size: 18px;
    opacity: 0.8;
    margin-left: 5px;
}

.logo-footer {
    margin-bottom: 30px;
}

.logo-footer h1 {
    font-size: 28px !important;
}

@media (max-width: 768px) {
    .logo-footer h1 {
        font-size: 22px !important;
    }
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: capitalize;
    opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    opacity: 1;
}

/* --- Hero --- */
.hero {
    height: 85vh;
    position: relative;
    padding: 0 !important;
    margin-top: 0 !important;
    color: var(--white);
    background: var(--navy);
    /* Fallback background */
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    height: 100%;
}

.swiper-slide .container {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.4) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    color: var(--gold);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* --- Hero Slider Animations --- */
.hero-swiper .swiper-slide-active .hero-slide-img {
    animation: zoomOut 10s infinite linear alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-swiper .swiper-slide-active .slide-up {
    animation: slideUp 0.8s both 0.2s;
}

.hero-swiper .swiper-slide-active .slide-up-delayed {
    animation: slideUp 0.8s both 0.4s;
}

.hero-swiper .swiper-slide-active .slide-up-more-delayed {
    animation: slideUp 0.8s both 0.6s;
}

.hero-swiper .swiper-slide-active .slide-up-most-delayed {
    animation: slideUp 0.8s both 0.8s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    opacity: 1 !important;
}

/* --- Search Bar --- */
.hero-search-wrapper {
    position: absolute;
    bottom: -30px;
    /* Reduced overflow for safety */
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
}

.hero-search {
    width: 95%;
    max-width: 1100px;
    background: var(--white);
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.search-field {
    flex: 1;
    border-right: 1px solid #eee;
    padding: 15px 25px;
}

.search-field:nth-child(3) {
    border-right: none;
}

.search-field label {
    display: block;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-field select,
.search-field input {
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    outline: none;
    background: transparent;
    cursor: pointer;
}

.search-btn {
    height: 70px;
    padding: 0 45px;
    background: var(--navy);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.search-btn span {
    display: inline-block;
}

@media (max-width: 992px) {
    .search-btn span {
        display: inline;
    }
}

/* --- Sections --- */
section {
    padding: 80px 0;
    /* Slightly tighter padding */
}

.properties-section {
    padding-top: 120px;
    /* Extra padding to accommodate the overlapping search bar */
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
}

.view-all-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .title-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
}

.section-title-box {
    margin-bottom: 60px;
}

.section-title-box h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 15px;
}

.section-title-box p {
    color: var(--text-muted);
    font-size: 16px;
}

/* --- Property Cards --- */
.property-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(10, 25, 47, 0.1);
}

.p-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .p-image img {
    transform: scale(1.1);
}

.p-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.p-details {
    padding: 30px;
}

.p-tag {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.p-name {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 15px;
}

.p-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.p-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    padding-top: 20px;
}

.p-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

/* --- Property Tours --- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tour-card {
    height: 450px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tour-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.tour-card:hover .tour-overlay {
    height: 100%;
    background: rgba(10, 25, 47, 0.4);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.tour-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
}

/* --- Advantage Section --- */
.advantage {
    background: var(--navy);
    color: var(--white);
}

.section-heading-white {
    color: var(--white);
    font-size: clamp(32px, 5vw, 45px);
    line-height: 1.2;
    margin-bottom: 25px;
}

.adv-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.adv-content {
    flex: 1.2;
}

.adv-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Services --- */
.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(197, 160, 25, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--gold);
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* --- CTA --- */
.cta-block {
    background: var(--gold-gradient);
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
}

.cta-block h2 {
    font-size: 48px;
    color: var(--navy);
    margin-bottom: 20px;
}

.cta-block p {
    color: rgba(10, 25, 47, 0.8);
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 500;
}

/* --- Property Detail Page --- */
.property-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.stat-item-inner {
    text-align: center;
    border-right: 1px solid #f0f0f0;
    padding: 10px;
}

.stat-item-inner.last {
    border-right: none;
}

.stat-item-inner span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-weight: 700;
}

.stat-item-inner strong {
    font-size: 22px;
    color: var(--navy);
}

.inquiry-sticky {
    position: sticky;
    top: 120px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .property-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inquiry-sticky {
        position: static;
        margin-top: 30px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item-inner:nth-child(2) {
        border-right: none;
    }

    .stat-item-inner:nth-child(2),
    .stat-item-inner:nth-child(1) {
        margin-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .stat-item-inner {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .stat-item-inner.last {
        border-bottom: none;
    }
}

/* --- Footer --- */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col p {
    opacity: 0.6;
    font-size: 14px;
    line-height: 2;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.newsletter {
    display: flex;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: var(--white);
    border-radius: 4px 0 0 4px;
}

.newsletter button {
    background: var(--gold);
    border: none;
    padding: 0 20px;
    color: var(--white);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.5;
}

/* --- Utils --- */
.blog-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.view-all-link {
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .blog-title-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .logo h1 span {
        display: block;
        font-size: 12px;
        margin-top: -5px;
    }
}

.vision-mission-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Section --- */
.contact-section {
    background: #fff;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-card {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    border-radius: 4px;
    font-family: inherit;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-card {
        padding: 30px;
    }

    .hero-search-wrapper {
        position: relative;
        bottom: 0;
        margin-top: 50px;
    }

    .hero-search {
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }

    .search-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .search-btn {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }

    .properties-section {
        padding-top: 40px;
        /* Reduced gap since search bar is stacked */
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo h1 span {
        font-size: 14px;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 0 60px;
        /* Adjusted padding */
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-search-wrapper {
        position: relative;
        bottom: 0;
        margin: 30px auto 0;
        width: 90%;
        max-width: 500px;
        left: 0;
        right: 0;
        transform: none;
        z-index: 10;
    }

    .hero-search {
        flex-direction: column;
        width: 100%;
        margin: 0;
        transform: none !important;
        left: 0 !important;
    }

    .search-field {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
    }

    .search-btn {
        width: 100%;
        height: 60px;
        border-radius: 0 0 8px 8px;
    }

    .property-row,
    .tour-grid,
    .service-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .adv-flex {
        flex-direction: column;
        text-align: center;
    }

    .stat-item {
        padding: 30px 20px;
    }

    .cta-block h2 {
        font-size: 36px;
    }

    .mobile-toggle {
        display: block !important;
    }

    #navMenu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--navy-dark);
        z-index: 1001;
        transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    #navMenu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .nav-links a {
        font-size: 20px;
        font-weight: 600;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: clamp(32px, 8vw, 42px);
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .section-title-box h2 {
        font-size: 28px;
    }

    .property-row,
    .tour-grid,
    .service-row,
    .footer-grid,
    .adv-stats {
        grid-template-columns: 1fr;
    }

    /* Force Blog Listing to stack */
    .blog-listing .property-row {
        grid-template-columns: 1fr !important;
    }

    .tour-card {
        height: 350px;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .newsletter {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .logo h1 {
        font-size: 18px !important;
    }

    .logo h1 span {
        display: block;
        font-size: 12px;
        margin-top: -5px;
    }

    /* Property Detail Stats Fix */
    .stat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .stats-container {
        padding: 20px !important;
    }

    /* Filter Bar on Properties Page */
    .filter-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px !important;
        position: relative !important;
        top: 0 !important;
    }

    .filter-item {
        width: 100%;
    }

    .filter-item select {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 36px;
    }
}