/* ============================================
   SureRightStay (SRS) - Brand Stylesheet
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    /* Brand Colors */
    --dark-indigo: #1F0954;
    --royal-indigo: #240952;
    --gold: #C28840;
    --light-gold: #E7B667;
    --burgundy: #5E0B2E;
    
    /* Neutral Colors */
    --ink: #0B0B12;
    --muted-gray: #6B7280;
    --soft-bg: #F7F7FB;
    --white: #FFFFFF;
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #C28840, #E7B667);
    --indigo-gradient: linear-gradient(135deg, #1F0954, #240952);
    
    /* Typography */
    --font-primary: 'Futura BK BT', 'Futura', 'Century Gothic', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 20px 0;
    --section-padding-mobile: 80px 0;
    --section-gap: 60px;
    
    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(31, 9, 84, 0.08);
    --shadow-medium: 0 8px 30px rgba(31, 9, 84, 0.12);
    --shadow-glow: 0 0 20px rgba(194, 136, 64, 0.3);
}

/* ===== Font Face Declarations ===== */
/* Futura BK BT Font Weights */
/* @font-face {
    font-family: 'Futura BK BT';
    src: url('fonts/FuturaBT-Book.woff2') format('woff2'),
         url('fonts/FuturaBT-Book.woff') format('woff'),
         url('fonts/FuturaBT-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
} */

/* @font-face {
    font-family: 'Futura BK BT';
    src: url('fonts/FuturaBT-Medium.woff2') format('woff2'),
         url('fonts/FuturaBT-Medium.woff') format('woff'),
         url('fonts/FuturaBT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
} */
/* 
@font-face {
    font-family: 'Futura BK BT';
    src: url('fonts/FuturaBT-Bold.woff2') format('woff2'),
         url('fonts/FuturaBT-Bold.woff') format('woff'),
         url('fonts/FuturaBT-Bold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
} */

/* @font-face {
    font-family: 'Futura BK BT';
    src: url('fonts/FuturaBT-Heavy.woff2') format('woff2'),
         url('fonts/FuturaBT-Heavy.woff') format('woff'),
         url('fonts/FuturaBT-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

/* @font-face {
    font-family: 'Futura BK BT';
    src: url('fonts/FuturaBT-ExtraBlack.woff2') format('woff2'),
         url('fonts/FuturaBT-ExtraBlack.woff') format('woff'),
         url('fonts/FuturaBT-ExtraBlack.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
} */

/* Fallback: If local Futura BK BT is not available, use system fonts */
@supports not (font-family: 'Futura BK BT') {
    :root {
        --font-primary: 'Futura', 'Century Gothic', 'Avenir Next', 'Avenir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

.hero-heading {
    font-size: 56px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-heading {
    font-size: 40px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}


.section-subheading {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    margin-top: 16px;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 32px auto 0;
    border-radius: 2px;
}

/* ===== Section Header with Hook ===== */
.section-header-wrapper {
    margin-bottom: 10px;
}

.section-badge {
    display: inline-block;
    /* padding: 8px 20px;
    background: var(--gold-gradient); */
    color: var(--dark-indigo);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 20px;
    /* box-shadow: var(--shadow-soft); */
}

.section-main-heading {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-hook-text {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 30px;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.section-description strong {
    color: var(--dark-indigo);
    font-weight: 700;
}

/* ===== Navigation ===== */
.navbar {
    background: rgba(31, 9, 84, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 70px;
    display: flex;
    align-items: center;
}

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

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-height: 60px;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--white) !important;
    text-decoration: none;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    padding: 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 62px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.navbar.scrolled .navbar-logo {
    height: 60px;
    max-width: 190px;
}

.navbar-brand:hover .navbar-logo {
    opacity: 0.9;
    transform: scale(1.02);
}

.brand-name {
    color: var(--white);
}

.brand-tagline {
    color: var(--light-gold);
    font-size: 18px;
    margin-left: 8px;
}

.navbar-nav {
    align-items: start;
    margin: 20px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-family: var(--font-primary);
    margin: 0 12px;
    padding: 8px 0 !important;
    transition: all 0.3s ease;
    position: relative;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--light-gold) !important;
}

.navbar-nav .nav-link:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-link:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:focus::after {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: var(--light-gold) !important;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--indigo-gradient);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--indigo-gradient);
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Hide or reduce hero image on mobile for better visibility */
@media (max-width: 768px) {
    .hero-image {
        opacity: 0.15;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(31, 9, 84, 0.92), rgba(36, 9, 82, 0.88));
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(31, 9, 84, 0.85), rgba(36, 9, 82, 0.75)); */
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-subheading {
    font-size: 20px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    animation: bounce 2s infinite;
    z-index: 4;
    cursor: pointer;
    transition: color 0.3s ease;
}

.scroll-indicator:hover {
    color: var(--light-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== Buttons ===== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-primary-gold {
    background: var(--gold-gradient);
    color: var(--dark-indigo);
    box-shadow: var(--shadow-soft);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--dark-indigo);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

/* ===== Sections ===== */
section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.what-is-srs-section {
    background: linear-gradient(to bottom, var(--soft-bg) 0%, var(--white) 100%);
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.what-is-srs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(194, 136, 64, 0.2), transparent);
}

.tenants-section {
    background: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
}

.landlords-section {
    background: var(--soft-bg);
    padding-top: 20px;
    padding-bottom: 20px;
}

.landlords-section .row {
    gap: 0;
}

.landlords-section .col-lg-5 {
    padding-left: 40px;
}

.landlords-section .col-lg-6 {
    padding-right: 40px;
}

@media (max-width: 991px) {
    .landlords-section .col-lg-5,
    .landlords-section .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.agencies-section {
    background: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
}

.trust-section {
    background: var(--soft-bg);
    padding-top: 20px;
    padding-bottom: 20px;
}

/* ===== Statistics Section ===== */
.statistics-section {
    background: var(--dark-indigo);
    padding: 50px 0;
    position: relative;
    margin-top: 0;
    z-index: 10;
}

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.stat-icon {
    font-size: 40px;
    color: var(--light-gold);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: var(--gold);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Property Showcase ===== */
.property-showcase {
    margin-top: 32px;
}

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

.showcase-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--white);
    padding: var(--section-padding);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    height: 100%;
    margin-bottom: 30px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
}

/* ===== What is SRS Cards ===== */
.ideology-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    border: 1px solid rgba(31, 9, 84, 0.08);
}

.ideology-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(31, 9, 84, 0.15);
    border-color: rgba(194, 136, 64, 0.2);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--soft-bg);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95);
}

