/* =====================================================
   Fickling Management Services - Main Stylesheet
   Version: 1.0.0
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    /* Brand Colors */
    --fc-green: #025332;
    --fc-green-dark: #00351F;
    --fc-red: #ED1B24;
    --fc-light-gray: #F5F5F5;
    --fc-text-dark: #222;
    --fc-text-body: #555;
    --fc-white: #ffffff;
    --fc-medium-gray: #e9ecef;
    --fc-border-gray: #dee2e6;
    
    /* Typography */
    --font-heading: "trajan-pro-3", "Times New Roman", serif;
    --font-body: "Poppins", sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --section-padding-mobile: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fc-text-body);
    background-color: var(--fc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ----- Skip Link (ADA Compliance) ----- */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: var(--fc-white);
    outline: 2px solid var(--fc-red);
    outline-offset: 2px;
}

/* ----- Screen Reader Only (ADA) ----- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----- Focus Styles (ADA) ----- */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--fc-green-dark);
    outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--fc-green-dark);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--fc-text-dark);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }

/* ----- Container Override ----- */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1400px !important;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--fc-green-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--fc-green-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ----- Utility Bar ----- */
.utility-bar {
    background-color: var(--fc-green-dark);
    padding: 8px 0;
}

.utility-nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 15px;
    gap: 0;
}

.utility-nav li {
    /* No border dividers - spacing handled by padding */
}

.utility-nav li:last-child {
    /* No special styling needed */
}

.utility-nav a {
    display: block;
    padding: 4px 16px;
    color: var(--fc-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    transition: all var(--transition-fast);
    border-radius: 3px;
}

.utility-nav a:hover {
    color: var(--fc-white);
    background-color: rgba(255,255,255,0.15);
    text-decoration: none;
}

.utility-nav li.active a {
    background-color: #000;
    border-radius: 3px;
    font-weight: 600;
    color: var(--fc-white);
}

.utility-nav li.active a:hover {
    color: var(--fc-white);
}

/* ----- Main Navigation ----- */
.main-nav {
    background-color: var(--fc-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.nav-logo img {
    height: 55px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
    gap: 10px;
}

.nav-links li a {
    display: block;
    padding: 10px 16px;
    color: var(--fc-text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links li a:hover,
.nav-links li.active a {
    color: var(--fc-green-dark);
}

.nav-links .nav-divider {
    color: var(--fc-border-gray);
    font-weight: 300;
    font-size: 16px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--fc-red);
    transition: width var(--transition-medium);
}

.nav-links li a:hover::after,
.nav-links li.active a::after {
    width: 80%;
}

/* ----- Nav Dropdown Menus ----- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--fc-white);
    border-radius: 8px;
    padding: 8px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1000;
    white-space: nowrap;
}

/* Arrow pointer */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--fc-white);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a,
.nav-links .nav-dropdown .nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--fc-green-dark) !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:hover,
.nav-links .nav-dropdown .nav-dropdown-menu a:hover {
    background-color: var(--fc-light-gray);
    border-left-color: var(--fc-green);
    color: var(--fc-green) !important;
}

/* Remove underline effect from dropdown toggle */
.nav-dropdown .nav-dropdown-toggle::after {
    display: none;
}

/* Remove underline effect from dropdown menu links */
.nav-dropdown-menu a::after {
    display: none !important;
}

/* Keep parent link style consistent */
.nav-dropdown:hover > .nav-dropdown-toggle {
    color: var(--fc-green-dark);
}

/* ----- Hamburger Button ----- */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    margin-left: 15px;
}

.hamburger-btn span {
    display: block;
    width: 36px;
    height: 5px;
    background-color: var(--fc-green-dark);
    transition: all var(--transition-fast);
}

/* ----- Mega Menu (Dropdown Style) ----- */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 700px;
    background-color: var(--fc-green-dark);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Triangle arrow at top - points at hamburger center */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 23px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--fc-green-dark);
}

.mega-menu-inner {
    padding: 30px 35px 35px;
}

.mega-menu .row {
    display: flex;
}

.mega-menu-col {
    padding: 0 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.mega-menu-col:last-child {
    border-right: none;
}

.mega-menu-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fc-red);
}

.mega-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-links li {
    margin-bottom: 10px;
}

.mega-menu-links a {
    color: var(--fc-white);
    font-size: 14px;
    font-weight: 400;
    transition: all var(--transition-fast);
    opacity: 0.9;
}

.mega-menu-links a:hover {
    color: var(--fc-white);
    opacity: 1;
    padding-left: 5px;
}

.mega-menu-footer {
    display: none;
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ----- Mobile Menu (Slide from Left) ----- */
.menu-backdrop {
    display: none; /* Not needed for full-width menu */
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--fc-white);
    z-index: 9999;
    transform: translateX(-100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

/* Tablet/Desktop (768px-1199px): Slide from right, 380px wide */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .mobile-menu-overlay {
        left: auto;
        right: 0;
        width: 380px;
        transform: translateX(100%);
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    }
    
    .mobile-menu-overlay.active {
        transform: translateX(0);
    }
    
    .menu-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    
    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--fc-white);
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.mobile-logo-img {
    height: 50px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--fc-green-dark);
    font-size: 32px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: scale(1.1);
}

