/* ============================================
   FICKLING & COMPANY - REUSABLE SECTION STYLES
   Bootstrap 4 Compatible
   
   Typography:
   - H1: Trajan Pro 3 Semibold (45pt desktop / 30pt mobile)
   - H2: Poppins Bold (34pt desktop / 30pt mobile)
   - H3: Trajan Pro 3 Semibold (26pt)
   - H4: Poppins Bold (24pt)
   - H5: Poppins ExtraBold (18pt) — buttons
   - Body: Poppins Regular (24pt desktop / 22pt mobile)
   
   Colors:
   - Light Green: #025332
   - Dark Green: #00351F
   - Red: #ED1B24
   - Light Gray: #F5F5F5
   ============================================ */

/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
    /* Primary Colors - Fickling Brand */
    --fc-green-light: #025332;
    --fc-green-dark: #00351F;
    --fc-red: #ED1B24;
    --fc-gray-light: #F5F5F5;
    
    /* Neutral Colors */
    --fc-white: #ffffff;
    --fc-off-white: #f8f9fa;
    --fc-gray-medium: #e0e0e0;
    --fc-gray-dark: #6c757d;
    --fc-text-dark: #333333;
    --fc-text-body: #555555;
    --fc-black: #000000;
    
    /* Typography */
    --fc-font-heading: 'trajan-pro-3', Georgia, 'Times New Roman', serif;
    --fc-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes - Desktop */
    --fc-h1-size: 45px;
    --fc-h2-size: 34px;
    --fc-h3-size: 26px;
    --fc-h4-size: 24px;
    --fc-h5-size: 18px;
    --fc-body-size: 24px;
    
    /* Font Sizes - Mobile */
    --fc-h1-size-mobile: 30px;
    --fc-h2-size-mobile: 30px;
    --fc-body-size-mobile: 22px;
    
    /* Spacing */
    --fc-section-padding: 60px;
    --fc-section-padding-lg: 80px;
    --fc-container-max: 1200px;
    
    /* Border Radius - per brand guidelines */
    --fc-image-radius: 15px;
    --fc-radius-sm: 4px;
    --fc-radius-md: 8px;
    --fc-radius-lg: 12px;
    --fc-radius-round: 50%;
    
    /* Transitions */
    --fc-transition-fast: 0.2s ease;
    --fc-transition-medium: 0.3s ease;
    --fc-transition-slow: 0.5s ease;
    
    /* Shadows */
    --fc-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --fc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --fc-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

/* ============================================
   GLOBAL RESETS & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Override Bootstrap container max-width */
.container {
    max-width: 1400px;
}

body {
    font-family: var(--fc-font-body);
    font-size: var(--fc-body-size);
    font-weight: 400;
    line-height: 1.6;
    color: var(--fc-text-body);
    background-color: var(--fc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
    body {
        font-size: var(--fc-body-size-mobile);
    }
}

/* ============================================
   ADA ACCESSIBILITY STYLES
   ============================================ */

/* Skip to Main Content Link */
.skip-to-main {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 12px 24px;
    background-color: var(--fc-green-dark);
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--fc-radius-md);
    transition: top 0.3s ease;
}

.skip-to-main:focus {
    top: 10px;
    outline: 3px solid var(--fc-red);
    outline-offset: 2px;
    color: var(--fc-white);
}

/* Focus States for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 3px solid var(--fc-green-light);
    outline-offset: 2px;
}

/* High contrast focus for dark backgrounds */
.section-utility-bar a:focus,
.section-hero-banner a:focus,
.section-cta-banner a:focus,
.section-main-footer a:focus,
.section-main-footer button:focus {
    outline-color: var(--fc-white);
}

/* Remove default focus outline when using mouse (but keep for keyboard) */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--fc-green-light);
    outline-offset: 2px;
}

/* Screen Reader Only - Visually Hidden but Accessible */
.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;
}

/* Ensure sufficient color contrast for text */
/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Typography - Heading Styles */
h1, .h1 {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h1-size);
    font-weight: 600; /* Semibold */
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h2, .h2 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700; /* Bold */
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h3, .h3 {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h3-size);
    font-weight: 600; /* Semibold */
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
    line-height: 1.3;
}

h4, .h4 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h4-size);
    font-weight: 700; /* Bold */
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
    line-height: 1.4;
}

h5, .h5 {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h5-size);
    font-weight: 700; /* ExtraBold - for buttons */
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
    line-height: 1.4;
}

h6, .h6 {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--fc-green-light);
    text-decoration: none;
    transition: color var(--fc-transition-fast);
}

a:hover {
    color: var(--fc-green-dark);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Mobile Typography */
@media (max-width: 767px) {
    body {
        font-size: var(--fc-body-size-mobile);
    }
    
    h1, .h1 {
        font-size: var(--fc-h1-size-mobile);
    }
    
    h2, .h2 {
        font-size: var(--fc-h2-size-mobile);
    }
}

/* ============================================
   BUTTON STYLES (H5 typography)
   ============================================ */
.btn-fickling {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    font-family: var(--fc-font-body);
    font-size: var(--fc-h5-size);
    font-weight: 700; /* ExtraBold */
    border-radius: 30px;
    transition: all var(--fc-transition-medium);
    cursor: pointer;
    text-decoration: none;
}

.btn-fickling-primary {
    background-color: var(--fc-green-light);
    color: var(--fc-white);
    border: 2px solid var(--fc-green-light);
}

.btn-fickling-primary:hover {
    background-color: var(--fc-green-dark);
    border-color: var(--fc-green-dark);
    color: var(--fc-white);
}

.btn-fickling-outline {
    background-color: var(--fc-white);
    color: var(--fc-text-dark);
    border: 2px solid var(--fc-green-light);
}

.btn-fickling-outline:hover {
    background-color: var(--fc-white);
    border-color: var(--fc-green-light);
    color: var(--fc-text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-fickling .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--fc-green-light);
    border-radius: var(--fc-radius-round);
    color: var(--fc-white);
    transition: all var(--fc-transition-medium);
}

.btn-fickling-outline:hover .btn-arrow {
    background-color: var(--fc-red);
    color: var(--fc-white);
}

/* ============================================
   SECTION: Utility Bar
   Class: .section-utility-bar
   ============================================ */
.section-utility-bar {
    background-color: var(--fc-green-dark);
    padding: 8px 0;
}

.section-utility-bar .utility-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.section-utility-bar .utility-nav li {
    position: relative;
}

.section-utility-bar .utility-nav li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
}

.section-utility-bar .utility-nav li:last-child::after {
    display: none;
}

.section-utility-bar .utility-nav a {
    display: block;
    padding: 4px 16px;
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .2px;
    transition: all var(--fc-transition-fast);
    border-radius: 3px;
}

.section-utility-bar .utility-nav a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

/* Active Division Indicator (You Are Here) */
.section-utility-bar .utility-nav li.active a {
    background-color: #000000;
    border-radius: 3px;
    font-weight: 600;
}

.section-utility-bar .utility-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-utility-bar .utility-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-utility-bar .utility-nav-right a {
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 15px;
}

.section-utility-bar .utility-nav-right a:hover {
    border-color: rgba(255,255,255,0.8);
    background-color: rgba(255,255,255,0.15);
}

.section-utility-bar .utility-nav-right a i {
    margin-right: 5px;
}

/* Responsive: Utility Bar - Compact between 1200-1399px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .section-utility-bar .utility-nav a {
        padding: 4px 10px;
        font-size: 10px;
    }
    .section-utility-bar .utility-nav-right a {
        padding: 3px 10px;
    }
}

/* Responsive: Utility Bar - Hide below 1200px */
@media (max-width: 1199.98px) {
    .section-utility-bar {
        display: none;
    }
}

/* ============================================
   SECTION: Main Header
   Class: .section-main-header
   ============================================ */
.section-main-header {
    background-color: var(--fc-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--fc-gray-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.section-main-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.section-main-header .logo-img {
    height: 65px;
    width: auto;
}

.section-main-header .main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.section-main-header .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.section-main-header .nav-menu li {
    display: flex;
    align-items: center;
}

.section-main-header .nav-menu li a {
    display: block;
    padding: 10px 16px;
    color: var(--fc-text-dark);
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    transition: color var(--fc-transition-fast);
    position: relative;
}

/* Active page indicator - red underline */
.section-main-header .nav-menu li a.active {
    color: var(--fc-green-light);
}

.section-main-header .nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--fc-red);
}

/* Inline pipe dividers between nav links */
.section-main-header .nav-menu li:not(:last-child)::after {
    content: '|';
    color: var(--fc-text-dark);
    font-weight: 400;
}

.section-main-header .nav-menu li a:hover {
    color: var(--fc-green-light);
}

.section-main-header .hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    margin-left: 15px;
}

.section-main-header .hamburger-menu span {
    display: block;
    width: 36px;
    height: 5px;
    background-color: var(--fc-green-light);
    transition: all var(--fc-transition-fast);
}

/* Hamburger wrapper for mega menu positioning */
.section-main-header .hamburger-wrapper {
    position: relative;
}

/* Mega Menu (Desktop) */
.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 750px;
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    border-radius: 15px;
    padding: 35px;
    margin-top: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 9998;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--fc-green-dark);
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-column h4.mega-menu-heading {
    font-family: var(--fc-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-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--fc-white);
    padding-left: 5px;
}

/* Hide mega menu below 1200px (show mobile menu instead) */
@media (max-width: 1199.98px) {
    .mega-menu {
        display: none;
    }
}

/* Responsive: Main Header - Compact nav between 1200-1399px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .section-main-header .nav-menu li a {
        padding: 10px 10px;
        font-size: 14px;
    }
    .section-main-header .nav-menu li:not(:last-child)::after {
        font-size: 14px;
    }
}

/* Responsive: Main Header - Hide nav below 1200px (Bootstrap xl) */
@media (max-width: 1199.98px) {
    .section-main-header .row {
        flex-wrap: nowrap;
    }
    
    .section-main-header .col-lg-3,
    .section-main-header .col-md-4 {
        flex: 0 0 auto;
        width: auto;
    }
    
    .section-main-header .col-lg-9,
    .section-main-header .col-md-8 {
        flex: 1;
        width: auto;
    }
    
    .section-main-header .nav-menu {
        display: none;
    }
}

/* ============================================
   SECTION: Secondary Header (Page Title Banner)
   Class: .section-secondary-header
   Uses: H1 (Trajan Pro 3 Semibold, 45pt/30pt)
   Background: Green gradient with pattern image
   ============================================ */
.section-secondary-header {
    position: relative;
    background-image: url('../images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
    text-align: center;
}

.section-secondary-header .secondary-header-title {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h1-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    margin: 0;
    letter-spacing: 2px;
}

.section-secondary-header .secondary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* Responsive: Secondary Header */
@media (max-width: 767px) {
    .section-secondary-header {
        padding: 40px 0;
    }
    
    .section-secondary-header .secondary-header-title {
        font-size: var(--fc-h1-size-mobile);
        letter-spacing: 1px;
    }
}

/* ============================================
   MOBILE MENU OVERLAY
   Full-screen green menu with slick animations
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 380px;
    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;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    visibility: visible;
}

/* Backdrop overlay for desktop */
.menu-backdrop {
    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: 65px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--fc-green-light);
    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-light) 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 Account Section */
.mobile-nav-account {
    display: flex;
    padding: 15px 25px;
    gap: 15px;
    background-color: rgba(0,0,0,0.2);
}

.mobile-account-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-white);
    text-decoration: none;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-account-link:hover {
    background-color: rgba(255,255,255,0.2);
    color: var(--fc-white);
}

.mobile-account-link i {
    margin-right: 8px;
}

.mobile-nav-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 0;
    padding: 0;
    border: none;
}