.ideology-card:hover .card-image {
    transform: scale(1.15);
    filter: brightness(1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(31, 9, 84, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

.ideology-card:hover .card-overlay {
    opacity: 0.7;
}

.ideology-card .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: translate(0, 0);
    z-index: 3;
    width: 70px;
    height: 70px;
    margin: 0;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--dark-indigo);
    box-shadow: 0 8px 20px rgba(194, 136, 64, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--white);
}

.ideology-card:hover .card-icon {
    transform: translate(0, 0) scale(1.15) rotate(5deg);
    box-shadow: 0 12px 30px rgba(194, 136, 64, 0.5);
}

.ideology-card .card-title,
.ideology-card .card-text {
    position: relative;
    z-index: 2;
    padding: 0 36px;
}

.ideology-card .card-title {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 26px;
    transition: color 0.3s ease;
}

.ideology-card:hover .card-title {
    color: var(--dark-indigo);
}

.ideology-card .card-text {
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted-gray);
}

/* Card icon styles are now in .ideology-card .card-icon above */

.card-title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.card-text {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.6;
}

/* ===== Form Cards ===== */
.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    opacity: 1;
    transform: translateY(0);
    margin-top: 20px;
}

.form-card form {
    margin-top: 8px;
}

/* Compact form grid spacing */
.form-card .row.g-3 {
    margin-bottom: 0;
}

.form-card .row.g-3.mt-0 {
    margin-top: 0;
}

.form-card .row.g-3 {
    margin-bottom: 0;
}

.form-card .row.g-3.mt-0 {
    margin-top: 0;
}

.form-card .row.g-3:not(:last-of-type) {
    margin-bottom: 0;
}

/* Ensure proper spacing between form rows */
.form-card form > .row.g-3 + .row.g-3 {
    margin-top: 0;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.form-label {
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--ink);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.required {
    color: var(--dark-indigo);
    font-weight: 700;
}

.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--white);
    width: 100%;
    margin-bottom: 0;
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--muted-gray);
    opacity: 0.6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(194, 136, 64, 0.1);
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #10B981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%2310b981'%3e%3cpath d='M3 6l2 2 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-control.is-invalid,
.form-select.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #DC2626;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc2626'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6 .4.4.4-.4'/%3e%3cpath d='m6 6v2.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.invalid-feedback {
    display: none;
    color: #DC2626;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

.form-message {
    font-size: 13px;
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
}

/* ===== Feature Lists ===== */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--royal-indigo);
    margin-right: 12px;
    font-size: 18px;
}

/* ===== Enhanced Features Section ===== */
.enhanced-features-wrapper {
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(31, 9, 84, 0.08);
    position: relative;
    overflow: visible;
    opacity: 1;
    visibility: visible;
}