.mobile-nav {
    flex: 1;
    background: linear-gradient(180deg, var(--fc-green-dark) 0%, var(--fc-green-dark) 100%);
    padding: 0;
    overflow-y: auto;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-list > li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav-list > li > a {
    display: block;
    padding: 16px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-nav-list > li > a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-nav-list > li.has-submenu {
    position: relative;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-item > a {
    flex: 1;
    display: block;
    padding: 16px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-nav-item > a:hover {
    background-color: rgba(255,255,255,0.1);
}

.submenu-toggle {
    width: 50px;
    height: 52px;
    background: none;
    border: none;
    color: var(--fc-white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.submenu-toggle:hover {
    background-color: rgba(255,255,255,0.1);
}

.submenu-toggle i {
    transition: transform 0.3s ease;
}

.submenu-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(255,255,255,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.open {
    max-height: 500px;
}

.mobile-submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px 12px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.mobile-submenu li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.mobile-submenu li a i {
    font-size: 12px;
    opacity: 0.7;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ----- Mobile Divisions Section ----- */
.mobile-divisions {
    background-color: var(--fc-green-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.divisions-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.divisions-label {
    display: block;
    padding: 16px 25px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    flex: 1;
}

.divisions-submenu {
    background-color: rgba(0,0,0,0.2);
}

.divisions-submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px 14px 30px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.divisions-submenu li a:hover {
    background-color: rgba(255,255,255,0.1);
}

.divisions-submenu li a i {
    font-size: 12px;
    opacity: 0.7;
}

.divisions-submenu li a i.fa-map-marker-alt {
    margin-right: 10px;
    opacity: 1;
}

/* Active division - red highlight */
.divisions-submenu li.active-division {
    background-color: var(--fc-red);
}

.divisions-submenu li.active-division a {
    color: var(--fc-white);
    font-weight: 600;
}

.divisions-submenu li.active-division a:hover {
    background-color: transparent;
}

/* ----- Hero Section with Video ----- */
.hero-video-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(34,34,34,0.4) 0%, rgba(34,34,34,0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    color: var(--fc-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    color: var(--fc-white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Hero Headline - Trajan Pro Small Caps */
.hero-headline {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 600;
    color: var(--fc-white);
    font-variant-caps: small-caps;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

/* Hero Subheadline - Poppins */
.hero-subheadline {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--fc-white);
    margin-bottom: 0;
    opacity: 0.95;
    letter-spacing: 0.5px;
}

/* ----- Buttons ----- */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--fc-red);
    border-color: var(--fc-red);
    color: var(--fc-white);
}

.btn-primary:hover {
    background-color: #c41920;
    border-color: #c41920;
    color: var(--fc-white);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--fc-white);
    color: var(--fc-white);
}

.btn-outline-light:hover {
    background-color: var(--fc-white);
    color: var(--fc-green-dark);
}

.btn-outline-green {
    background-color: transparent;
    border: 2px solid var(--fc-green-dark);
    color: var(--fc-green-dark);
}

.btn-outline-green:hover {
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
}

/* Pill Button with Arrow */
.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 12px 12px 30px;
    background-color: var(--fc-white);
    border: 2px solid var(--fc-green);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.btn-pill:hover {
    text-decoration: none;
    background-color: var(--fc-green);
    border-color: var(--fc-green);
    color: var(--fc-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-pill-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.btn-pill-arrow i {
    color: var(--fc-white);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.btn-pill:hover .btn-pill-arrow {
    background-color: var(--fc-white);
}

.btn-pill:hover .btn-pill-arrow i {
    color: var(--fc-green);
}

/* Small pill button variant */
.btn-pill-sm {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 5px 5px 18px;
    background-color: var(--fc-white);
    border: 2px solid var(--fc-green);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    text-decoration: none;
    transition: all var(--transition-medium);
}

.btn-pill-sm:hover {
    text-decoration: none;
    background-color: var(--fc-green);
    border-color: var(--fc-green);
    color: var(--fc-white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-pill-sm .btn-pill-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--fc-green);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.btn-pill-sm .btn-pill-arrow i {
    color: var(--fc-white);
    font-size: 12px;
    transition: color var(--transition-fast);
}

.btn-pill-sm:hover .btn-pill-arrow {
    background-color: var(--fc-white);
}

.btn-pill-sm:hover .btn-pill-arrow i {
    color: var(--fc-green);
}

/* ----- Content Sections ----- */
.section {
    padding: var(--section-padding) 0;
}

/* Commercial intro buttons */
.commercial-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Section subhead - Poppins bold */
.section-subhead-italic {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 15px;
}

/* Emergency headline - Trajan small caps */
.emergency-headline {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 2px;
    color: var(--fc-green-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.emergency-phone {
    color: var(--fc-red);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.emergency-phone:hover {
    color: var(--fc-red);
    text-decoration: underline;
}

.emergency-warning {
    margin-top: 15px;
}

/* Section title - Trajan small caps */
.section-title-trajan {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 2px;
    color: var(--fc-green-dark);
    margin-bottom: 30px;
}

/* Charge conditions - 3 columns with red left border */
.charge-conditions {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.charge-condition {
    flex: 1;
    padding-left: 20px;
    border-left: 3px solid var(--fc-red);
}

.charge-condition p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.section-gray,
.section-light-gray {
    background-color: var(--fc-light-gray);
}

.section-green {
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
}

.section-green h2,
.section-green h3 {
    color: var(--fc-white);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Red line under section headings */
.section-heading h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* ----- Cards ----- */
.service-card {
    background-color: var(--fc-white);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all var(--transition-medium);
    height: 100%;
}

/* ----- Section Title Green (Trajan Small Caps) ----- */
.section-title-green {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--fc-green-dark);
    font-variant-caps: small-caps;
    margin-bottom: 30px;
}

.section-title-green::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* ----- Featured Rentals Section ----- */
.featured-rentals-section {
    background-color: var(--fc-white);
}

.featured-rentals-section .section-heading p {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1rem;
    line-height: 1.8;
}

/* ----- Rental Cards ----- */
.rental-card {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 15px;
}

.rental-card:hover {
    text-decoration: none;
}

.rental-card-image {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.rental-card:hover .rental-card-image {
    transform: scale(1.05);
}

.rental-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(34,34,34,0.85) 0%, rgba(34,34,34,0.5) 35%, transparent 60%);
    border-radius: 15px;
    z-index: 1;
}

/* Just Listed Badge */
.rental-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 2;
}

/* Rental Card Overlay Content */
.rental-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
}

.rental-card-price {
    font-family: var(--font-body);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--fc-white);
    margin-bottom: 5px;
}

.rental-card-address {
    font-size: 14px;
    color: var(--fc-white);
    margin-bottom: 12px;
    opacity: 0.95;
}

.rental-card-details {
    font-size: 13px;
    color: var(--fc-white);
    opacity: 0.85;
}

/* Arrow Button */
.rental-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.rental-card-arrow i {
    color: var(--fc-white);
    font-size: 14px;
}

.rental-card:hover .rental-card-arrow {
    background-color: var(--fc-red);
}

/* Rentals Grid */
.rentals-grid {
    margin-top: 20px;
}

/* ----- Section Title Poppins ----- */
.section-title-poppins {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 25px;
}

/* ----- Search By Section ----- */
.search-by-section {
    padding-bottom: 60px;
}

/* ----- Category Cards ----- */
.category-card {
    display: block;
    text-decoration: none;
    border-radius: 15px;
    overflow: hidden;
}

.category-card:hover {
    text-decoration: none;
}

.category-card-image {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    overflow: hidden;
    transition: transform var(--transition-medium);
}

.category-card:hover .category-card-image {
    transform: scale(1.02);
}

.category-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(34,34,34,0.75) 0%, rgba(34,34,34,0.3) 40%, transparent 70%);
    border-radius: 15px;
    z-index: 1;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.category-card-title {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--fc-white);
    margin: 0;
    flex: 1;
    padding-right: 15px;
}

.category-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--fc-green-dark);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color var(--transition-fast);
}

.category-card-arrow i {
    color: var(--fc-white);
    font-size: 16px;
}

.category-card:hover .category-card-arrow {
    background-color: var(--fc-red);
}

/* ----- Tenant Contact Block ----- */
.tenant-contact-block {
    margin-top: 50px;
    padding-top: 40px;
}

.tenant-contact-block p {
    font-size: 1rem;
    color: var(--fc-text-body);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.tenant-contact-block p strong {
    color: var(--fc-text-dark);
}

.tenant-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ----- Section 4: Ownership Experience ----- */
.ownership-experience-section {
    position: relative;
    background: radial-gradient(ellipse at center, var(--fc-green-dark) 0%, #0f1412 100%);
    overflow: hidden;
    padding: 80px 0 100px;
}

.ownership-experience-section .container {
    position: relative;
}

.ownership-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.ownership-headline {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-white);
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.ownership-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
}

.ownership-body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--fc-white);
    line-height: 1.7;
    margin-bottom: 30px;
}

.ownership-tagline {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-white);
    line-height: 1.4;
    margin-bottom: 5px;
}

.ownership-stat {
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 700;
    color: var(--fc-white);
    line-height: 1.1;
    margin: 0;
}

.ownership-tree {
    position: absolute;
    right: 15px;
    bottom: -130px;
    width: 600px;
    z-index: 1;
    opacity: 0.7;
}

.ownership-tree img {
    width: 100%;
    height: auto;
    display: block;
}

/* ----- Section 5: Why Entrust Your Property ----- */
.why-entrust-section {
    padding: 0;
}

.why-entrust-left {
    background-color: var(--fc-white);
    padding: 80px 60px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-entrust-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-green-dark);
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.why-entrust-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
}

.why-entrust-body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--fc-text-body);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 340px;
}

.why-entrust-body strong {
    font-weight: 700;
    color: var(--fc-text-dark);
}

.why-entrust-right {
    background-color: var(--fc-light-gray);
    padding: 60px 80px;
    height: 100%;
    display: flex;
    align-items: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.benefit-check {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 3px solid var(--fc-green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
}

.benefit-check i {
    color: var(--fc-red);
    font-size: 30px;
}

.benefit-check::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 30px;
    background-color: var(--fc-red);
}

/* Centered benefits list variant for About page */
.benefits-list-centered {
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list-centered .benefit-item {
    padding: 15px 0;
}

/* Two-column benefits list */
.benefits-list-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
}

.benefits-list-two-col .benefit-item {
    padding: 12px 0;
}

/* Highlight Callout */
.highlight-callout {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--fc-green-dark);
    color: var(--fc-white);
    padding: 20px 30px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 18px;
}

.highlight-callout i {
    font-size: 28px;
    color: var(--fc-red);
}

.highlight-callout strong {
    color: var(--fc-red);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding-left: 80px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: var(--fc-red);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -80px;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--fc-green);
    color: var(--fc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(2,89,50,0.3);
    z-index: 1;
}

.timeline-content {
    background: var(--fc-white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--fc-green);
}

.timeline-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 0;
}

/* ----- Portal Graphic ----- */
.portal-graphic {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.portal-graphic:hover .portal-graphic-inner {
    background: var(--fc-green-dark);
    transform: scale(1.05);
}

.portal-graphic-inner {
    width: 180px;
    height: 180px;
    background: var(--fc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(2,89,50,0.3);
    transition: all var(--transition-normal);
}

.portal-graphic-inner i {
    font-size: 70px;
    color: var(--fc-white);
}

.portal-graphic-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 4px solid var(--fc-red);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

/* ----- Stats Bar ----- */
.stats-bar {
    background: var(--fc-green-dark);
    padding: 30px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 22px;
    color: var(--fc-red);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--fc-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- Feature Cards Grid ----- */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--fc-white);
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-bottom-color: var(--fc-red);
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: var(--fc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background var(--transition-fast);
}

.feature-card:hover .feature-card-icon {
    background: var(--fc-green-dark);
}

.feature-card-icon i {
    font-size: 28px;
    color: var(--fc-white);
}

.feature-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 10px;
}

.feature-card-text {
    font-size: 14px;
    color: var(--fc-text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section title left aligned variant */
.section-title-poppins.text-left {
    text-align: left;
}

/* ----- Quote Form Section ----- */
.quote-form-section {
    background: var(--fc-green);
    padding: 60px 0;
}

.quote-form-wrapper {
    background: var(--fc-white);
    border-radius: 12px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.quote-form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--fc-green-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 5px;
}

.quote-form-subtitle {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--fc-red);
    text-align: center;
    margin-bottom: 30px;
}

.quote-form .form-group {
    margin-bottom: 20px;
}

.quote-form .form-label {
    color: var(--fc-green-dark);
}

/* Form Validation Styles - matches main site */
.quote-form .form-control.is-valid,
.quote-form.was-validated .form-control:valid {
    border-color: var(--fc-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23025932' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: calc(1.5em + .75rem);
}

.quote-form .form-control.is-invalid,
.quote-form.was-validated .form-control:invalid {
    border-color: var(--fc-red);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ED1B24' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23ED1B24' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    padding-right: calc(1.5em + .75rem);
}

.quote-form .form-control.is-invalid:focus,
.quote-form.was-validated .form-control:invalid:focus {
    border-color: var(--fc-red);
    box-shadow: 0 0 0 3px rgba(237, 27, 36, 0.1);
}

.quote-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 5px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fc-red);
}

.quote-form.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* White pill button variant */
.btn-pill-white {
    background: var(--fc-green);
    border-color: var(--fc-green);
    color: var(--fc-white);
}

.btn-pill-white .btn-pill-arrow {
    background: var(--fc-white);
}

.btn-pill-white .btn-pill-arrow i {
    color: var(--fc-green);
}

.btn-pill-white:hover {
    background: var(--fc-green-dark);
    border-color: var(--fc-green-dark);
    color: var(--fc-white);
}

.btn-pill-white:hover .btn-pill-arrow {
    background: var(--fc-red);
}

.btn-pill-white:hover .btn-pill-arrow i {
    color: var(--fc-white);
}

.benefit-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-green-dark);
    padding-left: 15px;
}

/* ----- Section 6: Commercial & Residential Split ----- */
.services-split-section {
    position: relative;
    padding: 0;
}

.services-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-split-section .container-fluid {
    position: relative;
    z-index: 2;
}

.services-split-section .row {
    margin: 0;
}

.services-split-section .col-lg-6 {
    padding: 0;
}

.services-split-panel {
    padding: 80px 60px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.services-split-light {
    background-color: rgba(2, 83, 50, 0.85);
}

.services-split-dark {
    background-color: rgba(0, 53, 31, 0.85);
}

.services-split-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-white);
    line-height: 1.3;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.services-split-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
}

.services-split-body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--fc-white);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}

