/* Custom CSS Overrides for Black & White Theme */

:root {
    --primary-black: #000000;
    --primary-dark: #212529;
    --text-dark: #1a1a1a;
    --bg-white: #ffffff;
    --bg-light-gray: #f7f7f7;
    --text-white: #ffffff;
}

/* Global Styles */
body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Primary Buttons */
.btn-primary {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--text-white);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
}

/* Secondary Buttons */
.btn-outline-primary {
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--text-white);
}

/* Language Selector Styles */
.language-selector-btn {
    padding: 0.5rem 0.75rem !important;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.language-selector-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.language-selector-btn .language-code {
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.language-selector-btn .language-chevron {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.language-selector-btn[aria-expanded="true"] .language-chevron {
    transform: rotate(180deg);
}

.language-dropdown {
    min-width: 220px;
    padding: 0.5rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    margin-top: 0.5rem !important;
}

.language-dropdown .dropdown-header {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.language-dropdown .dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
}

.language-dropdown .dropdown-item:hover {
    background-color: var(--primary-black) !important;
    color: var(--text-white) !important;
}

.language-dropdown .dropdown-item:hover .fw-semibold,
.language-dropdown .dropdown-item:hover .text-muted {
    color: var(--text-white) !important;
}

.language-dropdown .dropdown-item.active {
    background-color: var(--primary-black) !important;
    color: var(--text-white) !important;
}

.language-dropdown .dropdown-item.active .fw-semibold,
.language-dropdown .dropdown-item.active .text-muted {
    color: var(--text-white) !important;
}

.language-dropdown .lang-option {
    cursor: pointer;
}

.language-dropdown .language-flag {
    font-size: 1.5rem;
    line-height: 1;
    width: 32px;
    text-align: center;
}

.language-dropdown .fw-semibold {
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 0.125rem;
}

.language-dropdown .text-muted {
    font-size: 0.75rem;
}

.language-dropdown .bi-check-circle-fill {
    font-size: 1.1rem;
}

/* Start Here Dropdown Styles */
.dropdown-menu .start-here-item {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    color: var(--primary-dark);
}

.dropdown-menu .start-here-item:hover {
    background-color: var(--primary-black) !important;
    color: var(--text-white) !important;
}

.dropdown-menu .start-here-item:hover i {
    color: var(--text-white) !important;
}

/* Links */
a {
    color: var(--primary-black);
    text-decoration: none;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Form Controls */
.form-control:focus {
    border-color: var(--primary-black);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.form-label {
    color: var(--text-dark);
    font-weight: 500;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.navbar-brand {
    color: var(--primary-black) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-dark) !important;
    text-decoration: none !important;
}

.nav-link:hover {
    color: var(--primary-black) !important;
    text-decoration: none !important;
}

.navbar-nav .nav-link {
    text-decoration: none !important;
}

.navbar-nav .nav-link:hover {
    text-decoration: none !important;
}

/* Hero Section - Modern Styles */
.hero-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.hero-section-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.hero-content-modern {
    position: relative;
    z-index: 1;
}

.hero-badge {
    animation: fadeInDown 0.6s ease-out;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    color: #ffffff;
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s ease-out;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
}

/* Hero Information Section */
.hero-info-section {
    animation: fadeInUp 1.2s ease-out;
}

.hero-info-section .info-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

.hero-info-section .info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-info-section .info-item i {
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.hero-info-section .info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hero-info-section .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Hero Info Section */
@media (max-width: 991px) {
    .hero-info-section .info-item {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section-modern {
        padding: 60px 0 50px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-info-section .info-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-info-section .info-item i {
        font-size: 1.5rem !important;
    }
    
    .hero-info-section .info-item h5 {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-cta .btn:last-child {
        margin-bottom: 0;
    }
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 1.2s ease-out;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-pill:hover {
    border-color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-pill i {
    margin-right: 6px;
    font-size: 1rem;
}

.feature-pill .text-primary {
    color: #0066cc !important;
}

.feature-pill .text-warning {
    color: #ffaa00 !important;
}

.feature-pill .text-danger {
    color: #ff6600 !important;
}

.hero-cta {
    animation: fadeInUp 1.4s ease-out;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #000000 0%, #212529 100%);
    border: none;
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #212529 0%, #000000 100%);
    color: #ffffff;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 1.6s ease-out;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.trust-item i {
    font-size: 1.1rem;
}

.hero-illustration-modern {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-out;
    overflow: hidden;
}

.hero-illustration-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-illustration-modern svg {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Legacy Hero Section (for backward compatibility) */
.hero-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.hero-illustration {
    max-width: 100%;
    height: auto;
}

.hero-illustration svg {
    display: block;
    margin: 0 auto;
}

.hero-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* Section Backgrounds */
.section-light {
    background-color: var(--bg-light-gray);
}

/* Why It Matters Section - Modern Styles */
.why-it-matters-section {
    background: #f7f7f7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.why-it-matters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.02) 10px, rgba(0, 0, 0, 0.02) 20px);
    pointer-events: none;
    opacity: 0.5;
}

.why-it-matters-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-content {
    position: relative;
    z-index: 2;
}

.badge-modern-secondary {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
    letter-spacing: 0.5px;
}

.section-title-modern {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--text-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-weight: 400;
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #ff6600;
}

.problem-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-content h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problem-content p {
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-showcase {
    position: relative;
    z-index: 2;
}

.solution-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.solution-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.solution-header h3 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2rem;
    margin: 0;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.feature-text h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.feature-text p {
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top-color: #0066cc;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    border-radius: 16px;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.benefit-card:nth-child(2):hover {
    border-top-color: #ffaa00;
}

.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #00cc66 0%, #00aa55 100%);
    box-shadow: 0 4px 12px rgba(0, 204, 102, 0.3);
}

.benefit-card:nth-child(3):hover {
    border-top-color: #00cc66;
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.benefit-card:nth-child(4):hover {
    border-top-color: #ff6600;
}

.benefit-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How We Do It Section - Comprehensive Mapping */
.how-we-do-it-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.how-we-do-it-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.3;
}

.how-we-do-it-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.mapping-category {
    position: relative;
    z-index: 2;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    border-radius: 20px;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}

.category-title {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 2.25rem;
    margin-bottom: 10px;
}

.category-subtitle {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 1.1rem;
    margin: 0;
}

.mapping-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mapping-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mapping-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.mapping-card:hover::before {
    opacity: 1;
}

.mapping-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mapping-card-icon.water {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.mapping-card:hover .mapping-card-icon.water {
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.mapping-card-icon.electricity {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.mapping-card:hover .mapping-card-icon.electricity {
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.mapping-card-icon.gas {
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.mapping-card:hover .mapping-card-icon.gas {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.mapping-card-icon.drainage {
    background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
    box-shadow: 0 4px 12px rgba(0, 170, 255, 0.3);
}

.mapping-card:hover .mapping-card-icon.drainage {
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.4);
}

.mapping-card-icon.surface {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.3);
}

.mapping-card:hover .mapping-card-icon.surface {
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.4);
}

.mapping-card-icon.properties {
    background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.mapping-card:hover .mapping-card-icon.properties {
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.mapping-card-icon.inspection {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
}

.mapping-card:hover .mapping-card-icon.inspection {
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
}

.mapping-card-icon.internet {
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.3);
}

.mapping-card:hover .mapping-card-icon.internet {
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.4);
}

.mapping-card-icon.bridge {
    background: linear-gradient(135deg, #636e72 0%, #4a5459 100%);
    box-shadow: 0 4px 12px rgba(99, 110, 114, 0.3);
}

.mapping-card:hover .mapping-card-icon.bridge {
    box-shadow: 0 6px 20px rgba(99, 110, 114, 0.4);
}

.mapping-card-icon.location {
    background: linear-gradient(135deg, #e84393 0%, #d63384 100%);
    box-shadow: 0 4px 12px rgba(232, 67, 147, 0.3);
}

.mapping-card:hover .mapping-card-icon.location {
    box-shadow: 0 6px 20px rgba(232, 67, 147, 0.4);
}

.mapping-card h5 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.mapping-card p {
    color: var(--text-dark);
    opacity: 0.7;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-features {
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-highlight-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border-radius: 16px;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-highlight-card h4 {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-highlight-card > p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list i {
    color: #00cc66;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.key-benefits-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.key-benefits-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.banner-text {
    color: #ffffff;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.key-benefits-banner .btn {
    position: relative;
    z-index: 1;
}

/* Map Preview Section */
.map-preview-section {
    background: #f7f7f7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.map-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 0, 0, 0.03) 2px, rgba(0, 0, 0, 0.03) 4px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.4;
}

.map-preview-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.map-container {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0f4f8;
    position: relative;
}

#interactive-map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 1;
    min-height: 600px;
}

/* Ensure Leaflet map container has proper dimensions */
#interactive-map.leaflet-container {
    height: 600px !important;
    width: 100% !important;
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

.custom-marker i {
    font-family: "bootstrap-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Leaflet Popup Customization */
.leaflet-popup-content-wrapper {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.leaflet-popup-content {
    margin: 0;
    padding: 0;
}

.custom-popup .leaflet-popup-content-wrapper {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.custom-popup .leaflet-popup-tip {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Leaflet Tooltip Customization */
.custom-tooltip {
    background: #ffffff !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 12px !important;
    color: #1a1a1a !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    white-space: normal !important;
    max-width: 300px !important;
}

.custom-tooltip::before {
    border-top-color: #1a1a1a !important;
}

.leaflet-tooltip-top:before {
    border-top-color: #1a1a1a !important;
}

.leaflet-tooltip-bottom:before {
    border-bottom-color: #1a1a1a !important;
}

.leaflet-tooltip-left:before {
    border-left-color: #1a1a1a !important;
}

.leaflet-tooltip-right:before {
    border-right-color: #1a1a1a !important;
}

.leaflet-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-marker {
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker:hover {
    transform: scale(1.15);
}

.map-marker circle:first-child {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Modern Map Legend */
.map-legend-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e9ecef;
}

.legend-title {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legend-title i {
    color: #0066cc;
}

.legend-subtitle {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.95rem;
    margin: 0;
}

.legend-items-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.legend-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.legend-item-modern:hover {
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.legend-icon-modern {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.legend-icon-modern i {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "FontAwesome", "bootstrap-icons" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    display: inline-block !important;
    color: #ffffff !important;
}

/* Legend icon background colors matching map markers */
.legend-icon-modern.private-house {
    background: #6c5ce7;
}

.legend-icon-modern.electricity-post {
    background: #ffaa00;
}

.legend-icon-modern.water-inspection {
    background: #0066cc;
}

.legend-icon-modern.public-property {
    background: #00b894;
}

.legend-icon-modern.gas-line {
    background: #ff6600;
}

.legend-icon-modern.internet {
    background: #0984e3;
}

.legend-icon-modern.inspection-chamber {
    background: #00b894;
}

.legend-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legend-label {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.legend-desc {
    color: var(--text-dark);
    opacity: 0.6;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Legacy Map Legend (for backward compatibility) */
.map-legend {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.legend-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.2rem;
}

.legend-icon.private-house {
    background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%);
}

.legend-icon.electricity-post {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
}

.legend-icon.water-inspection {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

.legend-icon.public-property {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.legend-icon.gas-line {
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
}

.legend-icon.internet {
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
}

.legend-icon.inspection-chamber {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
}

.legend-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Styles for Map Preview Section */
@media (max-width: 992px) {
    .map-preview-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 20px;
    }
    
    .legend-items {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .map-container {
        padding: 15px;
    }
    
    .legend-items {
        flex-direction: column;
        gap: 15px;
    }
    
    .legend-item {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Responsive Styles for How We Do It Section */
@media (max-width: 992px) {
    .category-title {
        font-size: 1.75rem;
    }
    
    .banner-title {
        font-size: 1.75rem;
    }
    
    .key-benefits-banner {
        text-align: center;
    }
    
    .key-benefits-banner .btn {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .how-we-do-it-section {
        padding: 60px 0;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .category-subtitle {
        font-size: 1rem;
    }
    
    .mapping-card {
        margin-bottom: 20px;
    }
    
    .feature-highlight-card {
        margin-bottom: 30px;
    }
    
    .key-benefits-banner {
        padding: 40px 30px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-text {
        font-size: 1rem;
    }
}

/* Cards */
.card {
    border: 1px solid rgba(0, 0, 0, 0.125);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA Section - Modern Styles */
/* Platform Features Section */
.platform-features-section {
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.platform-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(0, 0, 0, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.6;
}

.platform-features-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at 90% 30%, rgba(108, 92, 231, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.platform-features-section .text-gradient {
    background: none;
    -webkit-text-fill-color: #2563eb;
    color: #2563eb;
}

.platform-feature-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
}

.platform-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
}

.platform-feature-card:hover .feature-icon-wrapper-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

/* Different colors for feature icons - using data attributes */
.platform-feature-card[data-feature-color="purple"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #6c5ce7 0%, #5a4fcf 100%);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.25);
}

.platform-feature-card[data-feature-color="purple"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.35);
}

.platform-feature-card[data-feature-color="teal"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.25);
}

.platform-feature-card[data-feature-color="teal"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.35);
}

.platform-feature-card[data-feature-color="blue"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #0984e3 0%, #0770c4 100%);
    box-shadow: 0 4px 12px rgba(9, 132, 227, 0.25);
}

.platform-feature-card[data-feature-color="blue"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(9, 132, 227, 0.35);
}

.platform-feature-card[data-feature-color="orange"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #ffaa00 0%, #cc8800 100%);
    box-shadow: 0 4px 12px rgba(255, 170, 0, 0.25);
}

.platform-feature-card[data-feature-color="orange"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(255, 170, 0, 0.35);
}

.platform-feature-card[data-feature-color="red"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #ff6600 0%, #cc5500 100%);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
}

.platform-feature-card[data-feature-color="red"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.35);
}

.platform-feature-card[data-feature-color="blue-dark"] .feature-icon-wrapper-modern {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.platform-feature-card[data-feature-color="blue-dark"]:hover .feature-icon-wrapper-modern {
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

.feature-title-modern {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-description-modern {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-benefits-list li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-benefits-list li i {
    color: #00b894;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.platform-features-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 40px 50px;
    border-radius: 16px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.banner-title-modern {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.banner-text-modern {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.platform-features-banner .btn-primary-modern {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.platform-features-banner .btn-primary-modern:hover {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 40px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-section-modern .text-dark-custom {
    color: #ffffff !important;
}

.cta-section-modern .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-section-modern .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.cta-section-modern .btn-primary:hover {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* CTA Gradient Background (matches footer) */
.cta-gradient-bg {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-gradient-bg > * {
    position: relative;
    z-index: 1;
}

/* ============================================
   ELEGANT FOOTER STYLES
   ============================================ */

.footer-elegant {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.footer-elegant .container {
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
    text-decoration: none;
}

.footer-elegant h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 1.5rem;
}

.newsletter-section h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

#newsletterForm .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}

#newsletterForm .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#newsletterForm .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#newsletterForm .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#newsletterForm .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Footer Copyright */
.footer-elegant .border-top {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-elegant .text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-elegant .text-light small {
    font-size: 0.85rem;
}

.footer-elegant .text-danger {
    color: #ff6b6b !important;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-elegant {
        padding: 3rem 0 !important;
    }
    
    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 2rem;
    }
    
    .newsletter-section {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .footer-elegant {
        padding: 2.5rem 0 !important;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    #newsletterForm {
        flex-direction: column;
    }
    
    #newsletterForm .btn-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Responsive Styles for Why It Matters Section */
@media (max-width: 992px) {
    .section-title-modern {
        font-size: 2.25rem;
    }
    
    .solution-card {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .why-it-matters-section {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .problem-item {
        flex-direction: column;
        text-align: center;
    }
    
    .problem-icon {
        margin: 0 auto;
    }
    
    .solution-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon-wrapper {
        margin: 0 auto;
    }
    
    .benefit-card {
        margin-bottom: 20px;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .hero-section-modern {
        padding: 60px 0 40px;
    }
    
    .hero-title-modern {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .platform-features-section {
        padding: 60px 0;
    }
    
    .platform-feature-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .feature-icon-wrapper-modern {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .feature-title-modern {
        font-size: 1.2rem;
    }
    
    .platform-features-banner {
        padding: 30px 25px;
        text-align: center;
    }
    
    .platform-features-banner .btn-primary-modern {
        margin-top: 20px;
        width: 100%;
    }
    
    .banner-title-modern {
        font-size: 1.5rem;
    }
    
    .banner-text-modern {
        font-size: 0.95rem;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .feature-pill {
        width: 100%;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Utility Classes */
.text-dark-custom {
    color: var(--text-dark) !important;
}

.bg-light-gray {
    background-color: var(--bg-light-gray) !important;
}

/* ============================================
   TABLE STYLES - Modern & Clean Design
   ============================================ */

/* Base Table Styles */
.table {
    width: 100%;
    margin-bottom: 0;
    color: var(--text-dark);
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--bg-white);
    font-size: 0.95rem;
}

/* Table Header */
.table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 16px 20px;
    border-bottom: 2px solid #dee2e6;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
}

.table thead th:first-child {
    border-top-left-radius: 8px;
}

.table thead th:last-child {
    border-top-right-radius: 8px;
}

/* Table Body */
.table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.table tbody tr {
    transition: all 0.2s ease;
    background-color: var(--bg-white);
}

/* Hover Effect */
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover td {
    border-bottom-color: #e9ecef;
}

/* Table Striped Rows */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fafafa;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: var(--bg-white);
}

.table-striped.table-hover tbody tr:hover {
    background-color: #f0f0f0;
}

/* Table Bordered */
.table-bordered {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.table-bordered thead th {
    border: 1px solid #dee2e6;
}

.table-bordered tbody td {
    border: 1px solid #e9ecef;
}

/* Table Responsive Wrapper */
.table-responsive {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive .table {
    margin-bottom: 0;
    min-width: 100%;
}

/* Table in Cards */
.card .table-responsive {
    box-shadow: none;
    border-radius: 0;
}

.card .table {
    margin-bottom: 0;
}

.card .table thead th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Table Actions Column */
.table tbody td.text-end {
    white-space: nowrap;
}

.table tbody td .btn {
    margin-left: 4px;
    margin-right: 4px;
}

.table tbody td .btn:first-child {
    margin-left: 0;
}

.table tbody td .btn:last-child {
    margin-right: 0;
}

/* Table Badges in Cells */
.table tbody td .badge {
    font-size: 0.75rem;
    padding: 6px 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Table Strong Text */
.table tbody td strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Table Small Text */
.table tbody td small {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Empty Table State */
.table tbody tr td[colspan] {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-style: italic;
}

/* Table Footer */
.table tfoot th,
.table tfoot td {
    background-color: #f8f9fa;
    font-weight: 600;
    padding: 16px 20px;
    border-top: 2px solid #dee2e6;
}

/* Responsive Table Styles */
@media (max-width: 768px) {
    .table {
        font-size: 0.875rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 12px 10px;
    }
    
    .table thead th {
        font-size: 0.75rem;
    }
    
    .table tbody td .btn {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .table {
        color: #e9ecef;
        background-color: #212529;
    }
    
    .table thead th {
        background: linear-gradient(135deg, #343a40 0%, #495057 100%);
        color: #ffffff;
        border-bottom-color: #6c757d;
    }
    
    .table tbody td {
        border-bottom-color: #495057;
    }
    
    .table-hover tbody tr:hover {
        background-color: #343a40;
    }
    
    .table-striped tbody tr:nth-of-type(odd) {
        background-color: #2c3136;
    }
}

/* Hero Illustration Modern - Image Support */
.hero-illustration-modern img {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.hero-illustration-modern:hover img {
    transform: scale(1.02);
}

/* ============================================
   FILTER SECTION STYLES
   ============================================ */

.filter-section {
    border-bottom: 1px solid #e9ecef;
}

.filter-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.filter-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-label i {
    margin-right: 0.25rem;
}

.filter-select {
    border: 2px solid #e9ecef !important;
    border-radius: 10px !important;
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
    background-color: #fff !important;
    color: #212529 !important;
    transition: all 0.2s ease;
}

.filter-select:focus {
    border-color: #1a1a2e !important;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1) !important;
}

.filter-select:disabled {
    background-color: #f8f9fa !important;
    color: #adb5bd !important;
    cursor: not-allowed;
}

.filter-select option {
    color: #212529 !important;
    background-color: #fff !important;
    padding: 0.5rem;
}

.filter-select option:hover,
.filter-select option:focus {
    background-color: #f8f9fa !important;
    color: #212529 !important;
}

.filter-select option:checked {
    background-color: #e9ecef !important;
    color: #212529 !important;
}

/* Filter Buttons */
.filter-section .btn-dark {
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    border-radius: 10px;
}

.filter-section .btn-outline-secondary {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
}

/* Active Filters */
.active-filters {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.active-filters-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-right: 0.75rem;
}

.active-filters-tags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    background: #1a1a2e;
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.filter-tag i {
    margin-left: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.filter-tag i:hover {
    opacity: 1;
}

/* Loading State for Selects */
.filter-select.loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cstyle%3E.spinner{animation:spin 1s linear infinite}@keyframes spin{to{transform:rotate(360deg)}}%3C/style%3E%3Ccircle class='spinner' cx='12' cy='12' r='10' stroke='%236c757d' stroke-width='2' fill='none' stroke-dasharray='31.4 31.4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 1rem !important;
}

/* ============================================
   MEMBERS PAGE STYLES
   ============================================ */

.members-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.members-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.members-hero .hero-content {
    position: relative;
    z-index: 1;
}

.members-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.members-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.company-count-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-count-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.company-count-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.company-count-badge:hover::before {
    opacity: 1;
}

.company-count-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

#membersMap {
    height: 600px;
    width: 100%;
    border-radius: 0;
    z-index: 1;
}

.map-container {
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.map-overlay h5 {
    margin: 0;
    font-weight: 600;
    color: #1a1a2e;
}

.map-overlay p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Company Popup Styles */
.company-popup {
    min-width: 280px;
    padding: 0;
}

.company-popup .popup-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 1px solid #eee;
}

.company-popup .popup-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.company-popup .popup-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.company-popup .popup-info h6 {
    margin: 0;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

.company-popup .popup-info .tagline {
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.company-popup .popup-body {
    padding: 1rem;
}

.company-popup .popup-category {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.company-popup .popup-address {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.company-popup .popup-address i {
    margin-right: 0.5rem;
    color: #1a1a2e;
}

.company-popup .btn-view-profile {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.company-popup .btn-view-profile:hover {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Leaflet Popup Override */
.leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.leaflet-popup-content {
    margin: 0;
    width: auto !important;
}

.leaflet-popup-tip {
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0, 0, 0, 0.01) 2px, rgba(0, 0, 0, 0.01) 4px);
    pointer-events: none;
    opacity: 0.5;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

/* Modern Stat Cards */
.stat-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(26, 26, 26, 0.1);
}

/* Stat Icon Wrapper */
.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-modern:hover .stat-icon-wrapper::after {
    opacity: 1;
}

.stat-icon-1 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.stat-icon-2 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.stat-icon-3 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.stat-icon-4 {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-number {
    color: #000000;
    transform: scale(1.05);
}

.stat-label {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.stat-card-modern:hover .stat-label {
    color: #495057;
}

/* Responsive Stats Section */
@media (max-width: 991px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-card-modern {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stat-card-modern {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        margin-bottom: 1rem;
    }
    
    .stat-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 14px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Legacy stat-item for backward compatibility */
.stat-item {
    text-align: center;
    padding: 1.5rem;
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
    background: #ffffff;
    min-height: 600px;
}

/* FAQ Sidebar */
.faq-sidebar {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    position: sticky;
    top: 100px;
    border: 1px solid #f0f0f0;
}

.faq-sidebar-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.faq-sidebar-header h3 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* FAQ Navigation */
.faq-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-nav-item {
    background: transparent;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.faq-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-nav-item:hover {
    background: #f8f9fa;
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateX(5px);
}

.faq-nav-item:hover::before {
    transform: scaleY(1);
}

.faq-nav-item.active {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.faq-nav-item.active::before {
    transform: scaleY(1);
    background: #ffffff;
}

.faq-nav-item i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.faq-nav-item.active i {
    color: #ffffff;
}

/* FAQ Content Wrapper */
.faq-content-wrapper {
    position: relative;
    min-height: 500px;
}

.faq-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.faq-content.active {
    display: block;
}

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

/* FAQ Content Header */
.faq-content-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.faq-content-header h2 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.faq-content-header h2 i {
    color: #1a1a1a;
    margin-right: 0.75rem;
}

.faq-content-header p {
    font-size: 1rem;
    margin: 0;
}

/* FAQ Content Body */
.faq-content-body {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h4 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.faq-item h4 i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.faq-item p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-item ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.faq-item ul li {
    color: #495057;
    line-height: 1.8;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.faq-item ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .faq-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }

    .faq-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .faq-nav-item {
        flex: 1 1 auto;
        min-width: 200px;
        justify-content: center;
    }

    .faq-content-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-sidebar {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .faq-sidebar-header h3 {
        font-size: 1.25rem;
    }

    .faq-nav {
        flex-direction: column;
    }

    .faq-nav-item {
        width: 100%;
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .faq-content-header {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-content-header h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-content-header h2 i {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    .faq-content-body {
        padding: 1.5rem;
    }

    .faq-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .faq-item h4 {
        font-size: 1.1rem;
    }

    .faq-item p,
    .faq-item ul li {
        font-size: 0.9rem;
    }
}

/* Category Cards */
.categories-section {
    padding: 4rem 0;
}

.category-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.category-card h5 {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   COMPANY CARDS SECTION
   ============================================ */

.company-cards-section {
    background: #fff;
}

.company-cards-section .section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* Company Card */
.company-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.company-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    position: relative;
}

/* Like Badge on Card Header */
.like-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #6c757d;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.like-badge i {
    font-size: 0.9rem;
}

.like-badge .text-danger {
    color: #dc3545 !important;
}

.company-card-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-card-logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-card-body {
    padding: 1.25rem;
    flex: 1;
}

.company-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.company-card-tagline {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.company-card-category {
    display: inline-block;
    background: #1a1a2e;
    color: #fff;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.company-card-subcategory {
    display: inline-block;
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.company-card-address {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.company-card-address i {
    color: #1a1a2e;
    margin-right: 0.25rem;
}

.company-card-reviews {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}
.company-card-reviews .review-stars {
    font-size: 0.85rem;
}
.company-card-reviews .review-info {
    font-size: 0.8rem;
    color: #6c757d;
}
.company-card-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

.company-card-footer .btn {
    border-radius: 8px;
    font-weight: 500;
}

/* Icon Buttons */
.btn-icon {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.btn-icon:hover {
    transform: scale(1.05);
}

.btn-outline-warning.btn-icon {
    border-color: #ffc107;
    color: #ffc107;
}
.btn-outline-warning.btn-icon:hover {
    background: #ffc107;
    color: #000;
}

/* Star Rating Input */
.star-rating-input {
    font-size: 2rem;
}
.star-input {
    cursor: pointer;
    color: #dee2e6;
    transition: all 0.2s ease;
    margin: 0 0.15rem;
}
.star-input:hover,
.star-input.hovered,
.star-input.selected {
    color: #ffc107;
}

/* Like Button Specific */
.btn-like {
    position: relative;
}

.btn-like.btn-danger {
    animation: likePopIn 0.3s ease;
}

@keyframes likePopIn {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Like Count next to Button */
.like-count {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    min-width: 20px;
    text-align: left;
}

/* ============================================
   CONTACT MODAL STYLES
   ============================================ */

#contactModal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

#contactModal .modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

#contactModal .modal-title {
    font-weight: 700;
    color: #1a1a2e;
}

#contactModal .modal-body {
    padding: 1rem 1.5rem;
}

#contactModal .modal-footer {
    padding: 0.5rem 1.5rem 1.5rem;
}

/* Contact Type Options */
.contact-type-option {
    margin: 0;
    padding: 0;
}

.contact-type-option .form-check-input {
    display: none;
}

.contact-type-option .form-check-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
}

.contact-type-option .form-check-label i {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.contact-type-option .form-check-input:checked + .form-check-label {
    background: #1a1a2e;
    border-color: #1a1a2e;
    color: #fff;
}

.contact-type-option .form-check-label:hover {
    border-color: #1a1a2e;
}

/* User Type Selection Cards */
#userTypeModal .modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.user-type-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-type-card:hover {
    border-color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.user-type-card .user-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.user-type-card .user-type-icon i {
    font-size: 1.75rem;
}

.user-type-card h6 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #1a1a2e;
}

.user-type-card:hover h6 {
    color: #0d6efd;
}

.user-type-card.selected {
    border-color: #1a1a2e;
    background: #f8f9fa;
}

.user-type-card.selected h6 {
    color: #1a1a2e;
}

.user-type-card.selected .user-type-icon {
    transform: scale(1.1);
}

/* Form Controls in Modal */
#contactModal .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    transition: all 0.2s ease;
}

#contactModal .form-control:focus {
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

#contactModal .form-label {
    color: #495057;
    font-size: 0.9rem;
}

#contactModal textarea.form-control {
    resize: none;
}

/* Sort Select */
.company-cards-section .form-select-sm {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.4rem 2rem 0.4rem 0.75rem;
    font-size: 0.85rem;
    background-color: #fff;
    color: #212529;
}

.company-cards-section .form-select-sm:focus {
    border-color: #1a1a2e;
    box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .members-title {
        font-size: 2rem;
    }
    
    #membersMap {
        height: 450px;
    }
    
    .filter-card {
        padding: 1rem;
    }
    
    .company-card-logo,
    .company-card-logo-placeholder {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .members-title {
        font-size: 1.75rem;
    }
    
    #membersMap {
        height: 350px;
    }
    
    .map-overlay {
        display: none;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .company-cards-section .section-title {
        font-size: 1.5rem;
    }
    
    .company-card-header {
        padding: 1rem;
        min-height: 100px;
    }
    
    .company-card-logo,
    .company-card-logo-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .company-card-name {
        font-size: 1rem;
    }
}

/* ============================================
   PROPERTY MANAGEMENT PAGE STYLES
   Modern Property Management with New Technologies
   ============================================ */

/* Hero Section - Property Management */
.hero-section-modern.bg-gradient-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section-modern.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section-modern.bg-gradient-primary .hero-title-modern,
.hero-section-modern.bg-gradient-primary .hero-subtitle-modern,
.hero-section-modern.bg-gradient-primary .feature-pill {
    color: white;
}

.hero-section-modern.bg-gradient-primary .text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section-modern.bg-gradient-primary .feature-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.hero-section-modern.bg-gradient-primary .feature-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-section-modern .trust-item,
.hero-section-modern.bg-gradient-primary .trust-item {
    color: #fff;
}

/* Property Dashboard Preview */
.property-dashboard-preview {
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: scale(1.02);
}

.dashboard-header-mock {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mock-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.dashboard-content-mock {
    padding: 20px;
    background: #f7fafc;
}

.mock-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.mock-stat-card {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.mock-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .mock-stat-card i {
        font-size: 24px;
        color: #1a1a1a;
    }

.mock-stat-card strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.mock-stat-card small {
    display: block;
    font-size: 12px;
    color: #718096;
}

.mock-chart {
    background: white;
    padding: 20px;
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.chart-bars {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: flex-end;
    height: 100%;
}

    .bar {
        flex: 1;
        background: linear-gradient(to top, #1a1a1a, #2a2a2a);
        border-radius: 4px 4px 0 0;
        min-height: 20px;
        transition: transform 0.3s ease;
        animation: barGrow 1s ease-out;
    }

.bar:hover {
    transform: scaleY(1.1);
    opacity: 0.9;
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

/* Features Section */
.features-section {
    background: #ffffff;
    position: relative;
}

.feature-card-modern {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.2);
    border-color: rgba(26, 26, 26, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.4);
}

.feature-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
    line-height: 1.3;
}

.feature-description {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 10px 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list i {
    color: #48bb78;
    margin-right: 12px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05) 0%, rgba(42, 42, 42, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::after {
    opacity: 1;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.4);
}

.step-icon {
    font-size: 56px;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    color: #2a2a2a;
}

.step-title {
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
    font-size: 1.35rem;
    position: relative;
    z-index: 1;
}

.step-description {
    color: #718096;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* Transfer Feature Section */
.transfer-feature-section {
    background: #ffffff;
    position: relative;
}

.transfer-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.transfer-feature-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transfer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.transfer-feature-item:hover .transfer-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

.transfer-icon i {
    font-size: 28px;
    color: white;
}

.transfer-content h5 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.2rem;
}

.transfer-content p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

.transfer-process-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-indicator {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.step-content h6 {
    font-weight: 800;
    margin-bottom: 5px;
    color: #2d3748;
    font-size: 1.1rem;
}

.step-content p {
    color: #718096;
    margin: 0;
    font-size: 0.9rem;
}

.process-arrow {
    text-align: center;
    color: #1a1a1a;
    margin: 10px 0;
    padding-left: 35px;
    font-size: 24px;
}

/* Infrastructure Section */
.infrastructure-section {
    background: #ffffff;
}

.infrastructure-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.infrastructure-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.infrastructure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
    border-color: rgba(26, 26, 26, 0.3);
}

.infra-icon {
    font-size: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.infrastructure-card:hover .infra-icon {
    transform: scale(1.1);
}

.infrastructure-card h5 {
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
    font-size: 1.35rem;
}

.infrastructure-card p {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.security-badge-large {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.3);
    position: relative;
    overflow: hidden;
}

.security-badge-large::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.security-badge-large i {
    font-size: 96px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.security-badge-large h3 {
    font-weight: 800;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.security-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.security-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.security-item i {
    font-size: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.security-item:hover i {
    transform: scale(1.1);
}

.security-item h5 {
    font-weight: 800;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 1.2rem;
}

.security-item p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section-modern .text-dark-custom {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 2.5rem;
}

.cta-section-modern .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.15rem;
}

.cta-section-modern .btn-primary-modern {
    background: white;
    color: #1a1a1a;
    border: none;
}

.cta-section-modern .btn-primary-modern:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-section-modern .btn-outline-modern {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-section-modern .btn-outline-modern:hover {
    background: white;
    color: #1a1a1a;
}

/* Technology Badge */
.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.tech-badge i {
    font-size: 1rem;
}

/* Project Announcements Section */
.project-announcements-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    position: relative;
}

.announcement-step-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.announcement-step-card.featured {
    border: 2px solid #1a1a1a;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.announcement-step-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
}

.announcement-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
}

.step-number-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
}

.step-icon-large {
    font-size: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.announcement-step-card:hover .step-icon-large {
    transform: scale(1.1);
}

.step-title-large {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
    line-height: 1.3;
}

.step-description-large {
    color: #718096;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

.benefit-card-small {
    background: white;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card-small:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.15);
}

.benefit-card-small i {
    font-size: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.benefit-card-small h6 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #2d3748;
    font-size: 1.1rem;
}

.benefit-card-small p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.announcement-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.2);
    position: relative;
    overflow: hidden;
}

.announcement-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-title-small {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-text-small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.announcement-cta .btn-primary-modern {
    background: white;
    color: #1a1a1a;
    border: none;
    position: relative;
    z-index: 1;
}

.announcement-cta .btn-primary-modern:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.announcement-cta .btn-outline-modern {
    background: transparent;
    border: 2px solid white;
    color: white;
    position: relative;
    z-index: 1;
}

.announcement-cta .btn-outline-modern:hover {
    background: white;
    color: #1a1a1a;
}

/* Map Boundaries Section */
.map-boundaries-section {
    background: #ffffff;
    position: relative;
}

.mapping-features-list {
    margin-top: 30px;
}

.mapping-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
}

.mapping-feature-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mapping-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.mapping-feature-item:hover .mapping-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.4);
}

.mapping-feature-icon i {
    font-size: 24px;
    color: white;
}

.mapping-feature-content h5 {
    font-weight: 800;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 1.1rem;
}

.mapping-feature-content p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.boundary-sample-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.boundary-sample-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.boundary-sample-header h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.sample-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.boundary-sample-map {
    padding: 0;
    background: #f7fafc;
    min-height: 400px;
    height: 400px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
}

#boundaryDemoMap {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px;
    border-radius: 0;
    z-index: 1;
}

/* Ensure Leaflet map container is visible */
#boundaryDemoMap.leaflet-container {
    height: 400px !important;
    width: 100% !important;
}

.map-legend-demo {
    pointer-events: none;
}

.map-legend-demo div {
    pointer-events: auto;
}

.map-controls-hint {
    margin-top: 10px;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.boundary-sample-footer {
    background: #f7fafc;
    padding: 15px 25px;
    border-top: 1px solid #e9ecef;
}

.sample-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d3748;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-item i {
    color: #1a1a1a;
    font-size: 1.1rem;
}

/* Find Companies Section */
.find-companies-section {
    background: #ffffff;
    position: relative;
}

.service-company-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-company-card:hover::before {
    transform: scaleX(1);
}

.service-company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
    border-color: rgba(26, 26, 26, 0.3);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.service-company-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.4);
}

.service-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2d3748;
    line-height: 1.3;
}

.service-description {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-company-card .btn-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: none;
    color: white;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-company-card .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.browse-companies-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.2);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.browse-companies-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.02) 2px, rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-title i {
    font-size: 2rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.browse-companies-cta .btn-primary-modern {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.browse-companies-cta .btn-primary-modern:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
}

/* Responsive Styles for Property Management Page */
@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .dashboard-mockup {
        margin-top: 40px;
    }
    
    .security-badge-large {
        padding: 60px 40px;
        margin-bottom: 40px;
    }
    
    .security-badge-large i {
        font-size: 72px;
    }
}

@media (max-width: 768px) {
    .hero-section-modern.bg-gradient-primary {
        padding: 60px 0;
    }
    
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .feature-card-modern {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .step-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .transfer-process-card {
        padding: 30px 20px;
    }
    
    .security-badge-large {
        padding: 40px 30px;
    }
    
    .security-badge-large i {
        font-size: 56px;
    }
    
    .security-badge-large h3 {
        font-size: 1.5rem;
    }
    
    .cta-section-modern .text-dark-custom {
        font-size: 1.75rem;
    }
    
    .mock-stats {
        flex-direction: column;
    }
    
    .service-company-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .browse-companies-cta {
        padding: 40px 30px;
    }
    
    .cta-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .announcement-step-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .announcement-cta {
        padding: 40px 30px;
    }
    
    .cta-title-small {
        font-size: 1.5rem;
    }
    
    .cta-text-small {
        font-size: 0.95rem;
    }
    
    .map-boundaries-section {
        padding: 60px 0;
    }
    
    .boundary-sample-container {
        margin-top: 30px;
    }
    
    .mapping-feature-item {
        padding: 15px;
    }
    
    .sample-stats {
        gap: 15px;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */

.contact-page-wrapper {
    min-height: calc(100vh - 200px);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.contact-card-modern {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.contact-info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffffff;
    min-width: 30px;
}

.contact-info-item-content h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1rem;
}

.contact-info-item-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-info-item-content a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info-item-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-page-wrapper .form-section {
    padding: 3rem;
}

.contact-page-wrapper .form-floating label {
    color: #6c757d;
    font-weight: 500;
}

.contact-page-wrapper .form-control:focus,
.contact-page-wrapper .form-select:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25);
}

.contact-page-wrapper .form-control,
.contact-page-wrapper .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-page-wrapper .form-control:hover:not(:focus),
.contact-page-wrapper .form-select:hover:not(:focus) {
    border-color: #ced4da;
}

.btn-submit-contact {
    background: #000000;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-contact:hover:not(:disabled) {
    background: #212529;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

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

.contact-page-wrapper .info-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

.contact-page-wrapper .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-page-wrapper .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .contact-info-section {
        padding: 2rem;
    }
    .contact-page-wrapper .form-section {
        padding: 2rem;
    }
}