.mobile-divisions-header {
    padding: 12px 25px 8px;
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 16px 25px;
    font-family: var(--fc-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(--fc-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);
}

/* Submenu */
.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(--fc-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);
}

/* You Are Here - Current Division Indicator */
.mobile-submenu li.you-are-here {
    background: linear-gradient(90deg, var(--fc-red) 0%, rgba(179, 0, 0, 0.8) 100%);
}

.mobile-submenu li.you-are-here a {
    color: var(--fc-white);
    font-weight: 600;
}

.mobile-submenu li.you-are-here a i {
    margin-right: 8px;
    opacity: 1;
}

.mobile-submenu li a i {
    font-size: 12px;
    opacity: 0.6;
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile: Full screen overlay */
@media (max-width: 767px) {
    .mobile-menu-overlay {
        width: 100%;
        left: 0;
        right: auto;
        transform: translateX(-100%);
    }
    
    .mobile-menu-overlay.active {
        transform: translateX(0);
    }
    
    .mobile-menu-close {
        font-size: 46px;
    }
    
    .mobile-nav-list > li > a,
    .mobile-nav-item > a {
        padding: 18px 25px;
        font-size: 17px;
    }
    
    .submenu-toggle {
        height: 56px;
    }
    
    .mobile-submenu li a {
        padding: 14px 25px 14px 35px;
        font-size: 15px;
    }
    
    .menu-backdrop {
        display: none;
    }
}

/* ============================================
   SECTION: Area Introduction
   Class: .section-area-intro
   Uses: Body text (Poppins Regular)
   Image border-radius: 15px
   ============================================ */
.section-area-intro {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-white);
}

.section-area-intro .intro-content {
    padding-right: 40px;
}

.section-area-intro .intro-text {
    font-family: var(--fc-font-body);
    font-size: var(--fc-body-size);
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-text-body);
    margin-bottom: 30px;
}

.section-area-intro .intro-cta-text {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--fc-text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-area-intro .btn-helpful-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background-color: var(--fc-white);
    border: 2px solid var(--fc-green-light);
    border-radius: 30px;
    color: var(--fc-text-dark);
    font-family: var(--fc-font-body);
    font-size: var(--fc-h5-size);
    font-weight: 700;
    transition: all var(--fc-transition-medium);
}

.section-area-intro .btn-helpful-links .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--fc-green-light);
    border-radius: var(--fc-radius-round);
    color: var(--fc-white);
    transition: all var(--fc-transition-medium);
}

.section-area-intro .btn-helpful-links:hover {
    background-color: var(--fc-white);
    border-color: var(--fc-green-light);
    color: var(--fc-text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-area-intro .btn-helpful-links:hover .btn-arrow {
    background-color: var(--fc-red);
    color: var(--fc-white);
    transform: translateX(4px);
}

.section-area-intro .intro-image {
    border-radius: var(--fc-image-radius);
    overflow: hidden;
    box-shadow: var(--fc-shadow-lg);
}

.section-area-intro .intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--fc-transition-slow);
}

.section-area-intro .intro-image:hover img {
    transform: scale(1.02);
}

/* Responsive: Area Introduction */
@media (max-width: 991px) {
    .section-area-intro .intro-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .section-area-intro .intro-text {
        font-size: var(--fc-body-size-mobile);
    }
}

/* ============================================
   SECTION: Feature Cards
   Class: .section-feature-cards
   Uses: H3 (Trajan Pro 3 Semibold, 26pt) for titles
   ============================================ */
.section-feature-cards {
    padding: 20px 0 var(--fc-section-padding);
    background-color: var(--fc-gray-light);
}

.section-feature-cards .row {
    display: flex;
    flex-wrap: wrap;
}

.section-feature-cards .col-lg-6 {
    display: flex;
}

.section-feature-cards .feature-card {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    margin-bottom: 10px;
    width: 100%;
}

.section-feature-cards .feature-card-title {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h3-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-feature-cards .feature-card-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 20px;
    flex-grow: 1;
}

.section-feature-cards .feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--fc-green-light);
    text-decoration: none;
    transition: all var(--fc-transition-fast);
}

.section-feature-cards .feature-card-link span {
    text-decoration: underline;
    text-decoration-color: var(--fc-red);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.section-feature-cards .feature-card-link i {
    color: var(--fc-green-light);
    font-size: 20px;
    transition: transform var(--fc-transition-fast);
}

.section-feature-cards .feature-card-link:hover {
    color: var(--fc-green-dark);
}

.section-feature-cards .feature-card-link:hover i {
    transform: scale(1.1);
}

.section-feature-cards .feature-card-divider {
    margin-top: 25px;
    height: 2px;
    background-color: var(--fc-red);
}

/* Responsive: Feature Cards */
@media (max-width: 767px) {
    .section-feature-cards .feature-card {
        padding: 25px 0;
    }
    
    .section-feature-cards .feature-card-title {
        font-size: 22px;
    }
}

/* ============================================
   SECTION: CTA Banner
   Class: .section-cta-banner
   Uses: H2 (Poppins Bold, 34pt/30pt)
   Background: Green gradient with pattern image
   ============================================ */
.section-cta-banner {
    background-image: url('../images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--fc-section-padding-lg) 0;
    position: relative;
    overflow: hidden;
}

.section-cta-banner .cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.section-cta-banner .cta-title {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 25px;
}

.section-cta-banner .cta-text {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.section-cta-banner .cta-text:last-child {
    margin-bottom: 0;
}

/* Responsive: CTA Banner */
@media (max-width: 767px) {
    .section-cta-banner {
        padding: var(--fc-section-padding) 0;
    }
    
    .section-cta-banner .cta-title {
        font-size: var(--fc-h2-size-mobile);
    }
}

/* ============================================
   SECTION: Helpful Resources Accordion
   Class: .section-helpful-resources
   Uses: H2 (Poppins Bold) for title, Trajan Pro 3 small-caps for accordion headers
   ============================================ */
.section-helpful-resources {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-white);
}

.section-helpful-resources .resources-title {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-green-light);
    text-align: center;
    margin-bottom: 15px;
}

.section-helpful-resources .resources-subtitle {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--fc-text-body);
    text-align: center;
    margin-bottom: 10px;
}

.section-helpful-resources .resources-accordion {
    max-width: 900px;
    margin: 0 auto;
    border-top: 2px solid var(--fc-red);
}

.section-helpful-resources .accordion-item {
    border: none;
    border-bottom: 2px solid var(--fc-red);
    background: transparent;
}

.section-helpful-resources .accordion-header {
    margin: 0;
}

.section-helpful-resources .accordion-button {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--fc-transition-fast);
}

.section-helpful-resources .accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.section-helpful-resources .accordion-button span.accordion-text {
    font-family: var(--fc-font-heading);
    font-size: 20px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    letter-spacing: 1px;
}

.section-helpful-resources .accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: var(--fc-green-light);
    border-radius: var(--fc-radius-round);
    color: var(--fc-white);
    font-size: 14px;
    transition: all var(--fc-transition-fast);
}

.section-helpful-resources .accordion-icon i {
    color: var(--fc-white);
    transition: transform var(--fc-transition-fast);
}

.section-helpful-resources .accordion-button:hover .accordion-icon {
    background-color: var(--fc-green-dark);
}

.section-helpful-resources .accordion-button[aria-expanded="true"] .accordion-icon i {
    transform: rotate(45deg);
}

.section-helpful-resources .accordion-collapse {
    background: transparent;
}

.section-helpful-resources .accordion-body {
    padding: 0 0 25px 43px;
}

.section-helpful-resources .resource-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-helpful-resources .resource-links li {
    margin-bottom: 12px;
}

.section-helpful-resources .resource-links a {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--fc-green-light);
    transition: color var(--fc-transition-fast);
}

.section-helpful-resources .resource-links a:hover {
    color: var(--fc-green-dark);
    text-decoration: underline;
}

/* Responsive: Helpful Resources */
@media (max-width: 767px) {
    .section-helpful-resources .resources-title {
        font-size: var(--fc-h2-size-mobile);
    }
    
    .section-helpful-resources .accordion-button span.accordion-text {
        font-size: 18px;
    }
}

/* ============================================
   SECTION: Why Partner
   Class: .section-partner
   Description: Stats and values carousel
   ============================================ */
.section-partner {
    overflow: hidden;
    position: relative;
    background: radial-gradient(ellipse at center, var(--fc-green-light) 0%, #0f1412 100%);
}

/* Stats Area */
.section-partner .partner-stats-area {
    position: relative;
    padding: var(--fc-section-padding-lg) 0 60px;
    overflow: hidden;
}

.section-partner .partner-stats-area .container {
    position: relative;
}

.section-partner .partner-stats-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.section-partner .partner-tree-graphic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

.section-partner .partner-tree-graphic img {
    width: 100%;
    height: auto;
}

.section-partner .partner-title {
    font-family: var(--fc-font-heading);
    font-size: 38px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-partner .partner-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin-top: 10px;
}

.section-partner .partner-subtitle {
    font-family: var(--fc-font-body);
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    color: var(--fc-white);
    margin-bottom: 30px;
}

.section-partner .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
}

.section-partner .stat-item {
    display: flex;
    flex-direction: column;
}

.section-partner .stat-number {
    font-family: var(--fc-font-body);
    font-size: 42px;
    font-weight: 700;
    color: var(--fc-white);
    line-height: 1.2;
    margin-bottom: 5px;
}

.section-partner .stat-label {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 400;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    line-height: 1.4;
}

/* Values Carousel Area */
.section-partner .partner-values-area {
    padding: 0 0 var(--fc-section-padding-lg);
}

.section-partner .values-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding-top: 40px;
    border-top: 3px solid var(--fc-red);
}

.section-partner .values-header {
    flex-shrink: 0;
    width: 180px;
}

.section-partner .values-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: var(--fc-white);
    margin-bottom: 5px;
}

.section-partner .values-title {
    font-family: var(--fc-font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-partner .values-nav {
    display: flex;
    gap: 10px;
}

.section-partner .values-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-white);
    border: 2px solid var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-green-light);
    font-size: 14px;
    cursor: pointer;
    transition: all var(--fc-transition-fast);
}

.section-partner .values-nav-btn:hover {
    background-color: var(--fc-green-light);
    color: var(--fc-white);
}

.section-partner .values-carousel {
    flex: 1;
    overflow: hidden;
}

.section-partner .values-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.section-partner .value-card {
    flex: 0 0 280px;
    background-color: var(--fc-white);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--fc-green-light);
}

.section-partner .value-card-title {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    line-height: 1.4;
    margin-bottom: 15px;
}

.section-partner .value-card-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--fc-text-body);
    margin-bottom: 0;
}

/* Responsive: Partner Section */
@media (max-width: 991px) {
    .section-partner .partner-tree-graphic {
        width: 50%;
        opacity: 0.4;
    }
    
    .section-partner .values-wrapper {
        flex-direction: column;
    }
    
    .section-partner .values-header {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 15px;
    }
    
    .section-partner .values-intro,
    .section-partner .values-title {
        margin-bottom: 0;
    }
    
    .section-partner .values-nav {
        margin-left: auto;
    }
}

@media (max-width: 767px) {
    .section-partner .partner-title {
        font-size: 28px;
    }
    
    .section-partner .partner-subtitle {
        font-size: 18px;
    }
    
    .section-partner .stats-grid {
        gap: 25px 30px;
    }
    
    .section-partner .stat-number {
        font-size: 32px;
    }
    
    .section-partner .stat-label {
        font-size: 16px;
    }
    
    .section-partner .partner-tree-graphic {
        display: none;
    }
    
    /* Stack cards on mobile instead of carousel */
    .section-partner .values-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 20px;
    }
    
    .section-partner .values-nav {
        display: none;
    }
    
    .section-partner .values-carousel {
        overflow: visible;
    }
    
    .section-partner .values-track {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-partner .value-card {
        flex: none;
        width: 100%;
    }
}