/* ----- Section 7: Need Property Management Services CTA ----- */
.cta-services-section {
    background-color: var(--fc-white);
    padding: 130px 0 80px;
}

.cta-services-section .container {
    position: relative;
    max-width: 1100px;
}

.cta-services-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.cta-services-headline {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 700;
    color: var(--fc-green-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.cta-services-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
}

.cta-services-subtext {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-text-body);
    line-height: 1.4;
    margin-bottom: 25px;
}

.cta-services-tree {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    z-index: 1;
    opacity: 0.7;
}

.cta-services-tree img {
    width: 100%;
    height: auto;
    display: block;
}

/* ----- Secondary Page Header (Green Background) ----- */
.secondary-header {
    background-image: url('/images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
}

.secondary-header-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 3px;
    color: var(--fc-white);
    margin: 0 0 15px;
}

.secondary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* ----- Tertiary Page Header (Light Gray Background) ----- */
.tertiary-header {
    background-image: url('/images/tertiary-page-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 0;
    text-align: center;
}

.tertiary-header-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 3px;
    color: var(--fc-green-dark);
    margin: 10px 0 0;
}

.tertiary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* Legacy page-header class (alias for secondary) */
.page-header {
    background-image: url('/images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
}

.page-header-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 3px;
    color: var(--fc-white);
    margin: 0 0 15px;
}

