/* ============================================
   MODERN MINIMAL DESIGN - RED & BLUE THEME
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-red: #dc2626;
    --primary-red-dark: #b91c1c;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-gray-dark: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Global Button Override - Red Rectangle Buttons */
a.btn,
button.btn,
.btn,
button:not(.navbar-toggler) {
    border-radius: 0 !important;
}

a.btn.btn-primary-large,
a.btn.btn-secondary-large,
a.btn.btn-cta-large,
.btn-primary,
.btn-danger,
.btn-primary-large,
.btn-secondary-large,
.btn-cta-large,
.nav-cta {
    background: #dc2626 !important;
    background-color: #dc2626 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

a.btn.btn-primary-large:hover,
a.btn.btn-secondary-large:hover,
a.btn.btn-cta-large:hover,
.btn-primary:hover,
.btn-danger:hover,
.btn-primary-large:hover,
.btn-secondary-large:hover,
.btn-cta-large:hover,
.nav-cta:hover {
    background: #b91c1c !important;
    background-color: #b91c1c !important;
    color: #fff !important;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-red);
    color: #fff;
    padding: 0.625rem 0;
    font-size: 14px;
    font-weight: 500;
}

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

.top-bar-text {
    color: #fff;
    font-weight: 600;
}

.top-bar-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-link:hover {
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 0.5rem 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .top-bar-social {
        gap: 0.75rem;
    }
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
    max-height: 52px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-modern .navbar-nav .nav-link {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-modern .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.navbar-modern .navbar-nav .nav-link:hover::before,
.navbar-modern .navbar-nav .nav-link.active::before {
    width: 60%;
}

.navbar-modern .navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.nav-cta,
.nav-cta:focus,
.nav-cta:active {
    background: #dc2626 !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 0.625rem 1.5rem !important;
    margin-left: 0.75rem;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.nav-cta::before {
    display: none;
}

.nav-cta:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    padding: 4.8rem 0 6.4rem;
background-image: url('../../assets/img/background-hero.jpg');
background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 0;
}

.hero-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(80px);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-heading {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-primary-large:focus,
.btn-primary-large:active {
    background: #dc2626 !important;
    color: #fff !important;
    padding: 1rem 2rem !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-primary-large:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: #fff !important;
}

.btn-secondary-large,
.btn-secondary-large:focus,
.btn-secondary-large:active {
    background: #dc2626 !important;
    color: #fff !important;
    padding: 1rem 2rem !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    border: 2px solid #dc2626 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.btn-secondary-large:hover {
    background: #b91c1c !important;
    border-color: #b91c1c !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 1rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.hero-search-form {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 16px;
}

.hero-search-form::after {
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

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

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

/* ============================================
   SEARCH SECTION - ADVANCED UI
   ============================================ */

.search-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.search-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 400;
}

.search-form-wrapper {
    background: rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 16px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.search-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.search-controls {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.search-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: var(--primary-red);
    transition: transform 0.3s ease;
    z-index: 0;
}

.search-toggle[data-active="officers"]::before,
.search-toggle[data-active="australia"]::before {
    transform: translateX(100%);
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    min-width: 120px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.toggle-btn.active {
    color: #fff;
}

.toggle-btn:hover:not(.active) {
    color: #fff;
}

.jurisdiction-select {
    background: transparent;
    border: none;
    flex: 1;
    min-width: 200px;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    /* appearance: none; */
    /* background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); */
    /* background-repeat: no-repeat; */
    /* background-position: right 1rem center; */
    /* padding-right: 3rem; */
}

.jurisdiction-select:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.search-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 1.25rem 1.75rem;
    border: 2px solid rgba(192, 192, 192, 0.5);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-input:focus {
    outline: none;
    border-color: rgba(192, 192, 192, 0.8);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.search-btn {
    background: var(--primary-red);
    color: #fff;
    border: 2px solid var(--primary-red);
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 1.25rem 2rem;
    cursor: pointer;
display: flex;
align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 70px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    background: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.search-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(192, 192, 192, 0.3);
}

.btn-search-action {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-search-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-red);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-search-action:hover {
    color: #fff;
    border-color: var(--primary-red);
}

.btn-search-action:hover::before {
    left: 0;
}

.btn-search-action:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .search-section {
        padding: 3rem 0;
    }
    
    .search-container {
        padding: 0 1rem;
    }
    
    .search-title {
        font-size: 2rem;
    }
    
    .search-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .search-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-toggle {
        width: 100%;
    }
    
    .toggle-btn {
        flex: 1;
        min-width: auto;
        padding: 0.75rem 1.5rem;
    }
    
    .jurisdiction-select {
        width: 100%;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        border-right: 2px solid #e9ecef;
        border-bottom: none;
        padding: 1rem 1.5rem;
    }
    
    .search-btn {
        border-left: 2px solid var(--primary-red);
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .search-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-search-action {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
}

/* ============================================
   TRUSTED SECTION
   ============================================ */

.trusted-section {
    padding: 4rem 0;
    background: var(--bg-gray-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trusted-logos:hover {
    opacity: 1;
}

.trusted-logo-img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.trusted-logo-img:hover {
    filter: grayscale(0%);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: 6rem 0;
    background: #fff;
}

.section-header {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.features-main-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-red-dark);
    margin-bottom: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.feature-card {
    background: #f5f5f5;
    padding: 2.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red-dark);
    margin-bottom: 1rem;
    text-transform: none;
}

.feature-text {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.features-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-feature-primary {
    background: var(--primary-red-dark);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-feature-primary:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-feature-secondary {
    background: #666;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-feature-secondary:hover {
    background: #555;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: 6rem 0;
    background-image: url('../../assets/img/bld.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
}

.how-it-works-content {
    max-width: 600px;
}

.steps-list {
    margin-top: 3rem;
}

.step-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: #fff;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.step-card .card-body {
    padding: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    opacity: 0.2;
    min-width: 60px;
}

.step-icon {
    font-size: 2.5rem;
    line-height: 1;
    min-width: 60px;
    text-align: center;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.step-content .card-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.how-it-works-visual {
    position: relative;
}

.how-it-works-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, black 0%, var(--primary-red-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.125rem 2.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.btn-cta-large,
.btn-cta-large:focus,
.btn-cta-large:active {
    background: #dc2626 !important;
    color: #fff !important;
    padding: 1.125rem 2.5rem !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 1.125rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    box-shadow: var(--shadow-xl) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.btn-cta-large:hover {
    background: #b91c1c !important;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.5);
    color: #fff !important;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--text-primary);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-logo {
    max-height: 40px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

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

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.footer-contact {
    color: var(--text-light);
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-links-inline {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links-inline a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-links-inline span {
    color: var(--text-light);
    opacity: 0.5;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link-footer {
    color: var(--text-light);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link-footer:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero-section {
    background: url('../img/company.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    color: #fff;
    text-align: center;
    position: relative;
}
.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 10%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 0;
}

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

.about-hero-title {
    position: relative;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    z-index: 1;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    opacity: 0.95;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.about-content-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-red);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-content a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.25rem;
}

.about-list li strong {
    color: var(--text-primary);
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.pricing-card {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.pricing-card-featured {
    border-color: var(--primary-red);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.pricing-plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

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

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.pricing-features-list li svg {
    flex-shrink: 0;
    color: var(--primary-red);
    margin-top: 0.125rem;
}

.pricing-footer {
    margin-top: auto;
    text-align: center;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-pricing:hover {
    background: var(--primary-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-pricing-featured {
    background: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.btn-pricing-featured:hover {
    background: var(--primary-red-dark);
    box-shadow: var(--shadow-xl);
}

.pricing-faq-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card-featured {
        border-width: 2px;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-contact-submit:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--bg-gray);
}

.contact-info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    color: var(--primary-red);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.contact-info-text a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
}

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

.modal-custom {
    border-radius: 16px;
    border: none;
    box-shadow: var(--shadow-xl);
}

.modal-custom-header {
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px 16px 0 0;
}

.modal-custom-header .modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.modal-custom-header .btn-close {
    background: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.modal-custom-header .btn-close:hover {
    opacity: 1;
}

.modal-custom .modal-body {
    padding: 2rem;
}

.modal-input {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.modal-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    outline: none;
}

.modal-input::placeholder {
    color: var(--text-light);
}

.modal .form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.modal .form-check-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.modal .form-check-input {
    border: 2px solid var(--border-color);
    border-radius: 4px;
}

.modal .form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.modal .form-check-input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-modal-submit {
    background: var(--primary-red);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-modal-submit:hover {
    background: var(--primary-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.modal-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: var(--primary-red-dark);
    text-decoration: underline;
}

.modal-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
}

.modal-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.modal-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.modal-divider span {
    position: relative;
    background: var(--bg-white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
    opacity: 0.5;
}

@media (max-width: 576px) {
    .modal-custom .modal-body {
        padding: 1.5rem;
    }
    
    .modal-custom-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-custom-header .modal-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 0;
    }
    
    .about-content-section {
        padding: 3rem 0;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
    }
    
    .about-content p,
    .about-list li {
        font-size: 1rem;
    }
}

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

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-description {
        max-width: 100%;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-main-title {
        font-size: 2rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3.2rem 0 4.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        justify-content: space-around;
        width: 100%;
    }

    .features-section,
    .how-it-works-section,
    .cta-section {
        padding: 4rem 0;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-main-title {
        font-size: 1.75rem;
    }
    
    .features-actions {
        flex-direction: column;
    }
    
    .btn-feature-primary,
    .btn-feature-secondary {
        width: 100%;
        text-align: center;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-us-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-us-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Why Card */
.why-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #ef4444;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    transform: rotate(5deg) scale(1.05);
}

.why-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(89%) saturate(2493%) hue-rotate(343deg) brightness(93%) contrast(91%);
    transition: filter 0.3s ease;
}

.why-card:hover .why-icon img {
    filter: brightness(0) invert(1);
}

.why-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.why-description {
    font-size: 0.9375rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Why Actions */
.why-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-why-primary,
.btn-why-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-why-primary {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.3);
}

.btn-why-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
    color: white;
}

.btn-why-secondary {
    background: white;
    color: #ef4444;
    border-color: #ef4444;
}

.btn-why-secondary:hover {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
}

/* Responsive Design for Why Choose Us */
@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    
    .why-choose-us-section {
        padding: 4rem 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-icon img {
        width: 38px;
        height: 38px;
    }
    
    .why-title {
        font-size: 1.125rem;
    }
    
    .why-description {
        font-size: 0.875rem;
    }
    
    .why-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-why-primary,
    .btn-why-secondary {
        width: 100%;
        justify-content: center;
    }
}