/* ============================================
   SECTION: Three Offices
   Class: .section-three-offices
   Description: Office locations with contact info
   ============================================ */
.section-three-offices {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-white);
}

.section-three-offices .offices-header {
    margin-bottom: 40px;
}

.section-three-offices .offices-title {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 20px;
}

.section-three-offices .offices-intro {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    max-width: 800px;
    margin: 0 auto;
}

.section-three-offices .office-card {
    padding: 20px 25px;
    border-left: 3px solid var(--fc-red);
}

.section-three-offices .office-city {
    font-family: var(--fc-font-heading);
    font-size: 24px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 15px;
}

.section-three-offices .office-address {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    color: var(--fc-text-body);
    margin-bottom: 20px;
}

.section-three-offices .office-address a {
    color: var(--fc-text-body);
    text-decoration: underline;
    text-decoration-color: var(--fc-red);
    text-underline-offset: 3px;
    transition: color var(--fc-transition-fast);
}

.section-three-offices .office-address a:hover {
    color: var(--fc-green-light);
}

.section-three-offices .btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    transition: all var(--fc-transition-fast);
}

.section-three-offices .btn-directions span:first-child {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-three-offices .btn-directions-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
}

.section-three-offices .btn-directions:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-three-offices .btn-directions:hover .btn-directions-icon {
    background-color: var(--fc-red);
}

/* Responsive: Three Offices */
@media (max-width: 991px) {
    .section-three-offices .office-card {
        border-left: none;
        border-top: 2px solid var(--fc-red);
        padding: 25px 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .section-three-offices .col-lg-4:first-child .office-card {
        border-top: none;
        padding-top: 0;
    }
    
    .section-three-offices .btn-directions {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .section-three-offices .offices-title {
        font-size: var(--fc-h2-size-mobile);
    }
    
    .section-three-offices .offices-intro {
        font-size: 16px;
    }
}

/* ============================================
   SECTION: Mission
   Class: .section-mission
   Description: Company mission with value cards
   ============================================ */
.section-mission {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-gray-light);
}

.section-mission .mission-intro {
    padding-right: 20px;
}

.section-mission .mission-title {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 20px;
}

.section-mission .mission-quote {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    font-style: normal;
}

.section-mission .mission-card {
    background-color: var(--fc-white);
    border-radius: var(--fc-image-radius);
    padding: 30px 25px;
    height: 100%;
    box-shadow: var(--fc-shadow-sm);
}

.section-mission .mission-card-title {
    font-family: var(--fc-font-heading);
    font-size: 22px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 15px;
}

.section-mission .mission-card-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 0;
}

/* Responsive: Mission */
@media (max-width: 991px) {
    .section-mission .mission-intro {
        padding-right: 0;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-mission .mission-title {
        font-size: var(--fc-h2-size-mobile);
    }
}

/* ============================================
   SECTION: About Intro
   Class: .section-about-intro
   Description: Local. Professional. Knowledgeable. intro section
   ============================================ */
.section-about-intro {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-white);
}

.section-about-intro .about-intro-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-about-intro .about-intro-title {
    font-family: var(--fc-font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 25px;
}

.section-about-intro .about-intro-text {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-text-body);
    margin-bottom: 30px;
}

.section-about-intro .about-intro-question {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-text-dark);
    margin-bottom: 15px;
}

.section-about-intro .about-intro-answer {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-text-dark);
    margin-bottom: 0;
}

/* Growing With Middle Georgia */
.section-about-intro .about-growing-section {
    padding-top: 30px;
}

.section-about-intro .about-growing-title {
    font-family: var(--fc-font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 20px;
}

.section-about-intro .about-growing-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-text-body);
    margin-bottom: 20px;
}

.section-about-intro .btn-about-history {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    text-decoration: none;
    transition: all var(--fc-transition-fast);
    margin-top: 10px;
}

.section-about-intro .btn-about-history span:first-child {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-about-intro .btn-about-history-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: background-color var(--fc-transition-fast);
}

.section-about-intro .btn-about-history:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-about-intro .btn-about-history:hover .btn-about-history-icon {
    background-color: var(--fc-red);
}

.section-about-intro .about-growing-image {
    border-radius: 15px;
    overflow: hidden;
}

.section-about-intro .about-growing-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Responsive: About Intro */
@media (max-width: 991px) {
    .section-about-intro .about-growing-section .row {
        flex-direction: column-reverse;
    }
    
    .section-about-intro .about-growing-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-about-intro .about-intro-title {
        font-size: 26px;
    }
    
    .section-about-intro .about-intro-text,
    .section-about-intro .about-intro-question,
    .section-about-intro .about-intro-answer {
        font-size: 16px;
    }
    
    .section-about-intro .about-growing-title {
        font-size: 24px;
    }
}

/* ============================================
   SECTION: Our Business (Full-Service Brokerage)
   Class: .section-our-business
   Description: Service cards with hover expand effect
   ============================================ */
.section-our-business {
    position: relative;
    padding: 0;
}

.section-our-business .our-business-top {
    background-image: url('../images/our-business-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0 220px;
}

.section-our-business .our-business-bottom {
    background-color: var(--fc-white);
    padding: 220px 0 80px;
    margin-top: -190px;
}

.section-our-business .our-business-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-our-business .our-business-title {
    font-family: var(--fc-font-body);
    font-size: 32px;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 25px;
}

.section-our-business .our-business-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-white);
    margin-bottom: 20px;
}

.section-our-business .our-business-subtitle {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fc-white);
    margin-bottom: 0;
}

/* Cards Container */
.section-our-business .our-business-cards-wrapper {
    position: relative;
    z-index: 10;
    margin-top: -190px;
}

.section-our-business .our-business-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Individual Card */
.section-our-business .business-card {
    position: relative;
    flex: 0 0 260px;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: flex 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-our-business .business-card:hover {
    flex: 0 0 320px;
}

/* Card Image */
.section-our-business .business-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.section-our-business .business-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 40%, transparent 100%);
    z-index: 1;
}

/* Card Content */
.section-our-business .business-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-our-business .business-card-title {
    font-family: var(--fc-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-white);
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-our-business .business-card-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--fc-white);
    margin: 0 0 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.section-our-business .business-card:hover .business-card-text {
    opacity: 1;
    max-height: 150px;
}

.section-our-business .business-card-arrow {
    position: absolute;
    bottom: 0px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.section-our-business .business-card:hover .business-card-arrow {
    opacity: 1;
}

.section-our-business .business-card-arrow:hover {
    background-color: var(--fc-red);
}

/* Responsive: Our Business */
@media (max-width: 1699.98px) {
    .section-our-business .our-business-cards {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 1200px;
    }
    
    .section-our-business .business-card {
        flex: 0 0 calc(33.333% - 10px);
        height: 340px;
    }
    
    .section-our-business .business-card:hover {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .section-our-business .business-card-text {
        opacity: 1;
        max-height: 150px;
    }
    
    .section-our-business .business-card-arrow {
        opacity: 1;
    }
}

@media (max-width: 1199.98px) {
    .section-our-business .our-business-cards {
        max-width: 1000px;
    }
    
    .section-our-business .business-card {
        height: 300px;
    }
}

@media (max-width: 991px) {
    .section-our-business .our-business-top {
        padding: 60px 0 180px;
    }
    
    .section-our-business .our-business-cards-wrapper {
        margin-top: -150px;
    }
    
    .section-our-business .our-business-bottom {
        margin-top: -150px;
        padding: 180px 0 60px;
    }
    
    .section-our-business .our-business-cards {
        max-width: 800px;
    }
    
    .section-our-business .business-card {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .section-our-business .our-business-title {
        font-size: 26px;
    }
    
    .section-our-business .our-business-top {
        padding: 50px 15px 120px;
    }
    
    .section-our-business .our-business-cards-wrapper {
        margin-top: -100px;
    }
    
    .section-our-business .our-business-bottom {
        margin-top: -100px;
        padding: 120px 0 50px;
    }
    
    .section-our-business .our-business-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-our-business .business-card {
        flex: none !important;
        width: 100% !important;
        height: 280px !important;
        transition: none !important;
        transform: none !important;
    }
    
    .section-our-business .business-card:hover {
        flex: none !important;
        width: 100% !important;
        height: 280px !important;
        transform: none !important;
    }
    
    .section-our-business .business-card-image {
        transition: none !important;
        transform: none !important;
    }
    
    .section-our-business .business-card:hover .business-card-image {
        transform: none !important;
    }
    
    .section-our-business .business-card-text {
        opacity: 1 !important;
        max-height: 150px !important;
        transition: none !important;
    }
    
    .section-our-business .business-card-arrow {
        opacity: 1 !important;
        transition: none !important;
    }
}

/* ============================================
   SECTION: Solutions CTA
   Class: .section-solutions
   Description: Contact CTA with tree graphic
   ============================================ */
.section-solutions {
    position: relative;
    padding: 40px 0 0;
    background-color: var(--fc-white);
    overflow: hidden;
    margin-bottom: -1px;
}

.section-solutions .container {
    max-width: 1000px;
}

.section-solutions .solutions-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.section-solutions .solutions-text {
    max-width: 450px;
    padding-bottom: 60px;
}

.section-solutions .solutions-title {
    font-family: var(--fc-font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--fc-green-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-solutions .solutions-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--fc-red);
    margin-top: 20px;
}

.section-solutions .solutions-contact {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 10px;
}

.section-solutions .solutions-phone {
    font-family: var(--fc-font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-green-light);
    text-decoration: underline;
    transition: color var(--fc-transition-fast);
}

.section-solutions .solutions-phone:hover {
    color: var(--fc-red);
}

.section-solutions .solutions-tree {
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 0;
    line-height: 0;
}

.section-solutions .solutions-tree img {
    width: 450px;
    height: auto;
    display: block;
    vertical-align: bottom;
    margin-bottom: -25px;
}

/* Responsive: Solutions */
@media (max-width: 991px) {
    .section-solutions .solutions-tree img {
        width: 350px;
    }
    
    .section-solutions .solutions-text {
        max-width: 380px;
    }
}

@media (max-width: 767px) {
    .section-solutions {
        padding: 40px 0 0;
    }
    
    .section-solutions .solutions-content {
        flex-direction: column;
        align-items: center;
    }
    
    .section-solutions .solutions-title {
        font-size: 28px;
    }
    
    .section-solutions .solutions-text {
        max-width: 100%;
        text-align: center;
        padding-bottom: 30px;
    }
    
    .section-solutions .solutions-title::after {
        margin: 20px auto 0;
    }
    
    .section-solutions .solutions-tree img {
        width: 280px;
    }
}

/* ============================================
   SECTION: Contact Form
   Class: .section-contact-form
   Description: Lead generation contact form
   ============================================ */
.section-contact-form {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-gray-light);
}

.section-contact-form .contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-contact-form .contact-title {
    font-family: var(--fc-font-body);
    font-size: var(--fc-h2-size);
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 20px;
}

.section-contact-form .contact-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    margin-bottom: 30px;
}

.section-contact-form .form-group {
    margin-bottom: 25px;
}

.section-contact-form label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 8px;
}

.section-contact-form .form-control {
    width: 100%;
    padding: 18px 18px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-dark);
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color var(--fc-transition-fast), box-shadow var(--fc-transition-fast);
}

.section-contact-form input.form-control {
    height: 56px;
}