.page-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* ----- ADA Compliance Page ----- */
.ada-content-section {
    padding: 60px 0;
}

.ada-content-section h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: var(--fc-green-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.ada-content-section h2 i {
    margin-right: 10px;
    color: var(--fc-green-dark);
}

.ada-content-section p,
.ada-content-section li {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--fc-text-body);
}

.ada-content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.ada-content-section li {
    margin-bottom: 10px;
}

.ada-content-section a {
    color: var(--fc-green-dark);
    text-decoration: underline;
}

.ada-content-section a:hover {
    color: var(--fc-green-dark);
}

.commitment-box {
    background: var(--fc-light-gray);
    border-left: 4px solid var(--fc-green-dark);
    padding: 25px 30px;
    margin: 0 0 30px;
    border-radius: 0 8px 8px 0;
}

.commitment-box p {
    margin-bottom: 0;
    font-size: 17px;
}

.contact-box {
    background: var(--fc-green-dark);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    font-variant-caps: small-caps;
    color: white;
    margin-bottom: 15px;
}

.contact-box h3 i {
    margin-right: 10px;
}

.contact-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-box a {
    color: white;
    text-decoration: underline;
}

.contact-box a:hover {
    color: rgba(255,255,255,0.8);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.contact-info-item i {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.last-updated {
    font-size: 14px;
    color: var(--fc-text-body);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fc-light-gray);
    border-radius: 50%;
}

.service-card-icon i {
    font-size: 32px;
    color: var(--fc-green-dark);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

/* ----- Footer ----- */
.site-footer {
    color: var(--fc-white);
}

.footer-main {
    background: radial-gradient(ellipse at center, var(--fc-green-dark) 0%, #0f1412 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    flex-shrink: 0;
    max-width: 200px;
}

.footer-logo img {
   /* height: 55px; */
    width: auto;
    margin-bottom: 20px;
}

.footer-brand-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--fc-white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    color: var(--fc-red);
}

.footer-links-wrapper {
    display: flex;
    flex: 1;
    gap: 40px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--fc-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--fc-red);
    text-decoration: none;
}

.footer-bottom {
    background-color: #00351F;
    padding: 12px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom .copyright {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--fc-white);
}

.footer-bottom-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--fc-white);
    font-family: var(--font-body);
    font-size: 12px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* ----- Portal Features List ----- */
.portal-features-section {
    padding: 60px 0;
}

.portal-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portal-feature-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.portal-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border: 3px solid var(--fc-green-dark);
    border-radius: 50%;
    margin-right: 20px;
}

.portal-feature-icon i {
    color: var(--fc-red);
    font-size: 30px;
}

.portal-feature-bar {
    width: 4px;
    height: 30px;
    background-color: var(--fc-red);
    margin-right: 20px;
}

.portal-feature-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--fc-text-dark);
}

/* ----- Tenant Forms Download Section ----- */
.tenant-forms-section {
    padding: 60px 0 40px;
}

.form-download-item {
    padding: 30px 0;
}

.form-download-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.form-download-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--fc-light-gray);
    border-radius: 8px;
}

.form-download-icon i {
    font-size: 28px;
    color: var(--fc-red);
}

.form-download-info {
    flex: 1;
}

.form-download-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-variant-caps: small-caps;
    letter-spacing: 1px;
    color: var(--fc-green-dark);
    margin: 0 0 15px;
}

.form-download-border {
    height: 3px;
    background-color: var(--fc-red);
    margin-top: 25px;
}

/* ----- Forms ----- */
.form-control {
    height: 50px;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 1px solid var(--fc-border-gray);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    border-color: var(--fc-green-dark);
    box-shadow: 0 0 0 3px rgba(2,89,50,0.1);
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--fc-text-dark);
}

/* Form label styles */
.form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--fc-green-dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--fc-red);
    margin-left: 2px;
}

/* Maintenance form specific */
.maintenance-form .form-group {
    margin-bottom: 25px;
}

.maintenance-form .row .form-control {
    margin-bottom: 10px;
}

/* Checkboxes */
.maintenance-checkboxes .form-check {
    padding-left: 30px;
    margin-bottom: 12px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-left: -30px;
    margin-top: 2px;
    border: 2px solid var(--fc-green-dark);
    border-radius: 3px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--fc-green);
    border-color: var(--fc-green);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(2,89,50,0.2);
}

.form-check-label {
    font-size: 15px;
    color: var(--fc-text-dark);
    cursor: pointer;
}

/* Radio buttons */
.form-check-input[type="radio"] {
    border-radius: 50%;
}

.form-check-input[type="radio"]:checked {
    background-color: var(--fc-white);
    border-color: var(--fc-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%23ED1B24'/%3e%3c/svg%3e");
}

/* Honeypot field - hidden from users */
.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
}

/* Form success/error messages */
.form-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-message-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form result icons */
.form-result-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.form-result-icon.success {
    color: var(--fc-green);
}

.form-result-icon.error {
    color: var(--fc-red);
}

/* ----- About/Why Fickling Page ----- */

/* Lead text */
.lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--fc-text-body);
}

/* Value Proposition Cards */
.value-prop-card {
    background: var(--fc-white);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--fc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop-icon i {
    font-size: 32px;
    color: var(--fc-white);
}

.value-prop-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 15px;
}

.value-prop-text {
    font-size: 15px;
    color: var(--fc-text-body);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Why Benefit Rows */
.why-benefit-row {
    padding: 35px 0;
    border-bottom: 1px solid var(--fc-border-gray);
}

.why-benefit-row:last-child {
    border-bottom: none;
}

.why-benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--fc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.why-benefit-icon i {
    font-size: 32px;
    color: var(--fc-white);
}

.why-benefit-title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 15px;
}