.enhanced-features-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.features-header {
    text-align: center;
    margin-bottom: 48px;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.features-subtitle {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    margin: 0;
    line-height: 1.6;
}

.enhanced-feature-card {
    background: var(--soft-bg);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
}

.enhanced-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.enhanced-feature-card:hover::before {
    transform: scaleX(1);
}

.enhanced-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(194, 136, 64, 0.3);
    box-shadow: 0 12px 30px rgba(31, 9, 84, 0.12);
    background: var(--white);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--indigo-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(194, 136, 64, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.enhanced-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(194, 136, 64, 0.4);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.enhanced-feature-card:hover .feature-card-title {
    color: var(--dark-indigo);
}

.feature-card-text {
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== Priority Badge ===== */
.priority-badge_landlords {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--indigo-gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(194, 136, 64, 0.3);
    letter-spacing: 0.01em;
    animation: pulse-glow 2s ease-in-out infinite;
}

.priority-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--dark-indigo);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 14px;
    margin-bottom: 32px;
    box-shadow: 0 4px 15px rgba(194, 136, 64, 0.3);
    letter-spacing: 0.01em;
    animation: pulse-glow 2s ease-in-out infinite;
}

.priority-badge i {
    font-size: 16px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(194, 136, 64, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(194, 136, 64, 0.5);
    }
}

/* ===== Hook Statements ===== */
.hook-statements {
    margin: 40px 0 32px;
}

.hook-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(31, 9, 84, 0.08);
}

.hook-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(194, 136, 64, 0.2);
}

.hook-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--indigo-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(194, 136, 64, 0.2);
}

.hook-content {
    flex: 1;
}

.hook-title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.hook-text {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== Trust Indicators ===== */
.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(31, 9, 84, 0.1);
}

.trust-stat {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.trust-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--gold);
    margin-bottom: 4px;
    line-height: 1;
}

.trust-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Trust Cards ===== */
.trust-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-card:hover {
    color: var(--gold);
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--soft-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--royal-indigo);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: var(--gold-gradient);
    color: var(--dark-indigo);
    transform: scale(1.1);
}