.section-contact-form .form-control:focus {
    outline: none;
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

/* Bootstrap Validation Styles */
.section-contact-form .was-validated .form-control:valid,
.section-contact-form .form-control.is-valid {
    border-color: var(--fc-green-light);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23025332' 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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-contact-form .was-validated .form-control:invalid,
.section-contact-form .form-control.is-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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-contact-form .was-validated .form-control:invalid:focus,
.section-contact-form .form-control.is-invalid:focus {
    border-color: var(--fc-red);
    box-shadow: 0 0 0 3px rgba(237, 27, 36, 0.1);
}

.section-contact-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 5px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    color: var(--fc-red);
}

.section-contact-form .was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

.section-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Radio Buttons */
.section-contact-form .radio-group-label {
    margin-bottom: 12px;
}

.section-contact-form .radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-contact-form .radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0;
}

.section-contact-form .radio-option input[type="radio"] {
    display: none;
}

.section-contact-form .radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    transition: border-color var(--fc-transition-fast);
}

.section-contact-form .radio-option input[type="radio"]:checked + .radio-custom {
    border-color: var(--fc-red);
}

.section-contact-form .radio-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--fc-red);
    border-radius: 50%;
}

.section-contact-form .radio-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--fc-text-dark);
}

/* Submit Button */
.section-contact-form .form-submit {
    margin-top: 30px;
}

.section-contact-form .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    transition: all var(--fc-transition-fast);
}

.section-contact-form .btn-submit span:first-child {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-contact-form .btn-submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 16px;
    transition: background-color var(--fc-transition-fast);
}

.section-contact-form .btn-submit:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-contact-form .btn-submit:hover .btn-submit-icon {
    background-color: var(--fc-red);
}

/* Email Validation Indicator */
.email-validation-group .input-with-validation {
    position: relative;
}

.email-validation-group .email-validation-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.email-validation-group .email-validation-icon.valid::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    color: var(--fc-green-light);
}

.email-validation-group .email-validation-icon.invalid::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    color: var(--fc-red);
}

.email-validation-group .email-validation-icon.valid,
.email-validation-group .email-validation-icon.invalid {
    opacity: 1;
}

.email-validation-group .input-with-validation .form-control {
    padding-right: 45px;
}

/* Loading Spinner on Submit Button */
.btn-submit .btn-spinner {
    margin-right: 8px;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-spinner {
    display: inline-block !important;
}

.btn-submit.loading .btn-submit-icon {
    display: none;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Responsive: Contact Form */
@media (max-width: 767px) {
    .section-contact-form .contact-title {
        font-size: var(--fc-h2-size-mobile);
    }
}

/* ============================================
   SECTION: Why List With Fickling
   Class: .section-why-fickling
   Description: Two-column benefits section
   ============================================ */
.section-why-fickling {
    overflow: hidden;
}

.section-why-fickling .why-fickling-wrapper {
    display: flex;
    min-height: 500px;
}

/* Left Column - Green */
.section-why-fickling .why-fickling-left {
    flex: 0 0 35%;
    background: linear-gradient(180deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    padding: 60px 50px;
    display: flex;
    align-items: center;
}

.section-why-fickling .why-fickling-left-content {
    max-width: 320px;
    margin-left: auto;
    text-align: center;
}

.section-why-fickling .why-fickling-title {
    font-family: var(--fc-font-heading);
    font-size: 32px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-why-fickling .why-fickling-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 10px auto 0;
}

.section-why-fickling .why-fickling-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-white);
    margin: 25px 0 30px;
}

.section-why-fickling .btn-why-choose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid var(--fc-white);
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    text-decoration: none;
    transition: all var(--fc-transition-fast);
}

.section-why-fickling .btn-why-choose span:first-child {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-why-fickling .btn-why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: background-color var(--fc-transition-fast);
}

.section-why-fickling .btn-why-choose:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-why-fickling .btn-why-choose:hover .btn-why-choose-icon {
    background-color: var(--fc-red);
}

/* Right Column - White */
.section-why-fickling .why-fickling-right {
    flex: 1;
    background-color: var(--fc-white);
    padding: 50px 60px;
    display: flex;
    align-items: center;
}

.section-why-fickling .why-fickling-right-content {
    max-width: 800px;
}

.section-why-fickling .why-fickling-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-why-fickling .why-fickling-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.section-why-fickling .why-fickling-item:last-child {
    margin-bottom: 0;
}

.section-why-fickling .why-fickling-check {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-why-fickling .why-fickling-check::before {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: 2px solid var(--fc-green-light);
    border-radius: 50%;
}

.section-why-fickling .why-fickling-check i {
    color: var(--fc-red);
    font-size: 20px;
    position: relative;
    z-index: 1;
}

.section-why-fickling .why-fickling-text {
    flex: 1;
    padding-left: 15px;
    border-left: 3px solid var(--fc-red);
}

.section-why-fickling .why-fickling-text h3 {
    font-family: var(--fc-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-green-light);
    margin: 0 0 5px;
}

.section-why-fickling .why-fickling-text p {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--fc-text-body);
    margin: 0;
}

/* Responsive: Why Fickling */
@media (max-width: 991px) {
    .section-why-fickling .why-fickling-wrapper {
        flex-direction: column;
    }
    
    .section-why-fickling .why-fickling-left {
        flex: none;
        padding: 50px 30px;
    }
    
    .section-why-fickling .why-fickling-left-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .section-why-fickling .why-fickling-right {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .section-why-fickling .why-fickling-title {
        font-size: 26px;
    }
    
    .section-why-fickling .why-fickling-item {
        flex-direction: column;
        gap: 0;
    }
    
    .section-why-fickling .why-fickling-check {
        display: none;
    }
    
    .section-why-fickling .why-fickling-text {
        padding-left: 0;
        border-left: none;
    }
    
    .section-why-fickling .why-fickling-text h3 {
        font-size: 18px;
    }
}

/* ============================================
   SECTION: Selling FAQ
   Class: .section-selling-faq
   Description: Accordion FAQ with green icons and red dividers
   ============================================ */
.section-selling-faq {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-gray-light);
}

.section-selling-faq .selling-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-selling-faq .selling-faq-list {
    border-top: 2px solid var(--fc-red);
}

.section-selling-faq .selling-faq-item {
    border-bottom: 2px solid var(--fc-red);
}

.section-selling-faq .selling-faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.section-selling-faq .selling-faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--fc-transition-fast);
}

.section-selling-faq .selling-faq-icon i {
    color: var(--fc-white);
    font-size: 14px;
    transition: transform var(--fc-transition-fast);
}

.section-selling-faq .selling-faq-button[aria-expanded="true"] .selling-faq-icon i {
    transform: rotate(45deg);
}

.section-selling-faq .selling-faq-question {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
}

.section-selling-faq .selling-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.section-selling-faq .selling-faq-answer.open {
    max-height: 300px;
}

.section-selling-faq .selling-faq-answer p {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    padding: 0 0 20px 47px;
    margin: 0;
}

/* Responsive: Selling FAQ */
@media (max-width: 767px) {
    .section-selling-faq .selling-faq-question {
        font-size: 16px;
    }
    
    .section-selling-faq .selling-faq-answer p {
        padding-left: 0;
    }
}

/* ============================================
   SECTION: Contact Form Alt (White Background)
   Class: .section-contact-form-alt
   Description: Alternate contact form with centered heading
   ============================================ */
.section-contact-form-alt {
    padding: var(--fc-section-padding-lg) 0;
    background-color: var(--fc-white);
}

.section-contact-form-alt .contact-form-alt-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-contact-form-alt .contact-alt-header {
    margin-bottom: 40px;
}

.section-contact-form-alt .contact-alt-title {
    font-family: var(--fc-font-heading);
    font-size: var(--fc-h2-size);
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-contact-form-alt .contact-alt-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 10px auto 0;
}

.section-contact-form-alt .contact-alt-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-text-body);
    max-width: 800px;
    margin: 0 auto;
}

.section-contact-form-alt .form-group {
    margin-bottom: 25px;
}

.section-contact-form-alt label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 8px;
}

.section-contact-form-alt .form-control {
    width: 100%;
    padding: 18px 18px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-dark);
    background-color: var(--fc-gray-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color var(--fc-transition-fast), box-shadow var(--fc-transition-fast);
}

.section-contact-form-alt input.form-control {
    height: 56px;
}

.section-contact-form-alt select.form-control {
    height: 56px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
}

.section-contact-form-alt .form-control:focus {
    outline: none;
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

/* Bootstrap Validation Styles */
.section-contact-form-alt .was-validated .form-control:valid,
.section-contact-form-alt .form-control.is-valid,
.fickling-contact-form-alt.was-validated .form-control:valid,
.fickling-contact-form-alt .form-control.is-valid {
    border-color: var(--fc-green-light);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23025332' 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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-contact-form-alt .was-validated select.form-control:valid,
.section-contact-form-alt select.form-control.is-valid,
.fickling-contact-form-alt.was-validated select.form-control:valid,
.fickling-contact-form-alt select.form-control.is-valid {
    background-position: right 15px center, right calc(0.375em + 2rem) center;
}

.section-contact-form-alt .was-validated .form-control:invalid,
.section-contact-form-alt .form-control.is-invalid,
.fickling-contact-form-alt.was-validated .form-control:invalid,
.fickling-contact-form-alt .form-control.is-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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-contact-form-alt .was-validated .form-control:invalid:focus,
.section-contact-form-alt .form-control.is-invalid:focus,
.fickling-contact-form-alt.was-validated .form-control:invalid:focus,
.fickling-contact-form-alt .form-control.is-invalid:focus {
    border-color: var(--fc-red);
    box-shadow: 0 0 0 3px rgba(237, 27, 36, 0.1);
}

.section-contact-form-alt .invalid-feedback,
.fickling-contact-form-alt .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 5px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    color: var(--fc-red);
}

.section-contact-form-alt .was-validated .form-control:invalid ~ .invalid-feedback,
.fickling-contact-form-alt.was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

.section-contact-form-alt textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.section-contact-form-alt .form-submit {
    margin-top: 30px;
}

.section-contact-form-alt .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 10px 10px 10px 25px;
    cursor: pointer;
    transition: all var(--fc-transition-fast);
}

.section-contact-form-alt .btn-submit span:first-child {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-contact-form-alt .btn-submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 16px;
    transition: background-color var(--fc-transition-fast);
}

.section-contact-form-alt .btn-submit:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.section-contact-form-alt .btn-submit:hover .btn-submit-icon {
    background-color: var(--fc-red);
}

/* Responsive: Contact Form Alt */
@media (max-width: 767px) {
    .section-contact-form-alt .contact-alt-title {
        font-size: var(--fc-h2-size-mobile);
    }
}

/* ============================================
   SECTION: Main Footer
   Class: .section-main-footer
   Background: Green gradient with pattern image
   ============================================ */
.section-main-footer {
    background-image: url('../images/secondary-page-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.section-main-footer .footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.section-main-footer .footer-brand {
    max-width: 200px;
}

.section-main-footer .footer-logo {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
}

.section-main-footer .footer-logo-img {
    width: auto;
    display: block;
}

.section-main-footer .footer-brand-divider {
    width: 100%;
    height: 1px;
    background-color: var(--fc-white);
    margin-bottom: 20px;
}

.section-main-footer .footer-social {
    display: flex;
    gap: 15px;
}

.section-main-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--fc-white);
    font-size: 24px;
    transition: all var(--fc-transition-fast);
}

.section-main-footer .footer-social a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.section-main-footer .footer-nav-container {
    display: flex;
    gap: 80px;
}

.section-main-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-main-footer .footer-nav li {
    margin-bottom: 15px;
}

.section-main-footer .footer-nav a {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--fc-white);
    transition: opacity var(--fc-transition-fast);
    text-decoration: none;
}

.section-main-footer .footer-nav a:hover {
    opacity: 0.8;
}

/* Equal Housing Logo */
.section-main-footer .footer-equal-housing {
    display: flex;
    align-items: flex-start;
}

.section-main-footer .equal-housing-logo {
    width: 60px;
    height: auto;
}