.why-benefit-row p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 15px;
}

.why-benefit-row p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: var(--fc-green-dark);
    padding: 60px 0;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: var(--fc-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-subtext {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.cta-phone {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--fc-white);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.cta-phone:hover {
    color: var(--fc-red);
    text-decoration: none;
}

/* ----- FAQ Accordion ----- */
.faq-accordion {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-header {
    background: var(--fc-white);
}

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--fc-white);
    border: 2px solid var(--fc-border-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.faq-toggle:hover {
    border-color: var(--fc-green);
}

.faq-toggle[aria-expanded="true"] {
    background: var(--fc-green-dark);
    border-color: var(--fc-green-dark);
    border-radius: 8px 8px 0 0;
}

.faq-toggle[aria-expanded="true"] .faq-question {
    color: var(--fc-white);
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    background: var(--fc-white);
}

.faq-toggle[aria-expanded="true"] .faq-icon i {
    color: var(--fc-green-dark);
}

.faq-toggle[aria-expanded="true"] .faq-icon i::before {
    content: "\f068";
}

.faq-question {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-green-dark);
    flex: 1;
    padding-right: 15px;
    transition: color var(--transition-fast);
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--fc-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.faq-icon i {
    color: var(--fc-white);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.faq-body {
    padding: 25px;
    background: var(--fc-white);
    border: 2px solid var(--fc-green-dark);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.faq-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 15px;
}

.faq-body p:last-child {
    margin-bottom: 0;
}

.faq-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-body ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 8px;
}

.faq-body a {
    color: var(--fc-green);
    text-decoration: underline;
}

.faq-body a:hover {
    color: var(--fc-green-dark);
}

/* ----- FAQ Sidebar ----- */
.faq-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--fc-white);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.sidebar-heading {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--fc-red);
}

/* Quick Links Icon Grid */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background: var(--fc-light-gray);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.quick-link-item:hover {
    background: var(--fc-white);
    border-color: var(--fc-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.quick-link-item:hover .quick-link-icon {
    background: var(--fc-green);
}

.quick-link-item:hover .quick-link-icon i {
    color: var(--fc-white);
}

.quick-link-icon {
    width: 50px;
    height: 50px;
    background: var(--fc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all var(--transition-fast);
    border: 2px solid var(--fc-green);
}

.quick-link-icon i {
    font-size: 20px;
    color: var(--fc-green);
    transition: color var(--transition-fast);
}

.quick-link-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--fc-green-dark);
    text-align: center;
    line-height: 1.3;
}

/* Sidebar Contact Card */
.sidebar-contact {
    background: var(--fc-green-dark);
}

.sidebar-contact .sidebar-heading {
    color: var(--fc-white);
    border-bottom-color: var(--fc-red);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: var(--fc-white);
    font-size: 15px;
}

.contact-item i {
    color: var(--fc-red);
    font-size: 18px;
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

.contact-item a {
    color: var(--fc-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--fc-red);
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-headline {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero-subheadline {
        font-size: 1.25rem;
    }
    
    .section-title-green {
        font-size: 24px;
    }
    
    .emergency-headline {
        font-size: 32px;
    }
    
    .section-title-trajan {
        font-size: 28px;
    }
    
    .rental-card-image {
        height: 280px;
    }
    
    .category-card-image {
        height: 240px;
    }
    
    .category-card-title {
        font-size: 1.25rem;
    }
    
    /* Footer reflows on tablet */
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-brand {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        margin-bottom: 15px;
    }
    
    .footer-brand-divider {
        max-width: 200px;
        margin: 0 auto 15px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Section 4 responsive */
    .ownership-headline {
        font-size: 28px;
    }
    
    .ownership-tagline {
        font-size: 18px;
    }
    
    .ownership-stat {
        font-size: 40px;
    }
    
    .ownership-tree {
        width: 450px;
        opacity: 0.4;
    }
    
    /* Section 5 tablet */
    .why-entrust-left {
        padding: 60px 40px;
    }
    
    .why-entrust-right {
        padding: 50px 40px;
    }
    
    .benefit-text {
        font-size: 18px;
    }
    
    /* Section 6 tablet */
    .services-split-panel {
        padding: 60px 40px;
    }
    
    .services-split-headline {
        font-size: 24px;
    }
    
    /* Section 7 tablet */
    .cta-services-headline {
        font-size: 36px;
    }
    
    .cta-services-tree {
        width: 400px;
    }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    /* About/Why Fickling Page Mobile */
    .value-prop-card {
        padding: 30px 20px;
    }
    
    .value-prop-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-prop-icon i {
        font-size: 24px;
    }
    
    .value-prop-title {
        font-size: 20px;
    }
    
    .why-benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-benefit-icon i {
        font-size: 24px;
    }
    
    .why-benefit-title {
        font-size: 20px;
        text-align: center;
    }
    
    .why-benefit-row p {
        text-align: center;
    }
    
    .cta-headline {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .cta-phone {
        font-size: 32px;
    }
    
    /* FAQ Mobile */
    .faq-toggle {
        padding: 15px 18px;
    }
    
    .faq-question {
        font-size: 15px;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .faq-icon i {
        font-size: 12px;
    }
    
    .faq-body {
        padding: 20px;
    }
    
    .faq-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .quick-link-item {
        padding: 15px 8px;
    }
    
    .quick-link-icon {
        width: 40px;
        height: 40px;
    }
    
    .quick-link-icon i {
        font-size: 16px;
    }
    
    .quick-link-label {
        font-size: 11px;
    }
    
    /* Two-column benefits list - stack on mobile */
    .benefits-list-two-col {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    /* Highlight callout mobile */
    .highlight-callout {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        font-size: 16px;
    }
    
    .highlight-callout i {
        font-size: 24px;
    }
    
    /* Timeline mobile */
    .process-timeline {
        padding-left: 60px;
    }
    
    .process-timeline::before {
        left: 22px;
        top: 22px;
        bottom: 22px;
        width: 3px;
    }
    
    .timeline-number {
        left: -60px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-title {
        font-size: 18px;
    }
    
    .timeline-item {
        padding-bottom: 30px;
    }
    
    /* Portal graphic mobile */
    .portal-graphic-inner {
        width: 140px;
        height: 140px;
    }
    
    .portal-graphic-inner i {
        font-size: 50px;
    }
    
    .portal-graphic-ring {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border-width: 3px;
    }
    
    /* Stats bar mobile */
    .stats-bar {
        padding: 20px 0;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon i {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Feature cards mobile - stack */
    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card-icon i {
        font-size: 24px;
    }
    
    .section-title-poppins.text-left {
        text-align: center;
    }
    
    /* Quote form mobile */
    .quote-form-wrapper {
        padding: 30px 20px;
    }
    
    .quote-form-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .quote-form-subtitle {
        font-size: 18px;
    }

    .hero-video-section {
        height: 60vh;
        min-height: 400px;
        background-image: url('/images/hero-poster.jpg');
        background-size: cover;
        background-position: center;
    }
    
    /* Add overlay for mobile hero image */
    .hero-video-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(34,34,34,0.4) 0%, rgba(34,34,34,0.6) 100%);
        z-index: 2;
    }
    
    /* Hide video on mobile - show poster image instead */
    .hero-video-wrapper {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-headline {
        font-size: 30px;
        letter-spacing: 1.5px;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .footer-links-col {
        margin-bottom: 30px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    /* Mega menu stacked columns on mobile */
    .mega-menu {
        right: 10px;
        left: 10px;
        width: auto;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .mega-menu-inner {
        padding: 25px 20px;
    }
    
    .mega-menu .row {
        flex-direction: column;
    }
    
    .mega-menu-col {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 15px 0;
        margin-bottom: 0;
    }
    
    .mega-menu-col:last-child {
        border-bottom: none;
    }
    
    .mega-menu-heading {
        margin-bottom: 10px;
    }
    
    .mega-menu-links li {
        margin-bottom: 8px;
    }
    
    /* Section 4 mobile */
    .ownership-experience-section {
        padding: 60px 0 80px;
    }
    
    .ownership-content {
        max-width: 100%;
    }
    
    .ownership-headline {
        font-size: 24px;
    }
    
    .ownership-body {
        font-size: 15px;
    }
    
    .ownership-tagline {
        font-size: 16px;
    }
    
    .ownership-stat {
        font-size: 32px;
    }
    
    .ownership-tree {
        width: 350px;
        opacity: 0.3;
        right: -50px;
    }
    
    /* Section 5 mobile */
    .why-entrust-section .row {
        flex-direction: column;
    }
    
    .why-entrust-left {
        padding: 50px 30px;
    }
    
    .why-entrust-headline {
        font-size: 24px;
    }
    
    .why-entrust-right {
        padding: 40px 30px;
    }
    
    .benefit-item {
        padding: 15px 0;
    }
    
    .benefit-check {
        width: 3px;
        min-width: 3px;
        height: 30px;
        border: none;
        border-radius: 0;
        background-color: var(--fc-red);
        margin-right: 15px;
    }
    
    .benefit-check i {
        display: none;
    }
    
    .benefit-check::after {
        display: none;
    }
    
    .benefit-text {
        font-size: 16px;
        padding-left: 0;
    }
    
    /* Portal features mobile - hide checkmark, show red bar */
    .portal-feature-icon {
        width: 3px;
        min-width: 3px;
        height: 30px;
        border: none;
        border-radius: 0;
        background-color: var(--fc-red);
        margin-right: 15px;
    }
    
    .portal-feature-icon i {
        display: none;
    }
    
    .portal-feature-bar {
        display: none;
    }
    
    .portal-feature-text {
        font-size: 16px;
    }
    
    /* Commercial buttons mobile - stack vertically */
    .commercial-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Emergency headline mobile */
    .emergency-headline {
        font-size: 28px;
    }
    
    .section-title-trajan {
        font-size: 24px;
    }
    
    /* Charge conditions mobile - stack */
    .charge-conditions {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Section 6 mobile */
    .services-split-bg {
        display: none;
    }
    
    .services-split-light {
        background-color: var(--fc-green-dark);
    }
    
    .services-split-dark {
        background-color: var(--fc-green-dark);
    }
    
    .services-split-section .row {
        flex-direction: column;
    }
    
    .services-split-panel {
        padding: 50px 30px;
        min-height: auto;
    }
    
    .services-split-headline {
        font-size: 22px;
    }
    
    .services-split-body {
        font-size: 15px;
    }
    
    /* Section 7 mobile */
    .cta-services-section {
        padding: 80px 0 60px;
    }
    
    .cta-services-headline {
        font-size: 28px;
    }
    
    .cta-services-subtext {
        font-size: 18px;
    }
    
    .cta-services-tree {
        width: 300px;
        opacity: 0.5;
        right: -50px;
    }
    
    /* Page headers mobile */
    .page-header,
    .secondary-header {
        padding: 40px 0;
    }
    
    .tertiary-header {
        padding: 32px 0;
    }
    
    .page-header-title,
    .secondary-header-title,
    .tertiary-header-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    /* ADA page mobile */
    .ada-content-section h2 {
        font-size: 20px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Footer mobile */
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-links-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Hide utility bar below xl (1200px) */
@media (max-width: 1199.98px) {
    .utility-bar {
        display: none;
    }
    
    /* Disable mega menu below 1200px - mobile menu takes over */
    .mega-menu {
        display: none !important;
    }
}

/* Compact mode: 1200-1399px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .utility-nav a {
        padding: 4px 10px;
        font-size: 10px;
    }
    
    .nav-links li a {
        padding: 10px 10px;
        font-size: 14px;
    }
    
    .nav-links .nav-divider {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .nav-logo img {
        height: 50px;
    }
    
    .hero-content h1 {
        font-size: 1.625rem;
    }
    
    .hero-headline {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
    }
}

/* =====================================================
   TEAM PAGES STYLES
   ===================================================== */

/* ----- Breadcrumb Navigation ----- */
.breadcrumb-nav {
    background-color: var(--fc-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--fc-border-gray);
}

.breadcrumb {
    margin: 0;
    padding: 0;
    background: none;
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--fc-green);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--fc-green-dark);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--fc-text-body);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: var(--fc-text-body);
}

/* ----- Leadership Section (Dark Green) ----- */
.team-leadership-section {
    background-color: var(--fc-green-dark);
    padding: 60px 0 80px;
}

.team-section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--fc-white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.leadership-card {
    background: var(--fc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.leadership-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.leadership-card-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--fc-light-gray);
}

.leadership-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-medium);
}

.leadership-card:hover .leadership-card-image img {
    transform: scale(1.05);
}

.leadership-card-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-white);
    font-size: 14px;
    opacity: 0.9;
    transition: all var(--transition-fast);
}

.leadership-card:hover .leadership-card-arrow {
    background-color: var(--fc-green);
    opacity: 1;
}

.leadership-card-content {
    padding: 25px;
    text-align: center;
}

.leadership-card-name {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--fc-green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 8px;
}

.leadership-card-title {
    font-size: 14px;
    color: var(--fc-text-body);
    margin: 0 0 15px;
    line-height: 1.4;
}

.leadership-card-email,
.leadership-card-phone {
    font-size: 14px;
    color: var(--fc-green);
    margin: 0;
    line-height: 1.6;
}

/* ----- Department Filter Tabs ----- */
.team-filter-section {
    background-color: var(--fc-white);
    padding: 40px 0;
    border-bottom: 1px solid var(--fc-border-gray);
}

.team-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.team-filter-tab {
    background: var(--fc-white);
    border: 2px solid var(--fc-green);
    color: var(--fc-green);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.team-filter-tab:hover {
    background-color: var(--fc-green);
    color: var(--fc-white);
}

.team-filter-tab.active {
    background-color: var(--fc-green);
    color: var(--fc-white);
}

/* ----- Team Grid Section ----- */
.team-grid-section {
    background-color: var(--fc-light-gray);
    padding: 60px 0 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--fc-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.team-card-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--fc-light-gray);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-medium);
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-content {
    padding: 20px;
    text-align: center;
}

.team-card-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--fc-green-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 5px;
}

.team-card-title {
    font-size: 13px;
    color: var(--fc-text-body);
    margin: 0 0 8px;
    line-height: 1.4;
}

.team-card-location {
    font-size: 13px;
    color: var(--fc-green);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
}

.team-card-location i {
    margin-right: 5px;
}

.team-card-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--fc-border-gray);
}

.team-card-contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--fc-green);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
}

.team-card-contact-link:hover {
    color: var(--fc-green-dark);
}

.team-card-contact-link i {
    font-size: 14px;
}

.team-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--fc-text-body);
    font-size: 16px;
}

/* ----- Individual Bio Page ----- */
.bio-hero-section {
    background-color: var(--fc-green-dark);
    padding: 50px 0 80px;
}

.bio-layout {
    display: flex;
    align-items: stretch;
    background: var(--fc-white);
    border-radius: 12px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Left: Photo Section */
.bio-photo-col {
    width: 40%;
    min-width: 40%;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, #003d24 100%);
}

.bio-photo-wrapper {
    position: relative;
    /* NOT absolute - sits at top of column, sized by image */
}

.bio-photo {
    width: 100%;
    display: block;
    /* NOT absolute - normal flow, determines wrapper height */
}

.bio-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 30px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.bio-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--fc-white);
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bio-contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255,255,255,0.4);
    color: var(--fc-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Right: Content Section */
.bio-content-col {
    width: 60%;
}

.bio-content-wrapper {
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.bio-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.bio-name {
    font-family: var(--font-heading);
    font-size: 38px;
    color: var(--fc-green-dark);
    margin: 0 0 8px;
    line-height: 1.1;
}

.bio-title {
    font-size: 16px;
    color: var(--fc-text-body);
    margin: 0 0 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bio-departments {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.bio-dept-tag {
    background-color: var(--fc-white);
    border: 1px solid var(--fc-border-gray);
    color: var(--fc-text-dark);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.bio-about {
    flex: 1;
    border-top: 1px solid var(--fc-border-gray);
    padding-top: 25px;
}

.bio-about-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--fc-green-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-about-title i {
    color: var(--fc-green);
    font-size: 16px;
}

.bio-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--fc-text-body);
}

.bio-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bio-text.expanded {
    -webkit-line-clamp: unset;
}

.bio-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--fc-green-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.bio-read-more:hover {
    color: var(--fc-green);
}

.bio-read-more i {
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.bio-read-more.expanded i {
    transform: rotate(180deg);
}

.bio-cta {
    margin-top: 30px;
}

.btn-pill-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-pill-lg i {
    margin-right: 8px;
}

.back-to-team {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fc-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition-fast);
}

.back-to-team:hover {
    color: var(--fc-green-dark);
}

/* ----- Team Page Responsive ----- */
@media (max-width: 1199px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bio-layout {
        flex-direction: column;
        min-height: auto;
    }
    
    .bio-photo-col {
        width: 100%;
        min-width: 100%;
        min-height: 300px;
    }
    
    .bio-photo {
        position: relative;
        height: auto;
        object-fit: contain;
        object-position: center center;
    }
    
    .bio-photo-wrapper {
        position: relative;
    }
    
    .bio-photo-overlay {
        position: relative;
        background: linear-gradient(135deg, var(--fc-green-dark) 0%, #003d24 100%);
        padding: 20px;
    }
    
    .bio-content-col {
        width: 100%;
    }
    
    .bio-content-wrapper {
        padding: 30px 25px;
        min-height: auto;
    }
    
    .bio-name {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .team-leadership-section {
        padding: 40px 0 60px;
    }
    
    .team-section-title {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .team-filter-tabs {
        gap: 8px;
    }
    
    .team-filter-tab {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .bio-hero-section {
        padding: 30px 0 50px;
    }
    
    .bio-photo-wrapper,
    .bio-content-wrapper {
        max-width: 100%;
    }
    
    .bio-content-wrapper {
        padding: 25px;
    }
    
    .bio-name {
        font-size: 28px;
    }
    
    .bio-photo-overlay {
        flex-direction: column;
        align-items: stretch;
    }
    
    .bio-contact-btn {
        justify-content: center;
    }
}

/* ============================================
   Rental Listings Page Styles
============================================= */

/* Listings Section */
.section-area-listings {
    padding: 40px 0 60px;
    background-color: var(--fc-light-gray);
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.listings-count {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--fc-text-body);
}

.listings-count strong {
    color: var(--fc-green-dark);
}

.listings-controls {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Sort Dropdown */
.sort-dropdown {
    position: relative;
}

.btn-sort {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: white;
    color: var(--fc-green-dark);
    border: 2px solid var(--fc-green-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-sort:hover {
    background: var(--fc-green-dark);
    color: white;
}

.btn-sort .btn-text {
    display: inline;
}

.sort-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 220px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.sort-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--fc-text-body);
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.sort-option:first-child {
    border-radius: 10px 10px 0 0;
}

.sort-option:last-child {
    border-radius: 0 0 10px 10px;
}

.sort-option:hover {
    background: #f5f5f5;
}

.sort-option.active {
    color: var(--fc-green-dark);
    font-weight: 600;
    background: #f0f7f4;
}

.sort-option i {
    width: 18px;
    text-align: center;
    color: var(--fc-green-dark);
}

/* Property Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Property Card */
.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-decoration: none;
}

.property-card-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.property-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-just-listed {
    background: var(--fc-red);
    color: white;
}

.property-card-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active { 
    background: #28a745; 
    color: white; 
}

.property-card-content {
    padding: 18px;
}

.property-card-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 8px;
}

.property-card-price .price-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.property-card-address {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fc-text-dark);
    margin-bottom: 4px;
    font-weight: 500;
}

.property-card-city {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--fc-text-body);
    margin-bottom: 12px;
}

.property-card-specs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--fc-text-body);
}

.property-card-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-card-specs i {
    color: var(--fc-green-dark);
    font-size: 12px;
}

/* Pagination */
.listings-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.listings-pagination a,
.listings-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.listings-pagination a {
    background: white;
    color: var(--fc-green-dark);
    border: 1px solid #ddd;
}

.listings-pagination a:hover {
    background: var(--fc-green-dark);
    color: white;
    border-color: var(--fc-green-dark);
    text-decoration: none;
}

.listings-pagination span.current {
    background: var(--fc-green-dark);
    color: white;
    border: 1px solid var(--fc-green-dark);
}

.pagination-info {
    text-align: center;
    margin-top: 15px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--fc-text-body);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
}

.no-results-icon {
    font-size: 48px;
    color: var(--fc-text-light);
    margin-bottom: 15px;
}

.no-results h3 {
    font-family: var(--font-heading);
    color: var(--fc-green-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--fc-text-body);
}

/* Filter Button */
.btn-filters {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--fc-green-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-filters:hover {
    background: #00351F;
}

.filters-btn-badge {
    background: var(--fc-red);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 5px;
}

/* Share Button & Dropdown */
.share-dropdown {
    position: relative;
}

.btn-share {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    color: var(--fc-green-dark);
    border: 1px solid var(--fc-green-dark);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-share:hover {
    background: var(--fc-green-dark);
    color: white;
}

.share-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.share-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--fc-text-body);
    text-decoration: none;
    font-size: 14px;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s;
}

.share-option:first-child {
    border-radius: 10px 10px 0 0;
}

.share-option:last-child {
    border-radius: 0 0 10px 10px;
}

.share-option:hover {
    background: #f5f5f5;
    color: var(--fc-green-dark);
}

.share-option i {
    width: 18px;
    text-align: center;
    font-size: 16px;
}

.share-option .fa-facebook-f { color: #1877f2; }
.share-option .fa-x-twitter { color: #000; }
.share-option .fa-linkedin-in { color: #0a66c2; }
.share-option .fa-pinterest-p { color: #e60023; }
.share-option .fa-envelope { color: var(--fc-green-dark); }
.share-option .fa-comment-sms { color: #25D366; }
.share-option .fa-link { color: var(--fc-green-dark); }

/* Filter Drawer */
.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.filters-overlay.open {
    opacity: 1;
    visibility: visible;
}

.filters-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 100%;
    background: white;
    z-index: 11000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
}

.filters-drawer.open {
    transform: translateX(0);
}

.filters-drawer-header {
    padding: 20px;
    background: var(--fc-green-dark);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters-drawer-header h5 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
}

.filters-drawer-header .btn-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.filters-drawer-header .btn-clear {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    cursor: pointer;
    padding: 0;
}

.filters-drawer-header .btn-clear:hover {
    color: white;
}

.filters-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-green-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-section .form-control,
.filter-section .custom-select {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.filter-section .form-control:focus,
.filter-section .custom-select:focus {
    border-color: var(--fc-green-dark);
    box-shadow: 0 0 0 3px rgba(2,83,50,0.1);
}

/* Quick Select Buttons */
.quick-select-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.quick-select-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-select-btn:hover {
    border-color: var(--fc-green-dark);
}

.quick-select-btn.selected {
    background: var(--fc-green-dark);
    color: white;
    border-color: var(--fc-green-dark);
}

.filters-drawer-footer {
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
}

.filters-drawer-footer .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.btn-apply {
    background: var(--fc-green-dark);
    color: white;
    border: none;
}

.btn-apply:hover {
    background: #00351F;
    color: white;
}

.btn-clear-all {
    background: white;
    color: var(--fc-green-dark);
    border: 1px solid var(--fc-green-dark);
}

.btn-clear-all:hover {
    background: #f0f0f0;
}

/* Active Filters Pills */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #e8f4e8;
    border-radius: 20px;
    font-size: 13px;
    color: var(--fc-green-dark);
}

.filter-pill .remove-filter {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--fc-green-dark);
    font-size: 14px;
}

/* Responsive Listings Grid */
@media (max-width: 1199px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .listings-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-sort {
        padding: 0;
        width: 44px;
    }
    
    .btn-sort .btn-text {
        display: none;
    }
    
    .share-sms {
        display: flex;
    }
}

@media (max-width: 575px) {
    .listings-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Rental Details Page Styles
============================================= */

/* Property Info Section */
.section-property-info {
    padding: 40px 0;
    background: white;
}

.property-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e9ecef;
}

.property-price {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fc-green-dark);
}

.property-price-label {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.property-quick-specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-spec {
    text-align: center;
}

.quick-spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fc-text-dark);
}

.quick-spec-label {
    font-size: 13px;
    color: var(--fc-text-body);
    text-transform: uppercase;
}

/* Property Details Grid */
.property-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-section {
    margin-bottom: 35px;
}

.property-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--fc-green-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fc-green);
}

.property-description {
    color: var(--fc-text-body);
    line-height: 1.8;
}

/* Property Features List */
.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--fc-text-body);
}