.trust-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-primary);
    color: var(--dark-indigo);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.trust-text {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: var(--muted-gray);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer-section {
    background: var(--dark-indigo);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-logo-wrapper {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 130px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.footer-logo:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.footer-brand {
    font-size: 32px;
    font-weight: 800;
    font-family: var(--font-primary);
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 18px;
    color: var(--light-gold);
    margin-bottom: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.02em;
}

.footer-description {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.footer-email {
    color: var(--light-gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-email:hover {
    color: var(--gold);
    text-decoration: underline;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===== Image Preview ===== */
#imagePreview {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.image-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.image-preview-item .remove-image {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ===== Loading States ===== */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 42px;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .section-subheading {
        font-size: 24px;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
    
    .form-card {
        padding: 28px 20px;
    }
    
    .navbar-logo {
        height: 40px;
        max-width: 180px;
    }
    
    .navbar {
        padding: 15px 0;
        min-height: 65px;
    }
}

/* ===== Mobile Form Trigger Buttons ===== */
.mobile-form-trigger {
    display: none;
}

@media (max-width: 768px) {
    /* Hero section height for mobile */
    .hero-section {
        min-height: 500px;
        height: 600px;
    }
    
    .hero-section .row.min-vh-100 {
        min-height: auto;
        height: 100%;
    }
    
    /* Hide desktop forms on mobile */
    .form-card {
        display: none;
    }
    
    /* Show mobile trigger buttons */
    .mobile-form-trigger {
        display: block;
        margin-top: 30px;
    }
    
    .mobile-form-trigger .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 18px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-subheading {
        font-size: 18px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .section-main-heading {
        font-size: 32px;
    }
    
    .section-hook-text {
        font-size: 18px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .form-card {
        padding: 24px 18px;
    }
    
    /* Modal styles */
    .modal-description {
        font-size: 16px;
        color: var(--muted-gray);
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .modal-header {
        border-bottom: 2px solid var(--soft-bg);
        padding: 20px 24px;
    }
    
    .modal-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--dark-indigo);
        font-family: var(--font-primary);
    }
    
    .modal-body {
        padding: 24px;
    }
}

/* ===== Modern Modal Styling ===== */
.modal {
    backdrop-filter: blur(8px);
}

.modal-backdrop {
    background: rgba(31, 9, 84, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(31, 9, 84, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    background: var(--white);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, rgba(31, 9, 84, 0.05), rgba(36, 9, 82, 0.02));
    border-bottom: 1px solid rgba(31, 9, 84, 0.1);
    padding: 28px 32px;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.modal-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark-indigo);
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.modal-title i {
    color: var(--gold);
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194, 136, 64, 0.1), rgba(231, 182, 103, 0.05));
    border-radius: 10px;
    flex-shrink: 0;
}

.modal-title::before {
    content: '';
    width: 4px;
    height: 26px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-right: 4px;
}

.btn-close {
    background: rgba(31, 9, 84, 0.1);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover {
    background: rgba(31, 9, 84, 0.15);
    opacity: 1;
    transform: rotate(90deg);
}

.btn-close:focus {
    box-shadow: 0 0 0 3px rgba(194, 136, 64, 0.2);
}

.modal-body {
    padding: 32px;
    background: var(--white);
}

.modal-description {
    font-size: 16px;
    color: var(--muted-gray);
    margin-bottom: 28px;
    line-height: 1.7;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(194, 136, 64, 0.05), rgba(231, 182, 103, 0.03));
    border-left: 3px solid var(--gold);
    border-radius: 8px;
}

.modal-dialog {
    margin: 1.75rem auto;
}

.modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
}

/* Modern form inputs in modal */
.modal-body .form-control,
.modal-body .form-select {
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    position: relative;
}

.modal-body .form-control:hover,
.modal-body .form-select:hover {
    border-color: rgba(194, 136, 64, 0.3);
    box-shadow: 0 2px 8px rgba(31, 9, 84, 0.05);
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(194, 136, 64, 0.1), 0 4px 12px rgba(31, 9, 84, 0.08);
    transform: translateY(-2px);
    outline: none;
}

.modal-body .form-control.is-valid,
.modal-body .form-select.is-valid {
    border-color: #10b981;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.98-.98-.98-.98-.98.98.98.98zm.98-1.96L6.04 1.66l.98.98-2.76 2.76-.98-.98z'/%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);
}

.modal-body .form-control.is-invalid,
.modal-body .form-select.is-invalid {
    border-color: #ef4444;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4M5.8 8.4l.4-.4.4.4'/%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);
}

.modal-body .form-label {
    font-weight: 600;
    color: var(--dark-indigo);
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.modal-body .btn-primary-gold {
    border-radius: 12px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(194, 136, 64, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-body .btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(194, 136, 64, 0.4);
}

.modal-body .btn-primary-gold:active {
    transform: translateY(-1px);
}

/* Modal animation on show */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalBackdropFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show .modal-dialog {
    animation: modalFadeIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.show {
    animation: modalBackdropFade 0.3s ease;
}

/* Form message styling in modal */
.modal-body .form-message {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-body .form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: #059669;
    border-left: 4px solid #10b981;
}

.modal-body .form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

/* Responsive modal adjustments */
@media (max-width: 768px) {
    .modal-content {
        border-radius: 20px;
        margin: 10px;
    }
    
    .modal-header {
        padding: 24px 20px;
    }
    
    .modal-title {
        font-size: 22px;
    }
    
    .modal-body {
        padding: 24px 20px;
    }
    
    .modal-description {
        font-size: 15px;
        padding: 14px 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-main-heading {
        font-size: 28px;
    }
    
    .section-hook-text {
        font-size: 16px;
    }
    
    .row.g-3 {
        --bs-gutter-y: 0.75rem;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 150px;
    }
    
    .navbar {
        padding: 12px 0;
        min-height: 60px;
    }
    
    .navbar-nav .nav-link {
        margin: 0 8px;
        font-size: 15px;
    }
    
    .hook-item {
        padding: 16px;
    }
    
    .hook-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }
    
    .hook-title {
        font-size: 16px;
    }
    
    .hook-text {
        font-size: 13px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .landlords-section .col-lg-5,
    .landlords-section .col-lg-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .enhanced-features-wrapper {
        margin-top: 40px;
        padding: 40px 20px;
    }
    
    .features-title {
        font-size: 24px;
    }
    
    .features-subtitle {
        font-size: 16px;
    }
    
    .enhanced-feature-card {
        margin-bottom: 20px;
        padding: 24px 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .feature-card-title {
        font-size: 18px;
    }
    
    .feature-card-text {
        font-size: 14px;
    }
    
    .ideology-card,
    .trust-card {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

/* ===== Utility Classes ===== */
.opacity-0 {
    opacity: 0;
}

.opacity-1 {
    opacity: 1;
}

/* ===== Animation States ===== */
.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Ensure all animated elements start visible on mobile and as fallback */
@media (max-width: 768px) {
    .ideology-card,
    .trust-card,
    .testimonial-card,
    .stat-card,
    .form-card,
    .enhanced-feature-card {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

/* Fallback: Ensure visibility after a short delay */
.stat-card,
.ideology-card,
.trust-card,
.testimonial-card,
.form-card {
    animation: fadeInFallback 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Accessibility ===== */
*:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Exclude nav links from default focus outline */
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ===== Print Styles ===== */
@media print {
    .navbar,
    .hero-cta,
    .form-card,
    .scroll-indicator {
        display: none;
    }
}

