/* ============================================
   RESET & BASE - Premium Real Estate Colors
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f7f4;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a2e;
}

.section-header h2 .sub-heading {
    font-weight: 400;
    font-size: 1.4rem;
    color: #8a7a6a;
}

.section-header p {
    color: #4a4a5a;
    font-size: 1.1rem;
    margin-top: 8px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #1a2a4a;
    color: #fff;
    border-color: #1a2a4a;
}

.btn-primary:hover {
    background: #c9a84c;
    border-color: #c9a84c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1a2a4a;
    border-color: #1a2a4a;
}

.btn-secondary:hover {
    background: #1a2a4a;
    color: #fff;
    transform: translateY(-2px);
}

.btn-gold {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.btn-gold:hover {
    background: #b8963a;
    border-color: #b8963a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-quote {
    background: #c9a84c;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #b8963a !important;
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: #fff;
    border-bottom: 2px solid #e8e4de;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a2a4a;
}

.logo span {
    color: #c9a84c;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color 0.3s;
    position: relative;
    color: #1a2a4a;
}

.nav-menu li a:hover {
    color: #c9a84c;
}

.nav-menu li a.active {
    color: #c9a84c;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c9a84c;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: #1a2a4a;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f8f7f4 0%, #edebe6 100%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #1a2a4a;
}

.hero-text h1 .amp {
    color: #c9a84c;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #3a3a4a;
    margin: 16px 0 12px;
}

.hero-description {
    font-size: 1rem;
    color: #4a4a5a;
    margin-bottom: 24px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 42, 74, 0.15);
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid #e8e4de;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #f0ede8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #c9a84c;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a2a4a;
}

.feature-card p {
    color: #4a4a5a;
    font-size: 0.95rem;
}

/* ============================================
   RENTALS
   ============================================ */
.rentals {
    padding: 40px 0;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rental-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.08);
}

.rental-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.rental-body {
    padding: 24px;
}

.rental-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a2a4a;
}

.badge {
    display: inline-block;
    background: #ede8e0;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin: 8px 0 12px;
    color: #1a2a4a;
}

.rental-body p {
    color: #4a4a5a;
    margin-bottom: 12px;
}

.rental-body ul {
    margin: 12px 0 16px;
}

.rental-body ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 0.95rem;
    color: #3a3a4a;
}

.rental-body ul li i {
    color: #c9a84c;
    font-size: 0.7rem;
}

/* ============================================
   BOARD
   ============================================ */
.board {
    padding: 40px 0;
}

.board-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 30px;
}

.board-tags .tag {
    background: #e8e4de;
    padding: 6px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2a4a;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.board-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #e8e4de;
    text-align: center;
    transition: all 0.3s ease;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.08);
}

.board-image {
    height: 160px;
    border-radius: 16px;
    background: #eae5dd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px;
    margin-bottom: 12px;
}

.board-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 12px;
}

.real-estate-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='%238a7a6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-4 0a1 1 0 01-1-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 01-1 1'/%3E%3C/svg%3E");
}

.equipment-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='50' height='50' viewBox='0 0 24 24' fill='none' stroke='%238a7a6a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3Cpath d='M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06A1.65 1.65 0 004.68 15a1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06A1.65 1.65 0 009 4.68a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z'/%3E%3C/svg%3E");
}

.status {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.status.available {
    color: #1a7a3a;
    background: #e2f0e3;
}

.status.soon {
    color: #b8963a;
    background: #f7f0de;
}

.board-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a2a4a;
}

.board-location {
    color: #5b554b;
    font-size: 0.9rem;
}

/* ============================================
   WHY PREVIEW
   ============================================ */
.why-preview {
    padding: 40px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 24px;
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.08);
}

.why-card .number {
    font-weight: 700;
    font-size: 2.2rem;
    color: #c9a84c;
    opacity: 0.4;
    letter-spacing: -1px;
}

.why-card h3 {
    font-size: 1.15rem;
    margin: 8px 0 6px;
    color: #1a2a4a;
}

.why-card p {
    color: #4a4a5a;
    font-size: 0.95rem;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 40px 0;
}

.cta-box {
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3a5a 100%);
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a2a4a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.footer-brand p {
    color: #b0b0c0;
    font-size: 0.95rem;
}

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

.footer-links a {
    color: #d0d0e0;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #8888a0;
    font-size: 0.9rem;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: #fff;
    padding: 40px 0;
    border-bottom: 2px solid #e8e4de;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a2a4a;
}

.page-header p {
    font-size: 1.15rem;
    color: #4a4a5a;
    margin-top: 4px;
}

/* ============================================
   FILTERS
   ============================================ */
.filters {
    padding: 24px 0;
    background: #fff;
}

.filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-select,
.filter-search {
    padding: 10px 18px;
    border: 1px solid #d0ccc4;
    border-radius: 50px;
    font-family: inherit;
    background: #fcfaf7;
    font-size: 0.95rem;
    flex: 1;
    min-width: 150px;
    color: #1a2a4a;
}

.filter-search {
    flex: 2;
    min-width: 200px;
}

.filter-select:focus,
.filter-search:focus {
    outline: none;
    border-color: #c9a84c;
}