/* Copyright Bar */
.section-main-footer .footer-copyright {
    margin-top: 40px;
    padding: 15px 0;
    background-color: var(--fc-green-dark);
    border-top: 3px solid var(--fc-white);
}

.section-main-footer .footer-copyright p {
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
}

.section-main-footer .footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.section-main-footer .footer-copyright a:hover {
    color: var(--fc-white);
}

/* Responsive: Footer */
@media (max-width: 991px) {
    .section-main-footer .footer-content {
        flex-wrap: wrap;
    }
    
    .section-main-footer .footer-brand {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .section-main-footer .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .section-main-footer .footer-logo-img {
        margin: 0 auto;
    }
    
    .section-main-footer .footer-brand-divider {
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-main-footer .footer-social {
        justify-content: center;
    }
    
    .section-main-footer .footer-nav-container {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .section-main-footer .footer-equal-housing {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-main-footer {
        padding: 40px 0 0;
    }
    
    .section-main-footer .footer-nav-container {
        gap: 30px;
    }
    
    .section-main-footer .footer-nav {
        text-align: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.fc-text-green-light {
    color: var(--fc-green-light) !important;
}

.fc-text-green-dark {
    color: var(--fc-green-dark) !important;
}

.fc-text-red {
    color: var(--fc-red) !important;
}

.fc-bg-green-light {
    background-color: var(--fc-green-light) !important;
}

.fc-bg-green-dark {
    background-color: var(--fc-green-dark) !important;
}

.fc-bg-gray {
    background-color: var(--fc-gray-light) !important;
}

.fc-bg-gradient {
    background: radial-gradient(ellipse at center, var(--fc-green-light) 0%, var(--fc-green-dark) 100%) !important;
}

.fc-heading {
    font-family: var(--fc-font-heading) !important;
}

.fc-body {
    font-family: var(--fc-font-body) !important;
}

.fc-image-rounded {
    border-radius: var(--fc-image-radius) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Staggered animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Animation on scroll helper */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION: Our Business - Full Width Modifier (Homepage)
   Class: .section-our-business--fullwidth
   Description: Full-width variant for homepage
   ============================================ */
.section-our-business--fullwidth .our-business-title--large {
    font-family: var(--fc-font-heading);
    font-size: 42px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
}

.section-our-business--fullwidth .our-business-title--large::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--fc-red);
    margin: 20px auto 0;
}

.section-our-business--fullwidth .our-business-cards {
    max-width: 1600px;
}

/* Responsive: Full Width Modifier */
@media (max-width: 991px) {
    .section-our-business--fullwidth .our-business-title--large {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-our-business--fullwidth .our-business-title--large {
        font-size: 26px;
    }
}

/* ============================================
   SECTION: Shop Smarter (Three Column CTA)
   Class: .section-shop-smarter
   Description: Three column section with shared background
   ============================================ */

/* ============================================
   SECTION: Featured Properties
   Class: .section-featured-properties
   Description: Property listing rows with cards
   ============================================ */
.section-featured-properties {
    padding: 60px 0 80px;
    background-color: #f5f5f5;
}

.section-featured-properties .featured-main-title {
    font-family: var(--fc-font-heading);
    font-size: 36px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 10px;
}

.section-featured-properties .featured-main-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--fc-red);
    margin-top: 15px;
}

.section-featured-properties .featured-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.section-featured-properties .featured-row:first-of-type {
    border-top: none;
    padding-top: 0;
}

.section-featured-properties .featured-row-header {
    flex: 0 0 220px;
}

.section-featured-properties .featured-row-title {
    font-family: var(--fc-font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--fc-green-light);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-featured-properties .btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    transition: all var(--fc-transition-fast);
    max-width: 200px;
}

.section-featured-properties .btn-see-all span:first-child {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    line-height: 1.3;
}

.section-featured-properties .btn-see-all .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: all var(--fc-transition-fast);
}

.section-featured-properties .btn-see-all:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.section-featured-properties .btn-see-all:hover .btn-arrow {
    background-color: var(--fc-red);
}

.section-featured-properties .featured-cards {
    flex: 1;
    display: flex;
    gap: 20px;
}

/* Property Card Styles */
.section-featured-properties .property-card {
    flex: 1;
    display: block;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--fc-transition-normal);
}

.section-featured-properties .property-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.section-featured-properties .property-card-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.section-featured-properties .property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fc-transition-normal);
}

.section-featured-properties .property-card:hover .property-card-image img {
    transform: scale(1.05);
}

.section-featured-properties .property-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.section-featured-properties .property-price {
    font-family: var(--fc-font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--fc-white);
    margin-bottom: 8px;
}

.section-featured-properties .property-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section-featured-properties .property-address {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
}

.section-featured-properties .property-meta {
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.section-featured-properties .property-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 16px;
    transition: all var(--fc-transition-fast);
}

.section-featured-properties .property-card:hover .property-arrow {
    background-color: var(--fc-red);
}