.property-feature i {
    color: var(--fc-green);
    width: 20px;
}

/* Contact Sidebar */
.contact-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--fc-green-dark);
    margin-bottom: 20px;
}

.btn-contact {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--fc-green-dark);
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #00351F;
    color: white;
    text-decoration: none;
}

.btn-contact-outline {
    background: white;
    color: var(--fc-green-dark);
    border: 2px solid var(--fc-green-dark);
}

.btn-contact-outline:hover {
    background: var(--fc-green-dark);
    color: white;
}

.btn-contact-appfolio {
    background: #0066cc;
    border-color: #0066cc;
}

.btn-contact-appfolio:hover {
    background: #0052a3;
}

.contact-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fc-green-dark);
}

.contact-phone a {
    color: var(--fc-green-dark);
    text-decoration: none;
}

/* Map Section */
.section-property-map {
    padding: 40px 0;
    background: #f8f9fa;
}

#propertyMap {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

/* Similar Homes */
.section-similar-homes {
    padding: 50px 0;
    background: white;
}

.similar-homes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.similar-home-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: block;
}

.similar-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-decoration: none;
}

.similar-home-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.similar-home-content {
    padding: 18px;
}

.similar-home-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin-bottom: 5px;
}

.similar-home-address {
    font-size: 14px;
    color: var(--fc-text-dark);
    margin-bottom: 3px;
}

.similar-home-city {
    font-size: 13px;
    color: var(--fc-text-body);
    margin-bottom: 10px;
}

.similar-home-specs {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--fc-text-body);
}

.similar-home-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.similar-home-specs i {
    color: var(--fc-green);
    font-size: 12px;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
}

/* Details Page Responsive */
@media (max-width: 991px) {
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-homes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .property-features {
        grid-template-columns: 1fr;
    }
    
    .featured-main-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .similar-homes-grid {
        grid-template-columns: 1fr;
    }
}