/* ============================================
   LISTINGS (Property & Equipment)
   ============================================ */
.listings {
    padding: 30px 0 50px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.listing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e4de;
    transition: all 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(26, 42, 74, 0.1);
}

.listing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.listing-body {
    padding: 18px 20px 22px;
}

.listing-body .status {
    margin-bottom: 6px;
}

.listing-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a4a;
}

.listing-body .location,
.listing-body .category {
    color: #5b554b;
    font-size: 0.9rem;
    margin: 4px 0;
}

.listing-body .location i {
    color: #c9a84c;
    margin-right: 4px;
}

.listing-body .details {
    font-size: 0.95rem;
    margin: 4px 0;
    color: #3a3a4a;
}

.listing-body .features {
    font-size: 0.9rem;
    color: #5b554b;
    margin-top: 4px;
}

/* ============================================
   WHY US PAGE
   ============================================ */
.values {
    padding: 50px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #e8e4de;
}

.value-card .number {
    font-weight: 700;
    font-size: 2.5rem;
    color: #c9a84c;
    opacity: 0.3;
    letter-spacing: -1px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin: 6px 0 4px;
    color: #1a2a4a;
}

.value-card .value-sub {
    color: #4a4a5a;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-card ul li {
    padding: 4px 0;
    color: #3a3a4a;
    font-size: 0.95rem;
}

.value-card ul li::before {
    content: "✓ ";
    color: #c9a84c;
    font-weight: 700;
}

/* Team */
.team {
    padding: 40px 0;
}

.team-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.team-wrapper img {
    flex: 1;
    border-radius: 20px;
    height: 300px;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: #1a2a4a;
}

.team-text p {
    color: #3a3a4a;
    margin-bottom: 12px;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #e8e4de;
}

.testimonial-card i {
    color: #c9a84c;
    font-size: 1.5rem;
    opacity: 0.4;
    margin-bottom: 8px;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #3a3a4a;
}

.testimonial-card .client {
    font-weight: 600;
    margin-top: 8px;
    color: #1a2a4a;
}

/* Trust */
.trust {
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item i {
    font-size: 2rem;
    color: #c9a84c;
}

.trust-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 6px 0 2px;
    color: #1a2a4a;
}

.trust-item p {
    color: #4a4a5a;
    font-weight: 500;
}

/* ============================================
   SERVICE AREA
   ============================================ */
.map-section {
    padding: 30px 0;
}

.map-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e8e4de;
}

.map-wrapper .map-illustration {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-top: 1px solid #e8e4de;
}

.map-caption {
    text-align: center;
    padding: 16px;
    color: #4a4a5a;
}

.counties {
    padding: 30px 0;
}

.counties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.county-tag {
    background: #fff;
    padding: 8px 28px;
    border-radius: 50px;
    border: 1px solid #d0ccc4;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #1a2a4a;
}

.county-tag:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.counties-note {
    text-align: center;
    margin-top: 20px;
    color: #5b554b;
    font-style: italic;
}

.coverage {
    padding: 30px 0;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.coverage-item {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e8e4de;
}

.coverage-item i {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 8px;
}

.coverage-item h3 {
    font-size: 1.1rem;
    color: #1a2a4a;
}

.coverage-item p {
    color: #5b554b;
    font-size: 0.9rem;
}

.coverage-note {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e8e4de;
    margin-top: 30px;
    color: #3a3a4a;
}

.coverage-note i {
    color: #c9a84c;
    margin-right: 8px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 40px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid #e8e4de;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a2a4a;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-size: 0.98rem;
    color: #3a3a4a;
}

.contact-detail i {
    width: 24px;
    color: #c9a84c;
    font-size: 1.1rem;
}

.contact-illustration {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin: 20px 0;
    border: 1px solid #e8e4de;
}

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

/* Form */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #1a2a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #d0ccc4;
    border-radius: 50px;
    font-family: inherit;
    background: #fcfaf7;
    font-size: 0.95rem;
    transition: border 0.3s;
    color: #1a2a4a;
}

.form-group textarea {
    border-radius: 16px;
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a84c;
}

.form-note {
    font-size: 0.8rem;
    color: #6b6358;
    margin-top: 12px;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        height: 280px;
    }

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

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

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

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

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .team-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .team-wrapper img {
        width: 100%;
    }

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

    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0;
        gap: 12px;
        border-top: 1px solid #e8e4de;
        margin-top: 12px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        text-align: center;
        padding: 8px 0;
    }

    .nav-menu li a.active::after {
        display: none;
    }

    .btn-quote {
        width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image img {
        height: 220px;
    }

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

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

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

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

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

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

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

    .counties-grid {
        gap: 8px;
    }

    .county-tag {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-select,
    .filter-search {
        min-width: unset;
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .listing-card img {
        height: 180px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .btn-lg {
        padding: 14px 32px;
    }

    .btn-sm {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-image img {
        height: 180px;
    }

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

    .logo a {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-box {
        padding: 24px 16px;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }

    .contact-wrapper {
        padding: 16px;
    }

    .rental-body {
        padding: 16px;
    }

    .value-card {
        padding: 20px;
    }

    .why-card {
        padding: 20px;
    }
}