/* Responsive: Featured Properties */
@media (max-width: 1199px) {
    .section-featured-properties .featured-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .section-featured-properties .featured-row-header {
        flex: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .section-featured-properties .featured-row-title {
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {
    .section-featured-properties .featured-cards {
        flex-wrap: wrap;
    }
    
    .section-featured-properties .property-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .section-featured-properties .property-card:nth-child(3) {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-featured-properties {
        padding: 40px 0 60px;
    }
    
    .section-featured-properties .featured-main-title {
        font-size: 28px;
    }
    
    .section-featured-properties .featured-row-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-featured-properties .featured-cards {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .section-featured-properties .property-card {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .section-featured-properties .property-card-image {
        width: 100%;
        height: 220px;
    }
    
    .section-featured-properties .property-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .section-featured-properties .property-card:nth-child(3) {
        display: block !important;
    }
    
    .section-featured-properties .btn-see-all {
        max-width: none;
    }
}

/* ============================================
   END: Featured Properties
   ============================================ */

.section-shop-smarter {
    position: relative;
    background-image: url('../images/3sectionsbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-shop-smarter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 53, 31, 0.92);
    z-index: 1;
}

.section-shop-smarter .container-fluid {
    position: relative;
    z-index: 2;
}

.section-shop-smarter .shop-smarter-row {
    display: flex;
    flex-wrap: wrap;
}

.section-shop-smarter .shop-smarter-col {
    flex: 1;
    padding: 80px 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.section-shop-smarter .shop-smarter-col:last-child {
    border-right: none;
}

.section-shop-smarter .shop-smarter-title {
    font-family: var(--fc-font-heading);
    font-size: 28px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-shop-smarter .shop-smarter-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--fc-red);
    margin-top: 15px;
}

.section-shop-smarter .shop-smarter-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--fc-white);
    margin-bottom: 30px;
}

.section-shop-smarter .shop-smarter-text strong {
    font-weight: 700;
}

.section-shop-smarter .btn-pill-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--fc-white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    text-decoration: none;
    transition: all var(--fc-transition-fast);
}

.section-shop-smarter .btn-pill-outline span:first-child {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.section-shop-smarter .btn-pill-outline .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--fc-green-light);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: all var(--fc-transition-fast);
}

.section-shop-smarter .btn-pill-outline:hover {
    border-color: #ddd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.section-shop-smarter .btn-pill-outline:hover .btn-arrow {
    background-color: var(--fc-red);
}

/* Responsive: Shop Smarter */
@media (max-width: 991px) {
    .section-shop-smarter .shop-smarter-col {
        flex: 0 0 100%;
        padding: 50px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .section-shop-smarter .shop-smarter-col:last-child {
        border-bottom: none;
    }
    
    .section-shop-smarter .shop-smarter-title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .section-shop-smarter .shop-smarter-col {
        padding: 40px 20px;
    }
    
    .section-shop-smarter .shop-smarter-title {
        font-size: 22px;
    }
}

/* ============================================
   SECTION: Property Detail Page
   Class: .section-property-header, .section-property-gallery, .section-property-content
   Description: Property listing detail page styles
   ============================================ */

/* Property Header */
.section-property-header {
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    padding: 30px 0;
    text-align: center;
}

.section-property-header .property-title {
    font-family: var(--fc-font-heading);
    font-size: 32px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-white);
    margin: 0;
}

.section-property-header .property-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* Property Gallery */
.section-property-gallery {
    background: radial-gradient(ellipse at center, var(--fc-green-light) 0%, #0f1412 100%);
    padding: 0 0 30px;
}

.section-property-gallery .gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.section-property-gallery .gallery-nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-property-gallery .btn-back {
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-property-gallery .btn-back:hover {
    color: var(--fc-white);
    text-decoration: underline;
}

.section-property-gallery .btn-save {
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-property-gallery .btn-save i {
    font-size: 24px;
}

.section-property-gallery .btn-save:hover {
    color: var(--fc-white);
}

.section-property-gallery .btn-saved {
    color: var(--fc-white);
}

.section-property-gallery .btn-saved i {
    color: var(--fc-red);
}

/* Share Button & Dropdown */
.section-property-gallery .share-dropdown {
    position: relative;
}

.section-property-gallery .btn-share {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    color: var(--fc-white);
    border: 1px solid var(--fc-white);
    border-radius: 6px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.section-property-gallery .btn-directions {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    color: var(--fc-white);
    border: 1px solid var(--fc-white);
    border-radius: 6px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.section-property-gallery .btn-share:hover {
    background: var(--fc-white);
    color: var(--fc-green-dark);
}

.section-property-gallery .btn-directions:hover {
    background: var(--fc-white);
    color: var(--fc-green-dark);
    text-decoration: none;
}

.section-property-gallery .share-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: 180px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.section-property-gallery .share-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section-property-gallery .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;
}

.section-property-gallery .share-option:first-child {
    border-radius: 10px 10px 0 0;
}

.section-property-gallery .share-option:last-child {
    border-radius: 0 0 10px 10px;
}

.section-property-gallery .share-option:hover {
    background: #f5f5f5;
    color: var(--fc-green-dark);
}

.section-property-gallery .share-option i {
    width: 18px;
    text-align: center;
    font-size: 16px;
}

.section-property-gallery .share-option .fa-facebook-f { color: #1877f2; }
.section-property-gallery .share-option .fa-x-twitter { color: #000; }
.section-property-gallery .share-option .fa-linkedin-in { color: #0a66c2; }
.section-property-gallery .share-option .fa-pinterest-p { color: #e60023; }
.section-property-gallery .share-option .fa-envelope { color: var(--fc-green-dark); }
.section-property-gallery .share-option .fa-comment-sms { color: #25D366; }
.section-property-gallery .share-option .fa-link { color: var(--fc-green-dark); }

/* SMS option - only show on mobile/tablet */
.section-property-gallery .share-sms {
    display: none;
}

@media (max-width: 1024px) {
    .section-property-gallery .share-sms {
        display: flex;
    }
}

/* Gallery Grid */
.section-property-gallery .gallery-grid {
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
}

/* Gallery containers need position:relative for badge positioning */
.section-property-gallery .gallery-main,
.section-property-gallery .gallery-single {
    position: relative;
}

/* Just Listed Badge - upper left */
.section-property-gallery .property-badge.just-listed {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #025932;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Status Badge - upper right */
.section-property-gallery .property-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.section-property-gallery .property-status-badge.status-active {
    background: #28a745;
    color: white;
}

.section-property-gallery .property-status-badge.status-pending {
    background: #c41230;
    color: white;
}

.section-property-gallery .property-status-badge.status-contingent {
    background: #ffc107;
    color: #333;
}

.section-property-gallery .property-status-badge.status-rent {
    background: #0066cc;
    color: white;
}

/* Desktop Gallery (5 photos) */
.section-property-gallery .gallery-desktop {
    display: flex;
    gap: 10px;
    height: 450px;
}

.section-property-gallery .gallery-main {
    flex: 0 0 60%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.section-property-gallery .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e9ecef; /* Placeholder while lazy-loading */
}

.section-property-gallery .gallery-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.section-property-gallery .gallery-side-stacked {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.section-property-gallery .gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.section-property-gallery .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-property-gallery .gallery-more .more-count {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fc-font-body);
    font-size: 36px;
    font-weight: 700;
    color: var(--fc-white);
}

/* Gallery Filler Tiles - Map & Property Info */
.section-property-gallery .gallery-thumb-wide {
    grid-column: span 2;
    border-radius: 10px;
    overflow: hidden;
}

.section-property-gallery .gallery-thumb-tall {
    grid-row: span 3;
    border-radius: 10px;
    overflow: hidden;
}

.section-property-gallery .gallery-side-full {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 10px;
    overflow: hidden;
}

/* Map Tile */
.section-property-gallery .gallery-map-tile {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.section-property-gallery .gallery-map-tile:hover .map-tile-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.section-property-gallery .gallery-mini-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.section-property-gallery .map-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease;
}

.section-property-gallery .map-tile-overlay span {
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Mini map marker */
.mini-map-marker {
    background: transparent;
}

.mini-map-marker .marker-pin {
    width: 24px;
    height: 24px;
    background-color: var(--fc-red, #c41230);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.mini-map-marker .marker-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Property Info Tile */
.section-property-gallery .gallery-info-tile {
    background-color: #F2EFE9;
    cursor: default;
}

.section-property-gallery .info-tile-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.section-property-gallery .info-tile-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.section-property-gallery .info-tile-item {
    text-align: center;
    flex: 1;
    max-width: 80px;
}

.section-property-gallery .info-tile-value {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.section-property-gallery .info-tile-label {
    font-family: var(--fc-font-body);
    font-size: 9px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-property-gallery .gallery-side-full .info-tile-value {
    font-size: 28px;
}

.section-property-gallery .gallery-side-full .info-tile-label {
    font-size: 11px;
}

.section-property-gallery .gallery-side-full .info-tile-grid {
    flex-direction: column;
    gap: 20px;
}

.section-property-gallery .gallery-side-full .info-tile-grid .info-tile-item {
    max-width: none;
}

.section-property-gallery .gallery-thumb-wide .info-tile-grid {
    gap: 24px;
}

.section-property-gallery .info-tile-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #888;
}

.section-property-gallery .info-tile-empty i {
    font-size: 24px;
}

.section-property-gallery .info-tile-empty span {
    font-family: var(--fc-font-body);
    font-size: 12px;
    font-weight: 500;
}

/* Tablet Gallery (3 photos) */
.section-property-gallery .gallery-tablet {
    display: flex;
    gap: 10px;
    height: 350px;
}

.section-property-gallery .gallery-tablet .gallery-main {
    flex: 0 0 65%;
}

.section-property-gallery .gallery-tablet .gallery-side {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}

.section-property-gallery .gallery-tablet .gallery-thumb-full {
    grid-row: span 2;
    border-radius: 10px;
    overflow: hidden;
}

/* Mobile Gallery (single photo with View All) */
.section-property-gallery .gallery-mobile {
    display: block;
}

.section-property-gallery .gallery-single {
    width: 100%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.section-property-gallery .gallery-single img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh; /* Prevent portrait images from being too tall */
    object-fit: contain;
    background-color: #e9ecef;
}

.section-property-gallery .btn-view-all {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--fc-white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-green-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    pointer-events: none; /* Let click pass through to parent */
}

/* No Photos Fallback */
.section-property-gallery .gallery-no-photos {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.section-property-gallery .gallery-map {
    width: 100%;
    height: 100%;
}

.section-property-gallery .no-photos-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--fc-white);
    padding: 10px 20px;
    border-radius: 25px;
    font-family: var(--fc-font-body);
    font-size: 14px;
}

.section-property-gallery .gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--fc-gray-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-property-gallery .gallery-placeholder i {
    font-size: 60px;
    color: var(--fc-gray-dark);
}

.section-property-gallery .gallery-placeholder span {
    font-family: var(--fc-font-body);
    font-size: 18px;
    color: var(--fc-gray-dark);
}

/* Property Info Bar */
.section-property-gallery .property-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 20px 0;
}

.section-property-gallery .info-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.section-property-gallery .mls-number {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-property-gallery .property-price {
    font-family: var(--fc-font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--fc-white);
}

.section-property-gallery .price-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.section-property-gallery .price-change-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.section-property-gallery .price-change-badge.price-down {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.section-property-gallery .price-change-badge.price-up {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.section-property-gallery .price-change-badge i {
    font-size: 11px;
}

.section-property-gallery .price-change-date {
    font-size: 11px;
    opacity: 0.8;
    margin-left: 2px;
}

.section-property-gallery .property-address {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.section-property-gallery .info-stats {
    display: flex;
    gap: 30px;
}

.section-property-gallery .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.section-property-gallery .stat-value {
    font-family: var(--fc-font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-white);
}

.section-property-gallery .stat-label {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-property-gallery .stat-label i {
    font-size: 14px;
}

/* Mobile Status Badge - Hidden on desktop */
.section-property-gallery .mobile-status-wrapper {
    display: none;
}

.section-property-gallery .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.section-property-gallery .status-badge i {
    font-size: 11px;
}

/* Status Badge Colors */
.section-property-gallery .status-badge.status-active {
    background: rgba(46, 204, 113, 0.25);
    color: #2ecc71;
}

.section-property-gallery .status-badge.status-pending {
    background: rgba(241, 196, 15, 0.25);
    color: #f1c40f;
}

.section-property-gallery .status-badge.status-contingent,
.section-property-gallery .status-badge.status-contingent-due-diligence,
.section-property-gallery .status-badge.status-contingent-inspection,
.section-property-gallery .status-badge.status-contingent-financing,
.section-property-gallery .status-badge[class*="status-contingent"] {
    background: rgba(52, 152, 219, 0.25);
    color: #5dade2;
}

.section-property-gallery .status-badge.status-active-under-contract,
.section-property-gallery .status-badge.status-under-contract {
    background: rgba(230, 126, 34, 0.25);
    color: #e67e22;
}

.section-property-gallery .status-badge.status-sold,
.section-property-gallery .status-badge.status-closed {
    background: rgba(149, 165, 166, 0.25);
    color: #95a5a6;
}

.section-property-gallery .info-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-property-gallery .btn-schedule,
.section-property-gallery .btn-question {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 5px 10px;
    border-radius: 30px;
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    background: var(--fc-white);
    border: 2px solid var(--fc-white);
    color: var(--fc-green-dark);
    position: relative;
    padding-right: 56px;
    text-decoration: none;
}

/* Mobile only - hidden on desktop, shown at 767px */
.section-property-gallery .btn-directions-action {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 5px 10px;
    border-radius: 30px;
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 220px;
    background: var(--fc-white);
    border: 2px solid var(--fc-white);
    color: var(--fc-green-dark);
    position: relative;
    padding-right: 56px;
    text-decoration: none;
}

.section-property-gallery .btn-directions-action:hover {
    color: var(--fc-green-dark);
    text-decoration: none;
}

.section-property-gallery .btn-schedule .btn-arrow,
.section-property-gallery .btn-question .btn-arrow,
.section-property-gallery .btn-directions-action .btn-arrow {
    position: absolute;
    right: 5px;
}

.section-property-gallery .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--fc-green-light);
    color: var(--fc-white);
    font-size: 14px;
    transition: background 0.3s ease;
}

.section-property-gallery .btn-schedule:hover .btn-arrow,
.section-property-gallery .btn-question:hover .btn-arrow,
.section-property-gallery .btn-directions-action:hover .btn-arrow {
    background: var(--fc-red);
}

/* Property Content Section */
.section-property-content {
    padding: 40px 0 80px;
    background: var(--fc-white);
}

/* Tab Navigation */
.section-property-content .property-tabs {
    margin-bottom: 30px;
}

.section-property-content .nav-tabs {
    border-bottom: none;
    gap: 30px;
}

.section-property-content .nav-tabs .nav-link {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 0;
    background: none;
    transition: all 0.3s ease;
}

.section-property-content .nav-tabs .nav-link:hover {
    color: var(--fc-green-light);
    border-bottom-color: var(--fc-green-light);
}

.section-property-content .nav-tabs .nav-link.active {
    color: var(--fc-green-light);
    border-bottom-color: var(--fc-red);
    background: none;
}

/* Section Headings */
.section-property-content .section-heading {
    font-family: var(--fc-font-body);
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-green-light);
    margin-bottom: 20px;
}

/* Property Description */
.section-property-content .property-description {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--fc-gray-medium);
    position: relative;
}

.section-property-content .description-text {
    font-family: var(--fc-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fc-text-body);
    padding-bottom: 10px;
}

.section-property-content .description-text p {
    margin-bottom: 1em;
}

.section-property-content .description-text p:last-child {
    margin-bottom: 0;
}

/* Property Highlights Section */
.section-property-content .property-highlights-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--fc-gray-medium);
}

/* Property Details Section */
.section-property-content .property-details-section {
    margin-top: 30px;
}

.section-property-content .highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

@media (max-width: 768px) {
    .section-property-content .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.section-property-content .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f8fdf9 0%, #f0f7f2 100%);
    border-radius: 10px;
    border-left: 4px solid var(--fc-green);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-property-content .highlight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(2, 89, 50, 0.1);
}

.section-property-content .highlight-item i {
    color: var(--fc-green);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.section-property-content .highlight-item span {
    font-family: var(--fc-font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--fc-text-dark);
    font-weight: 500;
}

/* Property Details Groups */
.section-property-content .property-details-section {
    margin-top: 30px;
}

.section-property-content .property-details-section > h2 {
    margin-bottom: 20px;
}

.section-property-content .property-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 767px) {
    .section-property-content .property-details-grid {
        grid-template-columns: 1fr;
    }
}

.section-property-content .details-group {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px 24px;
    margin-bottom: 0;
}

.section-property-content .details-group-title {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--fc-green-light);
}

/* Full-width sections */
.section-property-content .details-group.full-width {
    grid-column: 1 / -1;
}

/* School zones should always be full width */
.section-property-content .school-zones-wrapper {
    grid-column: 1 / -1;
}

@media (max-width: 991px) {
    .section-property-content .property-details-section {
        grid-template-columns: 1fr;
    }
}

.section-property-content .details-group {
    margin-bottom: 0;
}

.section-property-content .details-group-title {
    font-family: var(--fc-font-heading);
    font-size: 18px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-light);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-property-content .details-subgroup-title {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--fc-text-dark);
    margin-bottom: 10px;
}

.section-property-content .details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.section-property-content .details-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-body);
}

.section-property-content .details-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--fc-red);
    border-radius: 50%;
}

.section-property-content .detail-label {
    font-weight: 600;
    color: var(--fc-text-dark);
}

/* Status Badge in Property Details */
.section-property-content .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 15px;
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.section-property-content .status-badge.status-active {
    background: rgba(46, 204, 113, 0.15);
    color: #27ae60;
}

.section-property-content .status-badge.status-pending {
    background: rgba(241, 196, 15, 0.15);
    color: #d4ac0d;
}

.section-property-content .status-badge.status-contingent,
.section-property-content .status-badge.status-contingent-due-diligence,
.section-property-content .status-badge.status-contingent-inspection,
.section-property-content .status-badge.status-contingent-financing,
.section-property-content .status-badge[class*="status-contingent"] {
    background: rgba(52, 152, 219, 0.15);
    color: #2980b9;
}

.section-property-content .status-badge.status-active-under-contract,
.section-property-content .status-badge.status-under-contract {
    background: rgba(230, 126, 34, 0.15);
    color: #d35400;
}

.section-property-content .status-badge.status-sold,
.section-property-content .status-badge.status-closed {
    background: rgba(149, 165, 166, 0.15);
    color: #7f8c8d;
}

/* Inline list for features */
.section-property-content .details-list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.section-property-content .details-list-inline li {
    margin-bottom: 0;
}

/* School Zones */
.section-property-content .school-zones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.section-property-content .school-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--fc-gray-light);
    border-radius: 10px;
    flex: 0 0 calc(33.333% - 14px);
}

.section-property-content .school-item i {
    font-size: 24px;
    color: var(--fc-green-light);
}

.section-property-content .school-name {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
    display: block;
}

.section-property-content .school-type {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: var(--fc-text-body);
}

/* Property Map */
.section-property-content .property-map {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .section-property-content .property-map {
        height: 400px;
    }
}

@media (max-width: 575.98px) {
    .section-property-content .property-map {
        height: 300px;
    }
}

/* Sidebar */
.section-property-content .property-sidebar {
    position: sticky;
    top: 20px;
}

/* Agent Card */
.section-property-content .agent-card {
    background: var(--fc-white);
    border: 1px solid var(--fc-gray-medium);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.section-property-content .agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-property-content .agent-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.section-property-content .agent-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--fc-gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--fc-gray-dark);
}

.section-property-content .agent-details {
    flex: 1;
}

.section-property-content .agent-name {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--fc-green-light);
    margin: 0 0 5px;
}

.section-property-content .agent-title {
    font-family: var(--fc-font-body);
    font-size: 13px;
    color: var(--fc-text-body);
    margin: 0 0 8px;
}

.section-property-content .agent-email,
.section-property-content .agent-phone {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-green-light);
    text-decoration: underline;
    display: block;
}

.section-property-content .agent-name-link {
    text-decoration: none;
}

.section-property-content .agent-name-link:hover .agent-name {
    color: var(--fc-green-dark);
}

.section-property-content .view-agent-profile {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: var(--fc-green-dark);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.section-property-content .view-agent-profile:hover {
    background: #003d24;
    color: white;
    text-decoration: none;
}

/* Rental Application Card */
.section-property-content .rental-apply-card {
    background: var(--fc-white);
    border: 2px solid var(--fc-green-light);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.section-property-content .rental-criteria-title {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--fc-green-dark);
    margin: 0 0 12px;
}

.section-property-content .rental-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    text-align: left;
}

.section-property-content .rental-criteria-list li {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-body);
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
}

.section-property-content .rental-criteria-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 700;
    position: absolute;
    left: 0;
    color: var(--fc-green-light);
    font-size: 12px;
}

.section-property-content .rental-guidelines-link {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-green-light);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.2s ease;
}

