:root {
            --primary: #1a3a5c;
            --primary-dark: #0d2137;
            --accent: #2d6cb5;
            --accent-light: #4a8fd9;
            --text: #1f2937;
            --text-muted: #6b7280;
            --bg: #f8fafc;
            --white: #ffffff;
            --border: #e5e7eb;
            --gradient-start: #1a3a5c;
            --gradient-end: #2d5a8a;
            --success: #10b981;
            --error: #ef4444;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        html::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        body {
            font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            font-size: 16px;
            overflow-x: hidden;
        }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-delay-1 { transition-delay: 0.1s; }
        .animate-delay-2 { transition-delay: 0.2s; }
        .animate-delay-3 { transition-delay: 0.3s; }
        .animate-delay-4 { transition-delay: 0.4s; }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .header.scrolled {
            padding: 12px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo img {
            height: 82px;
            width: auto;
        }

        @media (min-width: 768px) {
            .logo img {
                height: 86px;
            }
        }

        .nav {
            display: none;
        }

        .nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 400;
            margin-left: 32px;
            transition: color 0.3s;
            position: relative;
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s;
        }

        .nav a:hover {
            color: var(--primary);
        }

        .nav a:hover::after {
            width: 100%;
        }

        @media (min-width: 768px) {
            .nav {
                display: flex;
            }
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(74, 143, 217, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(45, 108, 181, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite reverse;
        }

        .hero-inner {
            display: grid;
            gap: 40px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            animation: fadeInLeft 0.8s ease;
        }

        .hero h1 {
            color: var(--white);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.95);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            margin-top: 30px;
        }

        .hero-subtitle-secondary {
            color: rgba(255,255,255,0.85);
            font-size: 17px;
            font-weight: 400;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .hero-fcr {
            display: block;
            color: rgba(255,255,255,0.85);
            font-size: 13px;
            font-style: italic;
            margin-bottom: 24px;
            margin-top: 8px;
        }

        .fcr-icon {
            height: 24px;
            width: auto;
            vertical-align: middle;
            margin-left: 8px;
        }

        .hero-text {
            color: rgba(255,255,255,0.75);
            font-size: 15px;
            margin-bottom: 32px;
            max-width: 500px;
        }

        .hero-visual {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 2;
            animation: fadeInRight 0.8s ease;
        }

        .hero-graphic {
            width: 280px;
            height: 280px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.2);
            transition: all 0.5s ease;
        }

        .hero-graphic:hover .hero-circle {
            border-color: rgba(255,255,255,0.4);
        }

        .hero-circle-1 {
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            border-color: rgba(255,255,255,0.15);
            animation: rotate 30s linear infinite;
        }

        .hero-circle-2 {
            width: 75%;
            height: 75%;
            top: 12.5%;
            left: 12.5%;
            border-color: rgba(74, 143, 217, 0.4);
            animation: rotate 25s linear infinite reverse;
        }

        .hero-circle-3 {
            width: 50%;
            height: 50%;
            top: 25%;
            left: 25%;
            border-color: rgba(74, 143, 217, 0.6);
            background: rgba(74, 143, 217, 0.1);
            animation: pulse 4s ease-in-out infinite;
        }

        .hero-circle-center {
            width: 30%;
            height: 30%;
            top: 35%;
            left: 35%;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 40px rgba(45, 108, 181, 0.4);
            animation: pulse 3s ease-in-out infinite;
        }

        .hero-circle-center svg {
            width: 32px;
            height: 32px;
            fill: white;
        }

        /* Floating particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 2s; }
        .particle:nth-child(3) { top: 40%; left: 80%; animation-delay: 4s; }
        .particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 3s; }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(45, 108, 181, 0.4);
        }

        .btn-primary:hover {
            background: var(--accent-light);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 108, 181, 0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--bg);
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 18px 40px;
            font-size: 16px;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 160px 0 120px;
            }

            .hero-inner {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 20px;
                margin-top: 20px;
            }

            .hero-subtitle-secondary {
                font-size: 16px;
                
            }

            .hero-graphic {
                width: 360px;
                height: 360px;
            }
        }

        /* Process Section */
        .process {
            padding: 80px 0;
            background: var(--white);
        }

        .section-title {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 48px;
        }

        @media (min-width: 768px) {
            .section-title {
                font-size: 32px;
            }
        }

        .process-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .process-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .process-card {
            background: var(--bg);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .process-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            border-radius: 16px 16px 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .process-card:hover::before {
            opacity: 1;
        }

        .process-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            margin: 0 auto 20px;
            transition: transform 0.3s;
        }

        .process-card:hover .process-number {
            transform: scale(1.1);
        }

        .process-card h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.4;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: var(--bg);
        }

        .benefits-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .benefit-card {
            background: var(--white);
            border-radius: 16px;
            padding: 32px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .benefit-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: linear-gradient(135deg, rgba(45, 108, 181, 0.1) 0%, rgba(74, 143, 217, 0.1) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .benefit-card:hover .benefit-icon {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--accent);
            fill: none;
            stroke-width: 2;
            transition: stroke 0.3s;
        }

        .benefit-card:hover .benefit-icon svg {
            stroke: white;
        }

        .benefit-content h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .benefit-content p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: var(--white);
        }

        .about-card {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 24px;
            padding: 48px 32px;
            text-align: center;
            position: relative;
            overflow: hidden;
            letter-spacing: 1.5px;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: float 10s ease-in-out infinite;
        }

        .about-card h2 {
            color: var(--white);
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
        }

        .about-card p {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.5;
            position: relative;
        }

        @media (min-width: 768px) {
            .about-card {
                padding: 64px 48px;
            }

            .about-card h2 {
                font-size: 28px;
            }

            .about-card p {
                font-size: 16px;
            }
        }

        /* Table Section */
        .cases {
            padding: 80px 0;
            background: var(--bg);
        }

        .cases-note {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 32px;
        }

        .table-wrapper {
            overflow-x: auto;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .table-wrapper::-webkit-scrollbar {
            display: none;
        }

        .cases-table {
            width: 100%;
            border-collapse: collapse;
        }

        .cases-table th,
        .cases-table td {
            padding: 16px 20px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .cases-table th {
            background: var(--bg);
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .cases-table td {
            font-size: 14px;
            color: var(--text);
            transition: background 0.3s;
        }

        .cases-table tr:last-child td {
            border-bottom: none;
        }

        .cases-table tbody tr {
            transition: all 0.3s;
        }

        .cases-table tbody tr:hover td {
            background: rgba(45, 108, 181, 0.03);
        }

        .status {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .status-done {
            background: rgba(34, 197, 94, 0.1);
            color: #16a34a;
        }

        .status-progress {
            background: rgba(45, 108, 181, 0.1);
            color: var(--accent);
        }

        .status-review {
            background: rgba(234, 179, 8, 0.1);
            color: #ca8a04;
        }

        .status-court {
            background: rgba(139, 92, 246, 0.1);
            color: #7c3aed;
        }

        .status-progress {
            background: rgba(59, 130, 246, 0.1);
            color: #2563eb;
        }

        .broker-name {
            font-weight: 700;
            color: var(--primary);
        }

        .amount-loss {
            color: var(--text);
            font-weight: 400;
        }

        .amount-return {
            color: #16a34a;
            font-weight: 700;
        }

        .amount-pending {
            color: var(--text-muted);
        }

        .cases-table {
            min-width: 700px;
        }

        .cases-table th:nth-child(2),
        .cases-table td:nth-child(2),
        .cases-table th:nth-child(3),
        .cases-table td:nth-child(3),
        .cases-table th:nth-child(4),
        .cases-table td:nth-child(4) {
            text-align: right;
        }

        /* Highlight columns */
        .cases-table td:nth-child(2) {
            font-weight: 700;
            color: var(--primary);
        }

        .cases-table td:nth-child(3) {
            font-weight: 600;
            color: var(--accent);
        }

        .cases-table th:last-child,
        .cases-table td:last-child {
            text-align: center;
        }

        /* Form Section */
        .form-section {
            padding: 80px 0;
            background: var(--white);
        }

        .form-card {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg);
            border-radius: 24px;
            padding: 40px 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .form-card h2 {
            text-align: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .form-card .form-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 32px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-group label span {
            color: var(--error);
        }

        .form-input {
            width: 100%;
            padding: 14px 18px;
            font-size: 15px;
            font-family: inherit;
            border: 2px solid var(--border);
            border-radius: 12px;
            background: var(--white);
            color: var(--text);
            transition: all 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(45, 108, 181, 0.1);
        }

        .phone-input-group {
            display: flex;
            align-items: stretch;
            position: relative;
        }

        .phone-code-wrapper {
            position: relative;
        }

        .phone-code-btn {
            width: 80px;
            height: 100%;
            padding: 14px 8px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            color: var(--text);
            background: var(--bg);
            border: 2px solid var(--border);
            border-right: none;
            border-radius: 12px 0 0 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .phone-code-btn:hover {
            background: var(--white);
            border-color: var(--accent);
        }

        .phone-code-btn svg {
            width: 12px;
            height: 12px;
            stroke: var(--text-muted);
            transition: transform 0.2s;
        }

        .phone-code-wrapper.open .phone-code-btn svg {
            transform: rotate(180deg);
        }

        .phone-code-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            max-height: 250px;
            overflow-y: auto;
            background: var(--white);
            border: 2px solid var(--border);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            z-index: 100;
            display: none;
            margin-top: 4px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .phone-code-dropdown::-webkit-scrollbar {
            display: none;
        }

        .phone-code-wrapper.open .phone-code-dropdown {
            display: block;
        }

        .phone-code-option {
            padding: 12px 16px;
            font-size: 14px;
            color: var(--text);
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .phone-code-option:hover {
            background: var(--bg);
        }

        .phone-code-option .code {
            font-weight: 600;
            color: var(--accent);
        }

        .phone-input-group .phone-number {
            border-radius: 0 12px 12px 0;
            flex: 1;
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        .form-row {
            display: grid;
            gap: 16px;
        }

        @media (min-width: 480px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
            justify-content: center;
            text-align: center;
        }

        .form-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 16px;
        }

        .form-note a {
            color: var(--accent);
            text-decoration: underline;
            cursor: pointer;
            transition: color 0.2s;
            position: relative;
            z-index: 10;
            display: inline-block;
            pointer-events: auto;
        }

        .form-note a:hover {
            color: var(--accent-light);
        }

        .modal-body .form-note a {
            z-index: 1010;
        }

        /* Thank You Content */
        .thank-you-content {
            text-align: center;
            padding: 20px 0;
        }

        .thank-you-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            animation: scaleIn 0.5s ease;
        }

        @keyframes scaleIn {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .thank-you-icon svg {
            width: 40px;
            height: 40px;
            stroke: white;
            stroke-width: 3;
            fill: none;
        }

        .thank-you-content h2,
        .thank-you-content h3 {
            color: var(--primary);
            margin-bottom: 12px;
        }

        .thank-you-content p {
            color: var(--text);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .thank-you-info {
            background: var(--bg);
            padding: 20px;
            border-radius: 12px;
            font-size: 15px;
            color: var(--text);
            margin-bottom: 24px;
        }

        .thank-you-info strong {
            color: var(--primary);
        }

        .thank-you-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            text-align: left;
            max-width: 300px;
            margin: 0 auto;
        }

        .thank-you-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text);
        }

        .thank-you-feature svg {
            width: 20px;
            height: 20px;
            stroke: #10b981;
            stroke-width: 2;
            fill: none;
            flex-shrink: 0;
        }

        .form-message {
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 20px;
            text-align: center;
            font-size: 14px;
            display: none;
            animation: scaleIn 0.3s ease;
        }

        .form-message.success {
            display: block;
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
            border: 1px solid rgba(16, 185, 129, 0.2);
        }

        .form-message.error {
            display: block;
            background: rgba(239, 68, 68, 0.1);
            color: var(--error);
            border: 1px solid rgba(239, 68, 68, 0.2);
        }

        .form-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: rotate 0.8s linear infinite;
        }

        .btn.loading .form-spinner {
            display: block;
        }

        .btn.loading span {
            display: none;
        }

        @media (min-width: 768px) {
            .form-card {
                padding: 48px 40px;
            }

            .form-card h2 {
                font-size: 28px;
            }
        }

        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: var(--bg);
        }

        .cta-card {
            text-align: center;
            padding: 48px 24px;
            background: var(--white);
            border-radius: 24px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
            background-size: 200% 100%;
            animation: shimmer 3s linear infinite;
        }

        .cta-card h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .cta-card p {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (min-width: 768px) {
            .cta-card {
                padding: 64px 48px;
            }

            .cta-card h2 {
                font-size: 28px;
            }
        }

        /* Footer */
        .footer {
            background: var(--primary-dark);
            padding: 48px 0 24px;
        }

        .footer-content {
            display: grid;
            gap: 32px;
            margin-bottom: 32px;
        }

        @media (min-width: 768px) {
            .footer-content {
                grid-template-columns: 2fr 1fr;
            }
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            line-height: 1.7;
            max-width: 400px;
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-links a {
            display: block;
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 12px;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.4);
            font-size: 12px;
        }

        .footer-disclaimer {
            color: rgba(255,255,255,0.5);
            font-size: 11px;
            margin-top: 16px;
            line-height: 1.6;
        }

        /* Mobile sticky CTA */
        .mobile-cta {
            display: block;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            padding: 12px 20px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
            z-index: 99;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .mobile-cta.visible {
            transform: translateY(0);
        }

        .mobile-cta .btn {
            width: 100%;
            justify-content: center;
        }

        @media (min-width: 768px) {
            .mobile-cta {
                display: none;
            }
        }

        /* Add padding bottom for mobile sticky CTA */
        @media (max-width: 767px) {
            .footer {
                padding-bottom: 100px;
            }
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 90px;
            right: 20px;
            width: 48px;
            height: 48px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 98;
            box-shadow: 0 4px 15px rgba(45, 108, 181, 0.3);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
        }

        @media (min-width: 768px) {
            .scroll-top {
                bottom: 30px;
                right: 30px;
            }
        }

        /* Counter animation */
        .counter {
            font-variant-numeric: tabular-nums;
        }

        /* Modal Popup */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(13, 33, 55, 0.8);
            backdrop-filter: blur(4px);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal {
            background: var(--white);
            border-radius: 24px;
            width: 100%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 0 25px 50px rgba(0,0,0,0.25);
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .modal::-webkit-scrollbar {
            display: none;
        }

        .modal-overlay.active .modal {
            transform: scale(1) translateY(0);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            transition: all 0.2s;
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--error);
            color: white;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            padding: 32px 24px;
            text-align: center;
            border-radius: 24px 24px 0 0;
        }

        .modal-header h3 {
            color: white;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .modal-header p {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .modal-body {
            padding: 32px 24px;
        }

        .modal-body .form-group {
            margin-bottom: 16px;
        }

        .modal-body .form-row {
            gap: 12px;
        }

        .modal-body .form-submit {
            margin-top: 16px;
        }

        .modal-body .form-note {
            margin-top: 12px;
        }

        @media (min-width: 480px) {
            .modal-body {
                padding: 32px;
            }
        }

        /* Extended Info Section */
        .extended-info {
            padding: 80px 0;
            background: var(--bg);
        }

        .info-grid {
            display: grid;
            gap: 24px;
        }

        @media (min-width: 768px) {
            .info-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .info-card {
            background: var(--white);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }

        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .info-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-icon svg {
            width: 36px;
            height: 36px;
            stroke: white;
        }

        .info-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .info-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Tender Section */
        .tender-section {
            padding: 80px 0;
            background: var(--white);
        }

        .tender-grid {
            display: grid;
            gap: 40px;
            align-items: start;
        }

        @media (min-width: 768px) {
            .tender-grid {
                grid-template-columns: 1.5fr 1fr;
                gap: 60px;
            }
        }

        .tender-content h2 {
            color: var(--primary);
        }

        .tender-text p {
            font-size: 15px;
            color: var(--text);
            margin-bottom: 16px;
            line-height: 1.8;
            position: relative;
            padding-left: 20px;
        }

        .tender-text p::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .tender-card {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            border-radius: 24px;
            padding: 32px;
            color: white;
        }

        .tender-card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .tender-card-header svg {
            width: 32px;
            height: 32px;
            stroke: var(--accent-light);
        }

        .tender-card-header span {
            font-size: 20px;
            font-weight: 700;
        }

        .tender-list {
            list-style: none;
        }

        .tender-list li {
            font-size: 14px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tender-list li:last-child {
            border-bottom: none;
        }

        .tender-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            min-width: 24px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            font-size: 12px;
        }

        /* Document Embed Section */
        .document-section {
            margin-top: 60px;
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .document-header {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 32px;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
        }

        .document-icon {
            width: 56px;
            height: 56px;
            min-width: 56px;
            background: rgba(255,255,255,0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .document-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
        }

        .document-title h3 {
            color: white;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .document-title p {
            color: rgba(255,255,255,0.8);
            font-size: 14px;
        }

        .document-embed {
            background: white;
            padding: 24px;
            display: flex;
            justify-content: center;
        }

        .document-embed img {
            max-width: 400px;
            width: 100%;
            height: auto;
            display: block;
        }

        @media (min-width: 768px) {
            .document-embed {
                padding: 32px;
            }

            .document-embed img {
                max-width: 450px;
            }
        }

        /* CTA Section Enhanced */
        .cta-enhanced {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-enhanced::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(74, 143, 217, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .cta-enhanced::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite reverse;
        }

        .cta-enhanced-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .cta-enhanced h2 {
            color: white;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-enhanced-subtitle {
            color: rgba(255,255,255,0.9);
            font-size: 18px;
            margin-bottom: 12px;
        }

        .cta-enhanced p {
            color: rgba(255,255,255,0.7);
            font-size: 15px;
            max-width: 500px;
            margin: 0 auto 32px;
        }

        .cta-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.9);
            font-size: 14px;
        }

        .cta-feature svg {
            width: 20px;
            height: 20px;
            stroke: var(--accent-light);
            fill: none;
        }

        .cta-enhanced .btn-secondary {
            background: white;
            color: var(--primary);
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }

        .cta-enhanced .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        @media (min-width: 768px) {
            .cta-enhanced {
                padding: 120px 0;
            }

            .cta-enhanced h2 {
                font-size: 36px;
            }

            .cta-enhanced-subtitle {
                font-size: 20px;
            }
        }