@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #414a64;
    line-height: 1.6;
    background-color: #ffffff;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 70px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    margin: 0 auto;
    padding: 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    padding: 20px 16px;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    height: 70px;
    line-height: 30px;
    white-space: nowrap;
}

.nav-link:hover {
    color: #007bff;
}

.nav-link.active {
    color: #007bff;
    font-weight: 600;
}

/* Dropdown Styles - Professional Implementation */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    color: #2c3e50;
    text-decoration: none;
    padding: 22px 18px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 70px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.02em;
    border-radius: 8px;
    margin: 0 2px;
}

.dropdown-toggle::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.dropdown:hover .dropdown-toggle {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
    opacity: 1;
    color: #007bff;
}

/* Main Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 950px;
    max-width: 1100px;
    padding: 28px 32px 32px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    z-index: 1000;
    border: 1px solid rgba(0, 123, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Menu Arrow */
.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1001;
    filter: drop-shadow(0 -2px 4px rgba(0,0,0,0.04));
}

.dropdown:hover::before {
    opacity: 1;
}

/* Sub Dropdown Categories */
.sub-dropdown {
    padding: 0;
    margin: 0;
}

.sub-dropdown > .dropdown-item {
    font-weight: 700;
    color: #1a202c;
    font-size: 16px;
    padding: 0 0 16px 0;
    margin-bottom: 16px;
    border-bottom: 3px solid #e2e8f0;
    text-decoration: none;
    display: block;
    cursor: default;
    letter-spacing: -0.02em;
    position: relative;
    transition: all 0.3s ease;
}

.sub-dropdown > .dropdown-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-dropdown:hover > .dropdown-item::after {
    width: 50px;
}

.sub-dropdown:hover > .dropdown-item {
    color: #007bff;
}

/* Sub Dropdown Menu Items */
.sub-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sub-dropdown-menu .dropdown-item {
    color: #4a5568;
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.4;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.sub-dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.08), rgba(0, 123, 255, 0.04));
    transition: width 0.3s ease;
    z-index: -1;
}

.sub-dropdown-menu .dropdown-item:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.06);
    transform: translateX(6px);
    font-weight: 600;
    text-decoration: none;
    border-left: 3px solid #007bff;
    padding-left: 13px;
}

.sub-dropdown-menu .dropdown-item:hover::before {
    width: 100%;
}

.sub-dropdown-menu .dropdown-item:hover::after {
    content: '→';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #007bff;
    font-weight: 700;
    font-size: 14px;
    opacity: 0.8;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary, .btn-primary {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
}

.btn-primary {
    background: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger .bar {
    width: 22px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        height: calc(100vh - 70px);
        overflow-y: auto;
        align-items: stretch;
        margin: 0;
        padding: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 18px 24px;
        height: auto;
        line-height: 1.5;
        border-bottom: 1px solid #f0f2f5;
        font-weight: 500;
        color: #2c3e50;
    }

    .nav-link:hover {
        background: #f8f9fa;
        color: #007bff;
    }

    .dropdown-toggle {
        padding: 18px 24px;
        height: auto;
        line-height: 1.5;
        border-bottom: 1px solid #f0f2f5;
        background: transparent;
        margin: 0;
        border-radius: 0;
        justify-content: space-between;
    }

    .dropdown-toggle:hover {
        background: #f8f9fa;
        color: #007bff;
    }

    .dropdown::before {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        min-width: auto;
        max-width: none;
        margin: 0;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px 24px;
        display: none;
        border-radius: 0;
        border: none;
        border-top: 2px solid #e2e8f0;
        border-bottom: 2px solid #e2e8f0;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: mobileSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes mobileSlideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .sub-dropdown {
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e8f0;
    }

    .sub-dropdown:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .sub-dropdown > .dropdown-item {
        font-size: 15px;
        font-weight: 700;
        color: #007bff;
        margin-bottom: 12px;
        border-bottom: none;
        padding: 8px 0;
    }

    .sub-dropdown > .dropdown-item::after {
        display: none;
    }

    .sub-dropdown:hover > .dropdown-item {
        color: #0056b3;
    }

    .sub-dropdown-menu {
        gap: 4px;
    }

    .sub-dropdown-menu .dropdown-item {
        font-size: 13px;
        padding: 12px 20px 12px 16px;
        border-radius: 8px;
        margin: 4px 0;
        background: rgba(255,255,255,0.8);
        border: 1px solid rgba(226, 232, 240, 0.6);
        border-left: 3px solid transparent;
        transform: none;
        color: #4a5568;
    }

    .sub-dropdown-menu .dropdown-item:hover {
        background: #ffffff;
        color: #007bff;
        border-color: rgba(0,123,255,0.2);
        border-left-color: #007bff;
        transform: none;
        padding-left: 16px;
        box-shadow: 0 2px 8px rgba(0,123,255,0.1);
    }

    .sub-dropdown-menu .dropdown-item:hover::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        gap: 8px;
    }

    .btn-secondary, .btn-primary {
        padding: 8px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* Navigation Styles */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    display: block;
    padding: 25px 18px;
    color: #414a64;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 2px;
    position: relative;
}

.nav ul li a:hover,
.nav ul li.dropdown:hover > a {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.nav a.active {
    color: #ffd700;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
}

.nav a.active:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown:hover {
    transition-delay: 0.1s;
}

.nav ul li.dropdown > a:after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #94a3b8;
}

.nav ul li.dropdown:hover > a:after {
    transform: rotate(180deg);
    color: #2563eb;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    border: 1px solid #e2e8f0;
    overflow: visible;
    margin-top: 5px;
    list-style: none;
    padding: 8px 0;
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Keep dropdown visible when hovering over the menu itself */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    width: 100%;
}

.dropdown-menu li a {
    display: block !important;
    padding: 14px 20px !important;
    color: #475569 !important;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    white-space: nowrap;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    color: #2563eb !important;
    padding-left: 24px !important;
}

.dropdown-menu li.dropdown > a:after {
    content: "▶";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    transition: all 0.2s ease;
}

.dropdown-menu li.dropdown:hover > a:after {
    color: #2563eb;
    right: 12px;
}

/* Submenu Styles */
.dropdown-submenu {
    position: absolute;
    top: -8px;
    left: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    overflow: visible;
    margin-left: 8px;
    z-index: 10000;
    list-style: none;
    padding: 8px 0;
}

.dropdown-menu li.dropdown:hover > .dropdown-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Keep submenu visible when hovering over it */
.dropdown-submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu li a {
    padding: 12px 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #475569 !important;
}

.dropdown-submenu li a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
    color: white !important;
    padding-left: 22px !important;
}