.section-property-content .rental-guidelines-link:hover {
    color: var(--fc-green-dark);
    text-decoration: underline;
}

.section-property-content .rental-guidelines-link i {
    margin-right: 6px;
    color: var(--fc-red);
}

.section-property-content .btn-apply-now {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--fc-red);
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.section-property-content .btn-apply-now:hover {
    background: #c41820;
    color: var(--fc-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(237, 27, 36, 0.3);
}

.section-property-content .btn-apply-now i {
    margin-right: 8px;
}

/* Open House Sidebar Card */
.section-property-content .open-house-card {
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, var(--fc-green-light) 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    color: var(--fc-white);
}

.section-property-content .open-house-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.section-property-content .open-house-card-header i {
    font-size: 24px;
    color: var(--fc-white);
}

.section-property-content .open-house-card-header span {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-property-content .open-house-card-event {
    margin-bottom: 0;
}

.section-property-content .open-house-card-event.border-top {
    border-top: 1px solid rgba(255,255,255,0.2) !important;
}

.section-property-content .open-house-card-date {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-property-content .open-house-card-date i {
    font-size: 14px;
    opacity: 0.8;
    width: 16px;
    text-align: center;
}

.section-property-content .open-house-card-time {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-property-content .open-house-card-time i {
    font-size: 14px;
    opacity: 0.8;
    width: 16px;
    text-align: center;
}

.section-property-content .open-house-card-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.section-property-content .open-house-card-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--fc-white);
    color: var(--fc-green-dark);
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.section-property-content .open-house-card-btn:hover {
    background: var(--fc-gray-light);
    color: var(--fc-green-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.section-property-content .open-house-card-btn i {
    margin-right: 8px;
}

/* Sidebar Form */
.section-property-content .sidebar-form {
    background: var(--fc-white);
    border: 1px solid var(--fc-gray-medium);
    border-radius: 15px;
    padding: 25px;
}

.section-property-content .sidebar-form-title {
    font-family: var(--fc-font-heading);
    font-size: 20px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    color: var(--fc-green-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-property-content .sidebar-form .form-group {
    margin-bottom: 15px;
}

.section-property-content .sidebar-form label {
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fc-text-dark);
    margin-bottom: 5px;
    display: block;
}

.section-property-content .sidebar-form .form-control {
    border: 1px solid var(--fc-gray-medium);
    border-radius: 8px;
    padding: 12px 15px;
    font-family: var(--fc-font-body);
    font-size: 14px;
}

.section-property-content .sidebar-form .form-control:focus {
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

.section-property-content .sidebar-form .btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--fc-green-dark);
    border: none;
    border-radius: 30px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-property-content .sidebar-form .btn-submit:hover {
    background: var(--fc-green-light);
}

.section-property-content .sidebar-form .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--fc-green-light);
    transition: background 0.3s ease;
}

.section-property-content .sidebar-form .btn-submit:hover .btn-arrow {
    background: var(--fc-red);
}

/* Sidebar Form Validation */
.section-property-content .sidebar-form .was-validated .form-control:valid,
.section-property-content .sidebar-form .form-control.is-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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-property-content .sidebar-form .was-validated .form-control:invalid,
.section-property-content .sidebar-form .form-control.is-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(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.section-property-content .sidebar-form .was-validated .form-control:invalid:focus,
.section-property-content .sidebar-form .form-control.is-invalid:focus {
    border-color: var(--fc-red);
    box-shadow: 0 0 0 0.2rem rgba(237, 27, 36, 0.25);
}

.section-property-content .sidebar-form .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 14px;
    color: var(--fc-red);
}

.section-property-content .sidebar-form .was-validated .form-control:invalid ~ .invalid-feedback {
    display: block;
}

/* Listing Credit Card */
.section-property-content .listing-credit-card {
    background: var(--fc-gray-light);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.section-property-content .listing-credit-card .listing-disclaimer {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: var(--fc-text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.section-property-content .listing-credit-card .mls-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.section-property-content .listing-credit-card .listing-credit {
    font-family: var(--fc-font-body);
    font-size: 13px;
    color: var(--fc-text-body);
    margin-bottom: 5px;
}

.section-property-content .listing-credit-card .listing-compensation {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: var(--fc-text-light);
    margin-bottom: 0;
}

/* ============================================
   Mortgage Calculator Styles
   ============================================ */
.mortgage-calculator {
    background: var(--fc-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mortgage-calculator .calc-title {
    font-family: var(--fc-font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--fc-green-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mortgage-calculator .calc-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--fc-red);
}

.mortgage-calculator .calc-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-body);
    margin-bottom: 25px;
}

.mortgage-calculator .calc-form {
    margin-bottom: 30px;
}

.mortgage-calculator .form-group {
    margin-bottom: 20px;
}

.mortgage-calculator label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 8px;
}

.mortgage-calculator .form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-dark);
    background-color: var(--fc-gray-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mortgage-calculator .form-control:focus {
    outline: none;
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

.mortgage-calculator .input-group {
    display: flex;
    flex-wrap: nowrap;
}

.mortgage-calculator .input-group .form-control {
    flex: 1;
    min-width: 0;
    height: auto;
}

.mortgage-calculator .input-group-prepend,
.mortgage-calculator .input-group-append {
    display: flex;
}

.mortgage-calculator .input-group-prepend .input-group-text,
.mortgage-calculator .input-group-append .input-group-text {
    background-color: var(--fc-gray-light);
    border: 1px solid #ddd;
    color: var(--fc-text-body);
    font-family: var(--fc-font-body);
    font-size: 16px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    min-width: 45px;
    justify-content: center;
}

.mortgage-calculator .input-group-prepend .input-group-text {
    border-right: none;
    border-radius: 8px 0 0 8px;
}

.mortgage-calculator .input-group-append .input-group-text {
    border-left: none;
    border-radius: 0 8px 8px 0;
}

/* Input with prepend only ($ before) */
.mortgage-calculator .input-group-prepend + .form-control {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

/* Input with append only (% after) */
.mortgage-calculator .input-group > .form-control:first-child {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

/* Input with both prepend and append */
.mortgage-calculator .input-group-prepend + .form-control:not(:last-child) {
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.mortgage-calculator select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;
    padding-right: 45px;
    height: 52px;
    line-height: 1.2;
    color: var(--fc-text-dark);
}

.mortgage-calculator .btn-calc-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: var(--fc-green-light);
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
}

.mortgage-calculator .btn-calc-submit:hover {
    background-color: var(--fc-green-dark);
}

.mortgage-calculator .btn-calc-submit .btn-submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.mortgage-calculator .btn-calc-submit:hover .btn-submit-icon {
    background-color: var(--fc-red);
}

.mortgage-calculator .calc-results {
    background: var(--fc-gray-light);
    border-radius: 12px;
    padding: 25px;
}

.mortgage-calculator .results-title {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--fc-text-dark);
    margin-bottom: 15px;
}

.mortgage-calculator .results-breakdown {
    margin-bottom: 15px;
}

.mortgage-calculator .result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.mortgage-calculator .result-row:last-child {
    border-bottom: none;
}

.mortgage-calculator .result-label {
    font-family: var(--fc-font-body);
    font-size: 14px;
    color: var(--fc-text-body);
}

.mortgage-calculator .result-value {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-text-dark);
}

.mortgage-calculator .result-total {
    background: var(--fc-white);
    margin: 15px -25px -25px;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
    border-top: 2px solid var(--fc-green-light);
}

.mortgage-calculator .result-total .result-label {
    font-weight: 700;
    color: var(--fc-text-dark);
}

.mortgage-calculator .result-total .result-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--fc-green-light);
}

.mortgage-calculator .calc-disclaimer {
    font-family: var(--fc-font-body);
    font-size: 12px;
    color: var(--fc-text-body);
    margin: 15px 0 0;
    padding: 15px;
    background: var(--fc-white);
    border-radius: 8px;
    text-align: center;
}

/* Widget Rates Banner */
.widget-rates-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--fc-green-dark) 0%, #003d24 100%);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-rate-group {
    text-align: center;
    flex: 1;
    min-width: 60px;
}

.widget-rate-label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-bottom: 2px;
}

.widget-rate-value {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 700;
}

.widget-rate-source {
    font-size: 9px;
    opacity: 0.7;
    text-align: center;
    flex-basis: 100%;
    margin-top: 4px;
}

/* Full Calculator Link */
.mortgage-calculator .calc-full-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-family: var(--fc-font-body);
    font-size: 13px;
    color: var(--fc-green-light);
    text-decoration: none;
}

.mortgage-calculator .calc-full-link:hover {
    text-decoration: underline;
    color: var(--fc-green-dark);
}

.mortgage-calculator .calc-full-link i {
    margin-right: 5px;
}

/* Responsive: Mortgage Calculator */
@media (max-width: 767px) {
    .mortgage-calculator {
        padding: 20px;
    }
    
    .mortgage-calculator .calc-title {
        font-size: 20px;
    }
    
    .mortgage-calculator .result-total .result-value {
        font-size: 20px;
    }
    
    /* Mobile-optimized rate banner */
    .widget-rates-banner {
        padding: 10px 12px;
    }
    
    .widget-rate-value {
        font-size: 14px;
    }
    
    .widget-rate-label {
        font-size: 9px;
    }
    
    /* Better touch targets for mobile */
    .mortgage-calculator .form-control {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 10px 12px;
        height: auto;
    }
    
    .mortgage-calculator select.form-control {
        font-size: 16px;
        padding: 10px 12px;
        height: auto;
    }
    
    .mortgage-calculator label {
        font-size: 12px;
    }
    
    .mortgage-calculator label small {
        display: block;
        font-size: 10px;
        opacity: 0.7;
    }
    
    .mortgage-calculator .input-group-text {
        font-size: 14px;
        padding: 10px;
    }
    
    .mortgage-calculator .btn-calc-submit {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .mortgage-calculator .result-label {
        font-size: 13px;
    }
    
    .mortgage-calculator .result-value {
        font-size: 14px;
    }
    
    .mortgage-calculator .calc-results {
        padding: 20px 15px;
    }
    
    .mortgage-calculator .result-total {
        margin: 15px -15px -20px;
        padding: 15px;
    }
}

/* Photo Gallery Modal */
#photoGalleryModal .modal-dialog {
    max-width: 1400px;
}

#photoGalleryModal .modal-content {
    border-radius: 15px;
    border: none;
}

#photoGalleryModal .modal-header {
    border-bottom: 1px solid var(--fc-gray-medium);
    padding: 15px 20px;
}

#photoGalleryModal .modal-title {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 600;
}

#photoGalleryModal .modal-body {
    padding: 20px;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-modal-item {
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-modal-item:hover img {
    transform: scale(1.05);
}

/* Mobile Modal - Scrollable Full-Width Photos */
.gallery-modal-mobile {
    display: none; /* Hidden on desktop by default */
}

/* Mobile-only styles */
@media (max-width: 767.98px) {
    /* Hide desktop grid on mobile */
    .gallery-modal-grid {
        display: none !important;
    }
    
    /* Show mobile scroll gallery */
    .gallery-modal-mobile {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    /* Full-screen modal on mobile - NO scrollbars except on body */
    #photoGalleryModal {
        padding: 0 !important;
    }
    
    #photoGalleryModal .modal-dialog {
        margin: 0;
        max-width: 100%;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }
    
    #photoGalleryModal .modal-content {
        border-radius: 0;
        height: 100%;
        border: none;
        display: flex;
        flex-direction: column;
    }
    
    #photoGalleryModal .modal-header {
        flex-shrink: 0;
        border-radius: 0;
    }
    
    #photoGalleryModal .modal-body {
        padding: 10px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
}

.gallery-modal-mobile-item {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e9ecef;
    flex-shrink: 0;
}

.gallery-modal-mobile-item img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 80vh; /* Prevent portrait images from being too tall */
    object-fit: contain;
}

.gallery-modal-mobile .gallery-mobile-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    font-family: var(--fc-font-body);
}

.modal-map {
    height: 500px;
    border-radius: 10px;
}

.no-photos-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--fc-gray-dark);
}

.no-photos-message i {
    font-size: 60px;
    margin-bottom: 20px;
}

/* Schedule Tour Modal */
#scheduleTourModal .modal-content {
    border-radius: 15px;
    border: none;
}

#scheduleTourModal .modal-header {
    border-bottom: none;
    padding: 20px 25px 10px;
}

#scheduleTourModal .modal-title {
    font-family: var(--fc-font-body);
    font-size: 18px;
    font-weight: 600;
}

#scheduleTourModal .modal-body {
    padding: 10px 25px 25px;
}

.tour-type-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tour-type-btn {
    padding: 12px 28px;
    border: 2px solid var(--fc-green-light);
    background: var(--fc-white);
    color: var(--fc-green-light);
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-type-btn:hover {
    background: var(--fc-gray-light);
}

.tour-type-btn.active {
    background: var(--fc-green-light);
    color: var(--fc-white);
}

.tour-date-picker {
    margin-bottom: 20px;
}

.tour-date-picker > label {
    font-family: var(--fc-font-body);
    font-size: 14px;
    color: var(--fc-text-body);
    margin-bottom: 10px;
    display: block;
}

.date-scroll-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-nav {
    width: 36px;
    height: 36px;
    border: 1px solid var(--fc-gray-medium);
    background: var(--fc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.date-nav:hover {
    border-color: var(--fc-green-light);
    color: var(--fc-green-light);
}

.date-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.date-options {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.date-option {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    border: 2px solid var(--fc-gray-medium);
    background: var(--fc-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 65px;
}

.date-option:hover {
    border-color: var(--fc-green-light);
}

.date-option.active {
    background: var(--fc-green-light);
    border-color: var(--fc-green-light);
    color: var(--fc-white);
}

.date-option .date-month {
    font-family: var(--fc-font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.date-option .date-day {
    font-family: var(--fc-font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}

.date-option .date-weekday {
    font-family: var(--fc-font-body);
    font-size: 11px;
    text-transform: uppercase;
}

/* Fickling Modal Styles */
.modal-fickling .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-fickling .modal-header {
    border-bottom: none;
    padding: 25px 25px 10px;
}

.modal-fickling .modal-title {
    font-family: var(--fc-font-body);
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-text-dark);
}

.modal-fickling .modal-body {
    padding: 15px 25px 30px;
}

.modal-fickling .close {
    font-size: 28px;
    font-weight: 400;
    color: var(--fc-text-body);
    opacity: 0.6;
}

.modal-fickling .close:hover {
    opacity: 1;
}

/* Fickling Form Styles in Modals */
.modal-fickling .fickling-contact-form-alt .form-group {
    margin-bottom: 20px;
}

.modal-fickling .fickling-contact-form-alt label {
    display: block;
    font-family: var(--fc-font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--fc-text-dark);
    margin-bottom: 8px;
}

.modal-fickling .fickling-contact-form-alt .form-control {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-dark);
    background-color: var(--fc-gray-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-fickling .fickling-contact-form-alt input.form-control {
    height: 54px;
}

.modal-fickling .fickling-contact-form-alt select.form-control {
    height: 54px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: var(--fc-gray-light);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px 12px;
    padding-right: 50px;
}

/* Tour time select in modal - match input styling */
.modal-fickling .form-group select.form-control {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-dark);
    background-color: var(--fc-gray-light);
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 54px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23333333' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px 12px;
    padding-right: 50px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-fickling .form-group select.form-control:focus {
    outline: none;
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

.modal-fickling .fickling-contact-form-alt .form-control:focus {
    outline: none;
    border-color: var(--fc-green-light);
    box-shadow: 0 0 0 3px rgba(2, 83, 50, 0.1);
}

.modal-fickling .fickling-contact-form-alt textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.modal-fickling .fickling-contact-form-alt .form-submit {
    margin-top: 25px;
}

.modal-fickling .fickling-contact-form-alt .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    background-color: var(--fc-green-light);
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-fickling .fickling-contact-form-alt .btn-submit span:first-child {
    font-family: var(--fc-font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--fc-white);
}

.modal-fickling .fickling-contact-form-alt .btn-submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--fc-white);
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.modal-fickling .fickling-contact-form-alt .btn-submit:hover {
    background-color: var(--fc-green-dark);
}

.modal-fickling .fickling-contact-form-alt .btn-submit:hover .btn-submit-icon {
    background-color: var(--fc-red);
}

/* Login Modal */
#loginModal .login-intro {
    font-family: var(--fc-font-body);
    font-size: 16px;
    color: var(--fc-text-body);
    margin-bottom: 20px;
    text-align: center;
}

#loginModal .login-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--fc-gray-medium);
}

#loginModal .login-links a {
    font-family: var(--fc-font-body);
    font-size: 14px;
    color: var(--fc-green-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#loginModal .login-links a:hover {
    color: var(--fc-green-dark);
    text-decoration: underline;
}

#loginModal .login-links .divider {
    margin: 0 10px;
    color: var(--fc-gray-medium);
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox-overlay.is-open {
    display: flex;
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-overlay .lb-close,
.lightbox-overlay .lb-prev,
.lightbox-overlay .lb-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--fc-white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10; /* Ensure buttons are above image */
}

.lightbox-overlay .lb-close:hover,
.lightbox-overlay .lb-prev:hover,
.lightbox-overlay .lb-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-overlay .lb-close {
    top: 20px;
    right: 20px;
}

.lightbox-overlay .lb-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-overlay .lb-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-overlay .lb-stage {
    max-width: 94vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-overlay .lb-img {
    max-width: 94vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.lightbox-overlay .lb-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: white;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.lightbox-overlay .lb-loader.is-loading {
    opacity: 1;
}

.lightbox-overlay .lb-caption {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 14px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 20px;
    border-radius: 6px;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-overlay .lb-counter {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: var(--fc-white);
    font-family: var(--fc-font-body);
    font-size: 13px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 14px;
    border-radius: 20px;
}

/* Responsive: Property Detail Page */
@media (max-width: 991px) {
    .section-property-header .property-title {
        font-size: 26px;
    }
    
    .section-property-gallery .property-info-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-property-gallery .info-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .section-property-gallery .btn-schedule,
    .section-property-gallery .btn-question {
        flex: 1;
        min-width: auto;
    }
    
    .section-property-content .school-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .gallery-modal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .section-property-header .property-title {
        font-size: 22px;
    }
    
    .section-property-gallery .gallery-nav {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .section-property-gallery .gallery-nav-actions {
        gap: 20px;
    }
    
    .section-property-gallery .share-btn-text,
    .section-property-gallery .save-btn-text {
        display: none;
    }
    
    /* Hide desktop directions button on mobile */
    .section-property-gallery .btn-directions {
        display: none;
    }
    
    /* Show full directions button in info-actions on mobile */
    .section-property-gallery .btn-directions-action {
        display: flex;
    }
    
    .section-property-gallery .btn-share {
        padding: 8px 10px;
    }
    
    .section-property-gallery .info-stats {
        gap: 20px;
    }
    
    /* Hide status from stats row on mobile - shown in image badge instead */
    .section-property-gallery .stat-item-status {
        display: none;
    }
    
    .section-property-gallery .stat-value {
        font-size: 20px;
    }
    
    .section-property-gallery .info-actions {
        flex-direction: column;
    }
    
    .section-property-content .nav-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .section-property-content .nav-tabs .nav-link {
        white-space: nowrap;
        font-size: 14px;
    }
    
    .section-property-content .property-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .section-property-content .school-item {
        flex: 0 0 100%;
    }
    
    .gallery-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-overlay .lb-prev,
    .lightbox-overlay .lb-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-overlay .lb-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   SECTION: Tertiary Page Header (3rd Level Pages)
   Class: .section-tertiary-header
   Description: Light background header with subtle foliage texture
   ============================================ */

.section-tertiary-header {
    background-image: url('../images/tertiary-page-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
}

.section-tertiary-header .featured-main-title,
.section-tertiary-header .tertiary-header-title {
    font-family: var(--fc-font-heading);
    font-size: 45px;
    font-weight: 600;
    font-feature-settings: "smcp";
    -webkit-font-feature-settings: "smcp";
    -moz-font-feature-settings: "smcp";
    font-variant: small-caps;
    color: var(--fc-green-light);
    margin-bottom: 0;
}

.section-tertiary-header .featured-main-title::after,
.section-tertiary-header .tertiary-header-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--fc-red);
    margin: 15px auto 0;
}

/* Responsive: Tertiary Header */
@media (max-width: 991px) {
    .section-tertiary-header {
        padding: 40px 0;
    }
    
    .section-tertiary-header .featured-main-title,
    .section-tertiary-header .tertiary-header-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .section-tertiary-header {
        padding: 30px 0;
    }
    
    .section-tertiary-header .featured-main-title,
    .section-tertiary-header .tertiary-header-title {
        font-size: 30px;
    }
}