/* Mobile dropdown improvements */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8fafc;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu {
        max-height: 200px;
    }
    
    .dropdown-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f1f5f9;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu li.dropdown:hover > .dropdown-submenu {
        max-height: 100px;
    }
    
    .nav ul li.dropdown > a:after,
    .dropdown-menu li.dropdown > a:after {
        display: none;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(37, 99, 235, 0.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #414a64;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
        overflow: hidden;
    }
    
    .nav ul {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }
    
    .nav ul.active {
        max-height: 500px;
    }
    
    .nav ul li a {
        padding: 16px 20px;
        border-bottom: 1px solid #f1f5f9;
        margin: 0;
        border-radius: 0;
    }
    
    .nav ul li:last-child a {
        border-bottom: none;
    }
}

.auth-buttons .consultation-btn {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.auth-buttons .consultation-btn:hover {
    background: #1d4ed8;
}

/* Hero Section */
.hero {
    background: #112152 !important;
    color: white;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: stretch;
    gap: 40px;
    min-height: 70vh;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #414a64;
}

.hero-title-gold {
    color: #ffd700;
}

.hero-title-white {
    color: #ffffff;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 500;
    max-width: 600px;
}

/* Modern Consultation Form Styles */
.consultation-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 20px 10px;
    width: 100%;
    max-width: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible;
    z-index: 10;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: fit-content;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #112152 0%, #ffc107 50%, #112152 100%);
    border-radius: 24px 24px 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: 15px;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #112152 0%, #1a2a6b 50%, #112152 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-form {
    display: block;
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #112152;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    color: #1f2937;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus),
.form-select:hover:not(:focus),
.form-textarea:hover:not(:focus) {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23112152' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

.form-select option {
    padding: 12px;
    background: #ffffff;
    color: #1f2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.phone-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.country-code {
    flex: 0 0 220px;
}

.phone-number {
    flex: 1;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #112152 0%, #1a2a6b 50%, #112152 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(17, 33, 82, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 33, 82, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #112152 0%, #ffc107 50%, #112152 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-title {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #112152 0%, #1a2a6b 50%, #112152 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-subtitle {
    color: #64748b;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #112152;
    margin-bottom: 10px;
    font-size: 0.98rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -0.01em;
}

.form-input {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    outline: none;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-input:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-select {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23112152' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 55px;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-select:hover:not(:focus) {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.form-select option {
    padding: 12px;
    background: #ffffff;
    color: #1f2937;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.phone-container {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.country-code {
    flex: 0 0 180px;
}

.phone-number {
    flex: 1;
}

.form-textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    outline: none;
    resize: vertical;
    min-height: 130px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-sizing: border-box;
    color: #1f2937;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.form-textarea:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-textarea:hover:not(:focus) {
    border-color: #cbd5e1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}

.submit-btn {
    width: 100%;
    padding: 20px 28px;
    background: linear-gradient(135deg, #112152 0%, #1a2a6b 50%, #112152 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(17, 33, 82, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 33, 82, 0.3);
    background: linear-gradient(135deg, #1a2a6b 0%, #112152 50%, #1a2a6b 100%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(17, 33, 82, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

/* Enhanced focus states with smooth transitions */
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-width: 2px;
}

/* Loading state for submit button */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        min-height: auto;
    }
    
    .hero-left {
        text-align: center;
        padding-right: 0;
    }
    
    .hero-right {
        padding-left: 0;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .consultation-form {
        padding: 15px 8px;
        margin: 0;
        border-radius: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 18px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .phone-container {
        flex-direction: column;
        gap: 16px;
    }

    .country-code {
        flex: 1;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .submit-btn {
        padding: 16px 24px;
        font-size: 1rem;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .consultation-form {
        padding: 24px 20px;
        margin: 0 10px;
    }

    .form-header {
        margin-bottom: 24px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-grid {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .country-code {
        min-width: 100%;
    }
}

/* Companies Section */
.fraud-types {
    border-color: transparent transparent #94a3b8 transparent;
    transform: translateY(-50%) rotate(180deg);
}

.select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.select-items.show {
    display: block !important;
}

.select-items div {
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.select-items div:last-child {
    border-bottom: none;
}

.select-items div:hover {
    background-color: #f8fafc;
    color: #2563eb;
    font-weight: 600;
}

.phone-input-container input[type="tel"] {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.phone-input-container:focus-within {
    border-color: #2563eb;
}

/* CTA Button */
.cta-button {
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: #1d4ed8;
}

.cta-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.media-mentions {
    margin-top: 50px;
    color: #414a64;
}

.media-mentions p {
    margin-bottom: 20px;
    font-size: 14px;
}

.media-mentions-title {
    margin-bottom: 20px;
    font-size: 14px;
    color: white !important;
    font-weight: 500;
}

.media-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.media-logo {
    padding: 8px 16px;
    background: #f7fafc;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    color: #414a64;
    border: 1px solid #e2e8f0;
}

.media-logo-image {
    padding: 8px 16px;
    background: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}

.logo-img {
    max-height: 24px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.media-logo-image:hover .logo-img {
    opacity: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 20px;
}

.fraud-types-title {
    font-size: 28px !important;
}

.section-header p {
    font-size: 20px;
    color: #414a64;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Fraud Types Section */
.fraud-types {
    background: white;
    padding: 80px 0;
}

.fraud-carousel {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.company-item {
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    max-height: 60px;
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.company-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo {
    max-height: 20px;
    max-width: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-item:hover .company-logo {
    opacity: 1;
}

.company-logo-styled {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo-text.small {
    font-size: 10px;
}

/* Binance - Yellow and Black */
.binance-logo .logo-text {
    color: #F3BA2F;
    background: linear-gradient(135deg, #F3BA2F, #E6A91F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Coinbase - Blue */
.coinbase-logo .logo-text {
    color: #0052FF;
    font-weight: 800;
}

/* Kraken - Purple */
.kraken-logo .logo-text {
    color: #5741D9;
    font-weight: 800;
}

/* Uniswap - Pink with unicorn */
.uniswap-logo {
    gap: 1px;
}

.uniswap-icon {
    font-size: 12px;
    margin-bottom: 1px;
}

.uniswap-logo .logo-text {
    color: #FF007A;
    font-weight: 700;
}

/* Ethereum - Blue/Gray with diamond */
.ethereum-logo {
    gap: 1px;
}

.eth-diamond {
    font-size: 12px;
    color: #627EEA;
    font-weight: bold;
    margin-bottom: 1px;
}

.ethereum-logo .logo-text {
    color: #627EEA;
    font-weight: 600;
}

.company-item:hover .logo-text {
    opacity: 1;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    color: #414a64;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #2563eb;
}

/* Info Section */
.info-section {
    background: #f8fafc;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-content {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 25px;
}

.info-content p {
    font-size: 18px;
    color: #414a64;
    line-height: 1.7;
    margin: 0;
}

/* Services Section */
.services {
    background: white;
    padding: 100px 0;
}

.certification-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: #edf2f7;
    border-radius: 8px;
}

.cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cdfe-logo-img {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.certification-badge:hover .cdfe-logo-img {
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #112152;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.service-card.featured {
    border-color: #112152;
    position: relative;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #eab308, #f59e0b);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eab308;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
}

.service-header {
    padding: 25px 20px;
    text-align: center;
    background: #f8fafc;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1.1;
}

.service-card:first-child .service-price {
    color: #030e31;
}

.service-card.featured .service-price {
    color: #667eea;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    line-height: 1.1;
}

.service-card:first-child .price {
    color: #030e31;
}

.service-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content > p {
    font-weight: 600;
    color: #414a64;
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 14px;
}

.service-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #414a64;
    margin-bottom: 10px;
}

.feature-content p {
    color: #414a64;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    flex: 1;
}

.service-list li {
    color: #414a64;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.service-list li:last-child {
    border-bottom: none;
}

.order-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-btn:hover {
    background: #1d4ed8;
}

/* Free Consultation Section */
.free-consultation {
    background: #f8fafc;
    padding: 100px 0;
    text-align: center;
}

.consultation-content {
    background: #112152;
    color: white;
    width: 80%;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 33, 82, 0.15);
}

.consultation-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.consultation-content p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.consultation-btn {
    background: #eab308;
    color: #414a64;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.consultation-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Consultation Form Styles */
.consultation-form {
    margin: 40px 0;
    text-align: left;
}

.request-consultation-form {
    max-width: 800px;
    margin: 0 auto;
}

.request-consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.request-consultation-form .form-group {
    display: flex;
    flex-direction: column;
}

.request-consultation-form .form-group.full-width {
    grid-column: span 2;
}

.request-consultation-form label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.request-consultation-form input,
.request-consultation-form select,
.request-consultation-form textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    color: #1a202c;
    transition: all 0.3s ease;
}

.request-consultation-form input:focus,
.request-consultation-form select:focus,
.request-consultation-form textarea:focus {
    outline: none;
    border-color: #eab308;
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.1);
}

.request-consultation-form .phone-input {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.request-consultation-form .country-select {
    min-width: 120px;
    background-color: #ffffff;
}

.request-consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.request-consultation-form .checkbox-group {
    margin: 30px 0 40px 0;
}

.request-consultation-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
}

.request-consultation-form .checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    min-width: 18px;
    height: 18px;
}

.request-consultation-form .checkbox-label a {
    color: #eab308;
    text-decoration: underline;
}

.request-consultation-form .checkbox-label a:hover {
    color: #f59e0b;
}

.request-consultation-form .consultation-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Consultation Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #1a202c;
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    color: #6b7280;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: #374151;
}

.modal-body {
    padding: 20px 30px 30px 30px;
}

.modal-subtitle {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-form-group {
    display: flex;
    flex-direction: column;
}

.modal-form-group.modal-full-width {
    grid-column: span 2;
}

.modal-form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    color: #1a202c;
    transition: all 0.3s ease;
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: #112152;
    box-shadow: 0 0 0 3px rgba(17, 33, 82, 0.1);
}

.modal-phone-input {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.modal-country-select {
    min-width: 120px;
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-checkbox-group {
    margin: 20px 0 10px 0;
}

.modal-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.modal-checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    min-width: 18px;
    height: 18px;
}

.modal-checkbox-label a {
    color: #112152;
    text-decoration: underline;
}

.modal-checkbox-label a:hover {
    color: #041238;
}

.modal-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.modal-btn-cancel {
    background: transparent;
    color: #6b7280;
    border: 2px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-cancel:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.modal-btn-submit {
    background: #eab308;
    color: #1a202c;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-btn-submit:hover {
    background: #f59e0b;
    transform: translateY(-1px);
}

.modal-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Modal Success State */
.modal-success {
    text-align: center;
    padding: 40px 20px;
}

.modal-success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

.modal-success h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.modal-success p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #6b7280;
}

.modal-btn-close {
    background: #112152;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-close:hover {
    background: #041238;
    transform: translateY(-1px);
}

.disclaimer {
    font-size: 14px;
    color: #6b7280;
    max-width: 600px;
    margin: 40px auto 0 auto;
    line-height: 1.5;
    text-align: center;
}

.disclaimer a {
    color: #2563eb;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

/* Consultation Page Styles */
.consultation-hero {
    background: linear-gradient(135deg, #112152 0%, #041238 100%);
    padding: 120px 0 100px 0;
    color: white;
}

.consultation-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.consultation-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.consultation-hero-text .hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e2e8f0;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.benefit-item i {
    color: #eab308;
    font-size: 20px;
}

.consultation-form-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.consultation-form-wrapper {
    padding: 40px;
}

.consultation-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
}

.consultation-form {
    display: grid;
    gap: 20px;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form .form-group {
    display: flex;
    flex-direction: column;
}

.consultation-form .form-group.full-width {
    grid-column: span 2;
}

.consultation-form label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    color: #1a202c;
    transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #112152;
    box-shadow: 0 0 0 3px rgba(17, 33, 82, 0.1);
}

.consultation-form .phone-input {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
}

.consultation-form .country-select {
    min-width: 120px;
}

.consultation-form textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-form .checkbox-group {
    margin: 10px 0;
}

.consultation-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.consultation-form .checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    min-width: 18px;
    height: 18px;
}

.consultation-form .checkbox-label a {
    color: #112152;
    text-decoration: underline;
}

.consultation-form .checkbox-label a:hover {
    color: #041238;
}

.consultation-btn-submit {
    background: #eab308;
    color: #1a202c;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.consultation-btn-submit:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.consultation-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
    color: #1a202c;
}

.success-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-success p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #6b7280;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-actions .btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.success-actions .btn-primary {
    background: #112152;
    color: white;
}

.success-actions .btn-primary:hover {
    background: #041238;
}

.success-actions .btn-secondary {
    background: transparent;
    color: #112152;
    border: 2px solid #112152;
}

.success-actions .btn-secondary:hover {
    background: #112152;
    color: white;
}

/* What to Expect Section */
.what-to-expect {
    background: #f8fafc;
    padding: 100px 0;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.expectation-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expectation-item:hover {
    transform: translateY(-5px);
}

.expectation-icon {
    width: 80px;
    height: 80px;
    background: #112152;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.expectation-icon i {
    font-size: 32px;
    color: #eab308;
}

.expectation-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a202c;
}

.expectation-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Consultation Section */
.why-choose-consultation {
    background: white;
    padding: 100px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a202c;
}

.why-choose-list {
    display: grid;
    gap: 30px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-choose-item i {
    font-size: 32px;
    color: #112152;
    margin-top: 5px;
    min-width: 32px;
}

.why-choose-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
}

.why-choose-item p {
    color: #6b7280;
    line-height: 1.6;
}

.why-choose-stats {
    background: #112152;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #eab308;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works {
    background: white;
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 2px solid #112152;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(17, 33, 82, 0.1);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(17, 33, 82, 0.15);
}

.step-number {
    display: none;
}

.step h4 {
    font-size: 24px;
    font-weight: 600;
    color: #414a64;
    margin-bottom: 20px;
}

.step p {
    color: #414a64;
    line-height: 1.6;
    font-size: 16px;
}

/* Money Retrieved Section */
.money-retrieved {
    background: #112152 !important;
    color: white;
    padding: 100px 0;
}

.stats-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.stats-text {
    flex: 1;
    text-align: left;
}

.stats-amount {
    flex-shrink: 0;
    text-align: right;
}

.stats-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.amount {
    font-size: 72px;
    font-weight: 800;
    color: #eab308;
    margin: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stats-description {
    font-size: 18px;
    margin: 20px 0 40px 0;
    line-height: 1.7;
    color: #cbd5e0;
}

.consultation-link {
    display: inline-block;
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.consultation-link:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Why Us Section */
.why-us {
    background: #f8fafc;
    padding: 80px 0;
}

.why-us-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-us-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.why-us-content {
    flex: 1;
    text-align: left;
}

.why-us-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.why-us-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.about-link:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Guarantee Section */
.guarantee {
    background: white;
    padding: 80px 0;
}

.guarantee-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-content {
    flex: 1;
    text-align: left;
}

.guarantee-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.guarantee-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.guarantee-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 30px;
}

.terms-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Warning Section */
.warning {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.warning-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.warning-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warning-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.warning-content {
    flex: 1;
    text-align: left;
}

.warning-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #041238;
    margin-bottom: 30px;
}

.warning-content p {
    font-size: 18px;
    color: #041238;
    line-height: 1.7;
    margin-bottom: 30px;
}

.warning-content ul {
    text-align: left;
    margin: 0 0 30px 0;
    padding-left: 20px;
}

.warning-content li {
    font-size: 16px;
    color: #041238;
    margin-bottom: 10px;
    font-weight: 500;
}

.blacklist-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.blacklist-link:hover {
    text-decoration: underline;
}

/* Blacklist Check Section */
.blacklist-check {
    background: white;
    padding: 80px 0;
}

.blacklist-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.blacklist-content {
    flex: 1;
    text-align: left;
}

.blacklist-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blacklist-image {
    width: 250px;
    height: 250px;
    max-width: 100%;
    height: auto;
}

.blacklist-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 30px;
}

.blacklist-content p {
    font-size: 20px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* CTA Section */
.cta-section {
    background: #112152;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #112152;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #112152;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.cta-form select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
}

.cta-form button {
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Video Reviews Section */
.video-reviews {
    background: #f8fafc;
    padding: 100px 0;
}

.video-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.video-item {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    font-size: 48px;
    margin-bottom: 20px;
}

.video-item p {
    font-size: 16px;
    color: #414a64;
    font-weight: 500;
}

.see-more-link {
    display: inline-block;
    margin-top: 50px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.see-more-link:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Fraud Types Detailed Section */
.fraud-types-detailed {
    background: white;
    padding: 100px 0;
}

.fraud-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fraud-type-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px 25px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: #414a64;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.fraud-icon {
    width: 32px;
    height: 32px;
    color: #112152;
    transition: all 0.3s ease;
}

.fraud-type-link:hover {
    border-color: #112152;
    color: #112152;
    background: #f0f4ff;
    transform: translateY(-3px);
}

.fraud-type-link:hover .fraud-icon {
    color: #ffd700;
    transform: scale(1.1);
}

/* About Detailed Section */
.about-detailed {
    background: #f8fafc;
    padding: 100px 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-item {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #414a64;
    margin-bottom: 25px;
}

.about-item p {
    font-size: 18px;
    color: #414a64;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-item p:last-child {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: #112152 !important;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.final-cta-form select {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
}

.final-cta-form button {
    background: #eab308;
    color: #414a64;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.final-cta-form button:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Latest Articles Section */
.latest-articles {
    background: #f8fafc;
    padding: 100px 0;
}

.latest-articles .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.latest-articles .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 20px;
}

.latest-articles .section-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.article-date {
    font-size: 14px;
    color: #94a3b8;
}

.read-more {
    color: #112152;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ffd700;
}

/* Contact Form Section */
.contact-form {
    background: white !important;
    padding: 100px 0;
    color: #030e31;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #030e31;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #64748b;
    line-height: 1.6;
}

.contact-form-main {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-main select,
.contact-form-main input {
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-main select:focus,
.contact-form-main input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form-main textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    color: #414a64;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    resize: vertical;
    font-family: inherit;
}

.contact-form-main textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact-form-main .consultation-btn {
    background: #eab308;
    color: #414a64;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form-main .consultation-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Company Statement Section */
.company-statement {
    background: #f8fafc;
    padding: 80px 0;
}

.statement-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.statement-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 30px;
}

.statement-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: #030e31;
    color: white;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-column p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    border-top: 1px solid #1e293b;
}

.footer-social h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 15px;
    padding: 10px 20px;
    border: 1px solid #334155;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #030e31;
    background: #ffd700;
    border-color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.footer-partners {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

.footer-partners p {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    color: #94a3b8;
    font-size: 14px;
    padding: 5px 0;
}

.footer-disclaimer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    text-align: left;
}

.footer-disclaimer p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-disclaimer a {
    color: #ffd700;
    text-decoration: none;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

/* Why Work With Us Sections */
.why-work, .why-work-part2 {
    padding: 80px 0;
    background: #ffffff;
}

.why-work-part2 {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 60px 0 80px 0;
}

.why-work .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-work .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.why-work .section-header p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.why-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-work-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.why-work-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.why-work-item:hover::before {
    transform: scaleX(1);
}

.why-work-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.why-work-part2 .why-work-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.why-work-part2 .why-work-item::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.why-work-part2 .why-work-item:hover {
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.2);
}

.why-work-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f0f7ff, #e6f3ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-work-part2 .why-work-icon {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.why-work-item:hover .why-work-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.why-work-part2 .why-work-item:hover .why-work-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.why-work-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
    transition: filter 0.3s ease;
}

.why-work-item:hover .why-work-icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(109deg) brightness(105%) contrast(105%);
}

.why-work-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.why-work-item p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .why-work, .why-work-part2 {
        padding: 60px 0;
    }
    
    .why-work-part2 {
        padding: 40px 0 60px 0;
    }

    .why-work .section-header h2 {
        font-size: 2rem;
    }

    .why-work-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-work-item {
        padding: 28px 20px;
    }
    
    .why-work-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .why-work-icon img {
        width: 35px;
        height: 35px;
    }

    .why-work-item h3 {
        font-size: 1.25rem;
    }
}

/* Testimonials Page Specific Styles */
.testimonials-hero {
    background: linear-gradient(135deg, #112152, #030e31);
    padding: 120px 0 80px 0;
    color: white;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonials-hero .hero-subtitle {
    font-size: 20px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
}

.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #64748b;
}

.testimonials-main {
    background: #f8fafc;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
    border: 2px solid #ffd700;
    transform: scale(1.02);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
    min-width: 150px;
}

.client-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.case-type {
    background: #112152;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.recovery-amount {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-content p {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
}

.case-duration {
    font-weight: 600;
}

.recovery-rate {
    color: #10b981;
    font-weight: 700;
}

.process-section {
    background: white;
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #112152;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #112152;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #112152;
    margin-bottom: 15px;
}

.process-step p {
    color: #64748b;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: #112152;
    color: white;
    border: 2px solid #112152;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: transparent;
    color: #112152;
    border-color: #112152;
}

.btn-secondary {
    background: #112152;
    color: white;
    border: 2px solid #112152;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: transparent;
    color: #112152;
    border-color: #112152;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        flex-direction: column;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .nav ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav ul li:last-child a {
        border-bottom: none;
    }
    
    .auth-buttons {
        width: 100%;
        text-align: center;
    }
    
    .auth-buttons .consultation-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .hero-right {
        flex: 1;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .consultation-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Section responsive styles */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 18px;
    }
    
    .fraud-carousel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 18px;
    }
    
    .contact-content h2 {
        font-size: 32px;
    }
    
    .contact-content p {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-main {
        padding: 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .social-icons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    /* Testimonials Page Mobile Styles */
    .testimonials-hero h1 {
        font-size: 36px;
    }
    
    .testimonials-hero .hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card.featured {
        transform: none;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .client-info {
        text-align: center;
        margin: 15px 0;
    }
    
    .recovery-amount {
        align-self: center;
    }
    
    .testimonial-footer {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary, .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fraud-types-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    
    .amount {
        font-size: 48px;
    }
    
    .stats-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-text {
        text-align: center;
    }
    
    .stats-amount {
        text-align: center;
        margin-top: 20px;
    }
    
    .why-us-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .why-us-content {
        text-align: center;
    }
    
    .why-us-image {
        width: 180px;
        height: 180px;
    }
    
    .guarantee-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .guarantee-content {
        text-align: center;
    }
    
    .guarantee-image {
        width: 180px;
        height: 180px;
    }
    
    .warning-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .warning-content {
        text-align: center;
    }
    
    .warning-content ul {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px auto;
    }
    
    .warning-image {
        width: 180px;
        height: 180px;
    }
    
    .blacklist-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .blacklist-content {
        text-align: center;
    }
    
    .blacklist-image {
        width: 180px;
        height: 180px;
    }
    
    .cta-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-form select,
    .cta-form button {
        width: 100%;
    }
    
    .about-item {
        padding: 30px 25px;
    }
    
    .info-content {
        max-width: 90%;
        padding: 40px 30px;
    }
    
    .info-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .info-content p {
        font-size: 16px;
    }

    .final-cta-content h2 {
        font-size: 36px;
    }
    
    /* Free Consultation Form Mobile Styles */
    .consultation-content {
        width: 95%;
        padding: 40px 20px;
    }
    
    .consultation-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .consultation-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .request-consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .request-consultation-form .phone-input {
        grid-template-columns: 110px 1fr;
        gap: 8px;
    }
    
    .request-consultation-form .country-select {
        min-width: 110px;
        font-size: 14px;
    }
    
    .request-consultation-form input,
    .request-consultation-form select,
    .request-consultation-form textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .request-consultation-form .consultation-btn {
        width: 100%;
        max-width: none;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Consultation Page Mobile Styles */
    .consultation-hero {
        padding: 100px 0 60px 0;
    }
    
    .consultation-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .consultation-hero-text .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .consultation-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation-form-wrapper {
        padding: 30px 20px;
    }
    
    .consultation-form-wrapper h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .consultation-form .phone-input {
        grid-template-columns: 110px 1fr;
        gap: 8px;
    }
    
    .consultation-form .country-select {
        min-width: 110px;
        font-size: 14px;
    }
    
    .consultation-form input,
    .consultation-form select,
    .consultation-form textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .consultation-btn-submit {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .what-to-expect {
        padding: 60px 0;
    }
    
    .expectation-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .expectation-item {
        padding: 30px 20px;
    }
    
    .expectation-icon {
        width: 60px;
        height: 60px;
    }
    
    .expectation-icon i {
        font-size: 24px;
    }
    
    .why-choose-consultation {
        padding: 60px 0;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-text h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .why-choose-item {
        gap: 15px;
    }
    
    .why-choose-item i {
        font-size: 24px;
    }
    
    .why-choose-stats {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    /* Modal Mobile Styles */
    .modal-content {
        margin: 2% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 15px 20px 20px 20px;
    }
    
    .modal-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .modal-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .modal-phone-input {
        grid-template-columns: 110px 1fr;
        gap: 8px;
    }
    
    .modal-country-select {
        min-width: 110px;
        font-size: 14px;
    }
    
    .modal-form-group input,
    .modal-form-group select,
    .modal-form-group textarea {
        padding: 10px 14px;
        font-size: 16px;
    }
    
    .modal-form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .modal-btn-cancel,
    .modal-btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .modal-success {
        padding: 30px 15px;
    }
    
    .modal-success-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .modal-success h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .modal-success p {
        font-size: 14px;
        margin-bottom: 25px;
    }
}/* Cyber Investigation Page Styles */
.cyber-hero {
    background: linear-gradient(135deg, #112152 0%, #041238 100%);
    padding: 120px 0 80px 0;
}

.cyber-hero .hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cyber-hero .hero-left {
    flex: 1;
}

.cyber-hero .hero-right {
    flex: 0 0 400px;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    color: white;
}

.hero-stats-card .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-stats-card .stat-item {
    text-align: center;
}

.hero-stats-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 5px;
}

.hero-stats-card .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #112152;
}

/* Cyber Types Section */
.cyber-types-section {
    padding: 80px 0;
    background: #f8fafc;
}

.cyber-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cyber-type-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cyber-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cyber-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cyber-type-card h3 {
    color: #112152;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cyber-type-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #475569;
    font-size: 14px;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.features-list li:before {
    content: "✓";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    margin-top: 50px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: 50px;
    background: #e2e8f0;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content h3 {
    color: #112152;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.step-features li {
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: #f8fafc;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tool-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.tool-card h3 {
    color: #112152;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tool-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Consultation Section */
.consultation-section {
    padding: 80px 0;
    background: white;
}

.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
    font-size: 14px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
}

.checkmark {
    flex-shrink: 0;
}

/* Responsive Design for Cyber Investigation Page */
@media (max-width: 768px) {
    .cyber-hero .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .cyber-hero .hero-right {
        flex: none;
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cyber-types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
    
    .step-features {
        justify-content: center;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Blog Hero Section Styles */
.blog-hero {
    background: #112152 !important;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

.blog-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.blog-hero .hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.blog-hero .title-main {
    display: block;
    color: white;
}

.blog-hero .title-accent {
    display: block;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.blog-hero .cta-button {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-hero .cta-button.primary {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #112152;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.blog-hero .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

.blog-hero .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.blog-hero .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.blog-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-hero .stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.blog-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.blog-hero .stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .blog-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .blog-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .blog-hero .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-hero .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .blog-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-top: 30px;
    }
    
    .blog-hero .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .blog-hero .hero-title {
        font-size: 2rem;
    }
    
    .blog-hero .hero-subtitle {
        font-size: 1rem;
    }
}

/* Featured Article Section */
.featured-article {
    padding: 80px 0;
    background: #f8f9fa;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text {
    padding: 40px 0;
}

.featured-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #112152;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #112152;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.article-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
    box-shadow: 0 4px 15px rgba(17, 33, 82, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 33, 82, 0.4);
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(17, 33, 82, 0.2);
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: #ffc107;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Blog Categories Section */
.blog-categories {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #112152;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 33, 82, 0.05), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover,
.category-card.active {
    border-color: #112152;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(17, 33, 82, 0.1);
}

.category-card.active {
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-card.active .category-icon {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    transform: scale(1.1);
}

.category-icon i {
    font-size: 2rem;
    color: #112152;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: inherit;
}

.post-count {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Recent Articles Section */
.recent-articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 0;
}

.article-image .image-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ffc107;
}

.article-image .image-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.crypto {
    background: #f7931e;
    color: white;
}

.category-badge.cybersecurity {
    background: #28a745;
    color: white;
}

.category-badge.recovery {
    background: #007bff;
    color: white;
}

.category-badge.prevention {
    background: #dc3545;
    color: white;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #112152;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-content .article-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.article-meta .date,
.article-meta .read-time {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.read-more {
    color: #112152;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more:hover {
    color: #ffc107;
    transform: translateX(5px);
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

/* Newsletter Signup Section */
.newsletter-signup {
    padding: 100px 0;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item i {
    color: #ffc107;
    font-size: 1.1rem;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group button {
    padding: 16px 30px;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #112152;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.privacy-note i {
    color: #ffc107;
}

/* Footer Styles Enhancement */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffc107;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffc107;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffc107;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: #ffc107;
    width: 16px;
}

.contact-info a {
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #25D366 !important;
    transform: translateX(3px);
}

.contact-info a:hover i {
    color: #25D366;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer-text {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 10px;
    border-left: 4px solid #ffc107;
}

.disclaimer-text p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom .footer-links {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .featured-article,
    .blog-categories,
    .recent-articles {
        padding: 60px 0;
    }
    
    .newsletter-signup {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .newsletter-form {
        padding: 30px 20px;
    }
}

/* Testimonials Page Styles */
.testimonials-hero {
    background: #112152 !important;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.testimonials-hero .container {
    position: relative;
    z-index: 2;
}

.testimonials-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    text-align: center;
}

.testimonials-hero .hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-hero .hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

.testimonials-hero .title-main {
    display: block;
    color: white;
    margin-bottom: 10px;
}

.testimonials-hero .title-accent {
    display: block;
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-hero .hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.testimonials-hero .cta-button {
    padding: 18px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.testimonials-hero .cta-button.primary {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #112152;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.testimonials-hero .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

.testimonials-hero .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.testimonials-hero .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.testimonials-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-hero .stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonials-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
}

.testimonials-hero .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    display: block;
}

.testimonials-hero .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

/* Featured Testimonials Section */
.featured-testimonials {
    padding: 100px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 33, 82, 0.03), transparent);
    transition: left 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
    border: 3px solid #ffc107;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
    min-width: 200px;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #112152;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.client-location {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.recovery-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-top: 10px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    margin: 25px 0;
    position: relative;
    padding-left: 30px;
}

.testimonial-content blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #ffc107;
    position: absolute;
    left: -10px;
    top: -20px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.scam-type .badge,
.badge {
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-top: 15px;
}

/* More Testimonials Section */
.more-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-row {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 35px;
    margin-bottom: 25px;
    border-left: 5px solid #ffc107;
    transition: all 0.3s ease;
}

.testimonial-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-row .client-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #112152;
    margin-bottom: 10px;
}

.testimonial-row .testimonial-stars {
    margin: 10px 0;
}

.testimonial-row blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 20px 0;
    font-style: italic;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
}

.video-testimonials .section-title,
.video-testimonials .section-subtitle {
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.video-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.video-placeholder {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-placeholder i {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    transform: scale(1.1);
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.video-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Statistics Section Enhancement */
.testimonials-stats {
    padding: 100px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff8f00);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffc107;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #112152;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call to Action Section */
.testimonials-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #112152, #1a2d5a);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.testimonials-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn-primary,
.btn-outline {
    padding: 20px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107, #ff8f00);
    color: #112152;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 22px 45px;
    font-size: 1.2rem;
}

/* Footer Enhancement */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}

.footer .logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffc107;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.footer-links a:hover {
    color: #ffc107;
}

.footer-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 5px solid #ffc107;
}

.disclaimer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .testimonials-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-hero .hero-title {
        font-size: 3.2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .testimonials-hero {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .testimonials-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .testimonials-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .testimonials-hero .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonials-hero .cta-button {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .testimonials-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-top: 30px;
    }
    
    .testimonials-hero .stat-number {
        font-size: 2.2rem;
    }
    
    .featured-testimonials,
    .more-testimonials,
    .video-testimonials,
    .testimonials-stats,
    .testimonials-cta {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonials-hero .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile Modal Specific Fixes */
@media (max-width: 768px) {
    .modal {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 10px;
    }
    
    .modal-content {
        margin: 20px auto;
        width: calc(100% - 20px);
        max-width: none;
        max-height: none;
        min-height: auto;
        position: relative;
    }
    
    .modal-form-row {
        display: block;
    }
    
    .modal-form-group {
        margin-bottom: 1rem;
    }
    
    .modal-phone-input {
        display: block;
    }
    
    .modal-phone-input .modal-country-select {
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .modal-form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-btn-cancel,
    .modal-btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        margin: 10px auto;
        width: calc(100% - 10px);
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-close {
        font-size: 24px;
        right: 0.5rem;
        top: 0.5rem;
    }
}
