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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed header */
}

/* Header Navigation - Fixed Theme */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.brand i {
    font-size: 24px;
    color: #3b82f6;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #3b82f6;
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #64748b;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-large {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: transparent;
}

/* Hero Section - Dark Theme */
.hero-section {
    padding: 100px 32px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #60a5fa;
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Exchange Illustration - Dark Theme */
.exchange-illustration {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.exchange-illustration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.currency-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.currency-card {
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 140px;
    transition: all 0.3s ease;
    position: relative;
}

.currency-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.currency-card.paypal {
    border-color: rgba(0, 123, 255, 0.4);
}

.currency-card.paypal:hover {
    border-color: #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.currency-card.rupiah {
    border-color: rgba(34, 197, 94, 0.4);
}

.currency-card.rupiah:hover {
    border-color: #22c55e;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.currency-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 8px;
}

.currency-card.paypal .currency-icon {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
}

.currency-card.rupiah .currency-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
}

.currency-info {
    text-align: center;
}

.currency-name {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
    font-weight: 500;
}



.exchange-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.arrow-container {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    animation: exchangePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    position: relative;
}



@keyframes exchangePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
    }
}

.process-indicators {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
    z-index: -1;
}

.process-step.active:not(:last-child)::after {
    background: linear-gradient(90deg, #3b82f6 0%, rgba(59, 130, 246, 0.3) 100%);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: rgba(59, 130, 246, 0.2);
    color: #94a3b8;
    border: 2px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.process-step.active .step-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.process-step span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    text-align: center;
}

.process-step.active span {
    color: #60a5fa;
}



/* Trust Section - Dark Theme */
.trust-section {
    padding: 80px 32px;
    background: #1e293b;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    text-align: left;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.trust-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.trust-content {
    flex: 1;
}

.trust-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 500;
}

/* Services Section - Dark Theme */
.services-section {
    padding: 80px 32px;
    background: #0f172a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Calculator Section - Dark Theme */
.calculator-section {
    padding: 80px 32px;
    background: #1e293b;
}

.calculator-card {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(15px);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-weight: 600;
    color: #94a3b8;
    z-index: 2;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 40px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.6);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.input-wrapper input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.input-wrapper input::placeholder {
    color: #64748b;
}

.input-wrapper.result input {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-weight: 600;
}

.input-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-size: 13px;
    color: #60a5fa;
}

.input-info i {
    color: #3b82f6;
    font-size: 14px;
}

.quick-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

/* Exchange Form Styles */
.exchange-form {
    margin-top: 32px;
    padding: 24px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.exchange-form h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: #64748b;
}

.form-text {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.form-control:invalid {
    border-color: rgba(239, 68, 68, 0.5);
}

.form-control:valid {
    border-color: rgba(34, 197, 94, 0.5);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 24px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 80px;
}

.form-check:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.08);
}

.form-check input[type="radio"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    margin-right: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.form-check input[type="radio"]:checked {
    border-color: #3b82f6;
    background: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-check input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}



.form-check-label {
    color: #e2e8f0;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.payment-icon {
    font-size: 28px;
    color: #60a5fa;
    min-width: 40px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check input[type="radio"]:checked + label .payment-icon {
    color: #10b981;
    transform: scale(1.1);
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.payment-title {
    font-size: 17px;
    font-weight: 600;
    color: inherit;
    line-height: 1.3;
}

.payment-desc {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.9;
}

.form-check input[type="radio"]:checked + label .payment-desc {
    color: #cbd5e1;
}

.form-check input[type="radio"]:checked + label {
    color: #ffffff;
}

.form-check input[type="radio"]:checked + label .payment-desc {
    color: #cbd5e1;
    opacity: 1;
}

.agreement-check {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    min-height: auto;
}

.agreement-check .form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: #3b82f6;
}

.agreement-check .form-check-label {
    font-size: 14px;
    line-height: 1.5;
    color: #e2e8f0;
    cursor: pointer;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.agreement-check:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.6);
}

.form-check-inline {
    display: inline-flex;
    margin-right: 16px;
    margin-bottom: 8px;
}

.bank-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.bank-options .form-check {
    margin-bottom: 8px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 8px;
    min-height: auto;
}

.bank-options .form-check:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.6);
}

.bank-options .form-check input[type="radio"]:checked + label {
    color: #ffffff;
    font-weight: 600;
}

.ewallet-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.ewallet-note {
    margin-top: 8px;
    padding: 8px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 6px;
}

.ewallet-note label {
    color: #60a5fa;
    margin: 0;
}

.form-step {
    animation: fadeInUp 0.5s ease forwards;
    min-height: 300px;
}

.form-step h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    gap: 16px;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(71, 85, 105, 0.5);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.step-dot.completed {
    background: #10b981;
}

.form-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.form-actions .btn {
    flex: 1;
    max-width: 200px;
}

.btn-secondary {
    background: rgba(71, 85, 105, 0.8);
    border: 1px solid rgba(71, 85, 105, 0.3);
    color: #e2e8f0;
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(71, 85, 105, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: #ffffff;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Mobile Responsive Optimization */
@media (max-width: 768px) {
    /* Mobile Header Adjustments */
    .main-header {
        height: 70px !important;
    }
    
    .header-container {
        padding: 0 16px !important;
    }
    /* Hero Section Mobile */
    .hero-section {
        padding: 100px 16px 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 12px;
    }
    
    .exchange-illustration {
        padding: 24px;
        order: -1;
    }
    
    .currency-flow {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 24px;
    }
    
    .currency-card {
        padding: 16px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .exchange-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    /* Form Mobile */
    .exchange-form {
        padding: 16px;
        margin-top: 24px;
    }
    
    .ewallet-options {
        flex-direction: column;
    }
    
    .form-check-inline {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 60px;
        margin-top: 40px;
    }
    
    /* Separate Contact Info Section on Mobile */
    .contact-info {
        background: rgba(15, 23, 42, 0.4);
        padding: 24px 20px;
        border-radius: 12px;
        border: 1px solid rgba(59, 130, 246, 0.2);
        margin-bottom: 20px;
    }
    
    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #ffffff;
        text-align: center;
    }
    
    .contact-info > p {
        text-align: center;
        color: #94a3b8;
        margin-bottom: 24px;
        font-size: 14px;
    }
    
    .contact-methods {
        gap: 24px;
    }
    
    .contact-method {
        gap: 16px;
    }
    
    .method-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .method-info h4 {
        font-size: 16px;
    }
    
    .method-info p {
        font-size: 13px;
    }
    
    /* Separate Contact Form Section on Mobile */
    .contact-form {
        background: rgba(15, 23, 42, 0.4);
        padding: 24px 20px;
        border-radius: 12px;
        border: 1px solid rgba(59, 130, 246, 0.2);
        margin-top: 20px;
    }
    
    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 20px;
        color: #ffffff;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .availability-notice {
        margin-top: 20px;
        padding: 12px 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .availability-notice span {
         font-size: 13px;
     }
     
     /* Form Convert Buttons Mobile */
     .form-actions {
         flex-direction: column;
         gap: 12px;
         margin-top: 20px;
     }
     
     .form-actions .btn {
         flex: none;
         width: 100%;
         max-width: none;
         padding: 14px 20px;
         font-size: 16px;
         min-height: 48px;
     }
     
     .btn {
         padding: 12px 16px;
         font-size: 15px;
         min-height: 44px;
     }
     
     .btn-large {
         padding: 16px 24px;
         font-size: 17px;
         min-height: 52px;
     }
     
     .form-step {
         min-height: auto;
         padding: 20px 0;
     }
     
     .form-step h3 {
         font-size: 18px;
         margin-bottom: 20px;
     }
     
     .step-indicator {
         margin-bottom: 20px;
         gap: 12px;
     }
     
     .step-dot {
         width: 10px;
         height: 10px;
     }
 }

/* iPhone Specific Optimization */
@media (max-width: 414px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 90px 12px 50px;
    }
    
    .exchange-illustration {
        padding: 20px;
    }
    
    .currency-card {
        padding: 12px;
    }
}

/* Android Small Screen Optimization */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 26px;
    }
    
    .hero-section {
        padding: 85px 10px 45px;
    }
    
    .exchange-illustration {
        padding: 16px;
    }
}

.quick-btn {
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: rgba(30, 41, 59, 0.6);
    border-radius: 8px;
    font-weight: 600;
    color: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-btn:hover {
    border-color: #3b82f6;
    color: #60a5fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quick-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.exchange-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
}

.rate-display {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.rate-label {
    font-weight: 500;
    color: #94a3b8;
}

.rate-value {
    font-weight: 700;
    color: #60a5fa;
}

.exchange-arrow-calc {
    font-size: 20px;
    color: #60a5fa;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.fee-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: #10b981;
}

.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

/* How It Works Section - Dark Theme */
.how-it-works {
    padding: 80px 32px;
    background: #0f172a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.step-icon {
    font-size: 48px;
    color: #60a5fa;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.step-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.step-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Features Section - Dark Theme */
.features {
    padding: 80px 32px;
    background: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    padding: 32px 24px;
    text-align: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.feature-card h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* Testimonials Section - Dark Theme */
.testimonials {
    padding: 80px 32px;
    background: #0f172a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.6);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 16px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.author-info h4 {
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    color: #94a3b8;
    font-size: 14px;
}

/* Testimoni Page Styles */
.testimoni-hero {
    padding: 120px 32px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.testimoni-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.testimoni-hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimoni-form-section {
    padding: 80px 32px;
    background: #0f172a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto 60px;
    background: rgba(30, 41, 59, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.testimoni-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.required {
    color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: #e2e8f0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.rating-input {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.stars i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
}

.stars i:hover,
.stars i.active {
    color: #FFD700;
}

.rating-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #e2e8f0;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #3b82f6;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.existing-testimonials {
    max-width: 1200px;
    margin: 0 auto;
}

.existing-testimonials h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.no-testimonials {
    text-align: center;
    color: #94a3b8;
    font-style: italic;
    padding: 3rem;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.testimonial-rating .stars {
    color: #FFD700;
    font-size: 1rem;
}

.rating-number {
    color: #94a3b8;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.author-info small {
    display: block;
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.success-message .message-content,
.error-message .message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-message i {
    color: #10b981;
    font-size: 3rem;
}

.error-message i {
    color: #ef4444;
    font-size: 3rem;
}

.success-message h3,
.error-message h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
}

.success-message p,
.error-message p {
    margin: 0;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .testimoni-hero {
        padding: 100px 20px 60px;
    }
    
    .testimoni-hero h1 {
        font-size: 2rem;
    }
    
    .testimoni-form-section {
        padding: 60px 20px;
    }
    
    .form-container {
        padding: 24px;
        margin-bottom: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .existing-testimonials h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* Terms Page Styles */
.terms-hero {
    padding: 120px 32px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.terms-hero p {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-content-section {
    padding: 80px 32px;
    background: #0f172a;
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.terms-navigation {
    position: sticky;
    top: 100px;
    background: rgba(30, 41, 59, 0.6);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.terms-navigation h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.terms-nav-list li {
    margin-bottom: 0.5rem;
}

.terms-nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 6px;
    display: block;
    transition: all 0.3s ease;
}

.terms-nav-link:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.terms-content {
    background: rgba(30, 41, 59, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.terms-section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.terms-section p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    color: #e2e8f0;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-size: 0.95rem;
}

.contact-info .contact-item i {
    color: #3b82f6;
    font-size: 1.1rem;
    width: 20px;
}

.terms-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
}

.terms-footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.terms-footer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .terms-hero {
        padding: 100px 20px 60px;
    }
    
    .terms-hero h1 {
        font-size: 2rem;
    }
    
    .terms-content-section {
        padding: 60px 20px;
    }
    
    .terms-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .terms-navigation {
        position: static;
        order: 2;
        margin-top: 2rem;
    }
    
    .terms-content {
        padding: 24px;
        order: 1;
    }
    
    .terms-section {
        margin-bottom: 2rem;
    }
}

/* Contact Section - Dark Theme */
.contact {
    padding: 80px 32px;
    background: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.contact-info h3 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.section-header p {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}

.availability-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.availability-notice i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.availability-notice span {
    color: #10b981;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: start;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.method-info h4 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.method-info p {
    color: #94a3b8;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #3b82f6;
}

.contact-form {
    background: rgba(15, 23, 42, 0.6);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.contact-form h3 {
    margin-bottom: 32px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: rgba(30, 41, 59, 0.6);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

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

/* Footer - Dark Theme */
.footer {
    background: #0f172a;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-brand i {
    font-size: 28px;
    color: #3b82f6;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 4px 0;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-item i {
    width: 20px;
    color: #60a5fa;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.footer-info #last-update {
    color: #60a5fa;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 10000;
        position: relative;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }
    
    .mobile-menu-toggle .hamburger-line {
        width: 24px !important;
        height: 2px !important;
        background: #64748b !important;
        transition: all 0.3s ease;
        display: block !important; /* Show hamburger lines */
        border-radius: 2px !important;
        margin: 3px 0 !important;
    }
    
    .mobile-menu-toggle .menu-text {
        display: none !important; /* Hide menu text */
        color: #64748b !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-align: center !important;
        line-height: 1 !important;
    }
    
    .mobile-menu-toggle:hover .hamburger-line {
        background: #3b82f6 !important;
    }
    
    .mobile-menu-toggle:hover .menu-text {
        color: #3b82f6 !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .trust-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }
    
    /* Hide desktop navigation */
    .main-nav .nav-menu {
        display: none !important;
    }
    
    /* Show mobile menu when active - HEADER THEME CONSISTENT */
    .main-nav .nav-menu.active {
        display: flex !important;
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        padding: 20px !important;
        flex-direction: column !important;
        gap: 16px !important;
        z-index: 999999 !important;
        margin: 0 !important;
        list-style: none !important;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1) !important;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1) !important;
        animation: slideDown 0.3s ease-out !important;
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Style nav links in mobile menu - HEADER THEME CONSISTENT */
    .main-nav .nav-menu.active .nav-link {
        display: block !important;
        color: #64748b !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 12px 16px !important;
        text-decoration: none !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
        background: transparent !important;
        border: none !important;
        margin: 4px 0 !important;
    }
    
    .main-nav .nav-menu.active .nav-link:hover {
        background: rgba(59, 130, 246, 0.1) !important;
        color: #3b82f6 !important;
    }
    
    .main-nav .nav-menu.active .nav-link.active {
        background: rgba(59, 130, 246, 0.1) !important;
        color: #3b82f6 !important;
    }
    
    /* Force hide desktop buttons */
    .header-actions .btn:not(.mobile-menu-toggle) {
        display: none !important;
    }
    
    /* Show hamburger button - HEADER THEME CONSISTENT */
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(59, 130, 246, 0.2) !important;
        border-radius: 8px !important;
        position: fixed !important;
        top: 10px !important;
        left: 349px !important;
        z-index: 99999 !important;
        width: 50px !important;
        height: 50px !important;
        padding: 8px !important;
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1) !important;
        transition: all 0.2s ease !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(59, 130, 246, 0.1) !important;
        border-color: rgba(59, 130, 246, 0.3) !important;
    }
    
    .main-nav .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
        flex-direction: column;
        gap: 16px;
        z-index: 9999;
        margin: 0;
        list-style: none;
    }
    
    .main-nav .nav-menu.active {
        transform: translateY(0);
    }
    
    .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);
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .header-actions .btn:last-of-type {
        display: none;
    }
    
    .hero-section {
        padding: 60px 20px 40px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .trust-section {
        padding: 60px 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .services-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Mobile menu animation */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Pagination Styles - Dark Theme */
.pagination-container {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #374151;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #4b5563;
    background: rgba(30, 41, 59, 0.8);
    color: #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover:not(.disabled) {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(30, 41, 59, 0.4);
    color: #6b7280;
}

.pagination-dots {
    padding: 10px 8px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.pagination-info {
    margin-left: 16px;
    font-size: 14px;
    color: #94a3b8;
    white-space: nowrap;
    font-weight: 500;
    background: rgba(30, 41, 59, 0.6);
    padding: 8px 12px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* Mobile pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        justify-content: space-between;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 36px;
    }
    
    .pagination-info {
        margin-left: 0;
        margin-top: 8px;
        text-align: center;
        width: 100%;
        order: 10;
    }
    
    /* Hide some page numbers on mobile */
    .pagination-btn.page-number:not(.active) {
        display: none;
    }
    
    .pagination-btn.page-number.active {
        display: flex;
    }
    
    /* Show first and last page */
    .pagination-btn.page-number:first-of-type,
    .pagination-btn.page-number:last-of-type {
        display: flex;
    }
}

/* Status badge styles */
.status-badge {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-left: 8px;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fbbf24;
}

.status-rejected {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.status-approved {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}



/* FAQ Section - Contact Theme Style */
.faq-section {
    padding: 80px 32px;
    background: #1e293b;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-header h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.faq-section .section-header p {
    color: #94a3b8;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.faq-item.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-question:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.1);
}

.question-text {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.faq-icon i {
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(15, 23, 42, 0.5);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 24px 32px 32px;
}

.answer-content {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}

.answer-content p {
    margin: 0 0 16px 0;
}

.answer-content p:last-child {
    margin-bottom: 0;
}

.answer-content strong {
    color: #60a5fa;
    font-weight: 600;
}

.answer-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.answer-content li {
    margin-bottom: 8px;
}

.answer-content li::marker {
    color: #60a5fa;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-section .section-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .question-text {
        font-size: 1rem;
        padding-right: 16px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-icon i {
        font-size: 10px;
    }
    
    .faq-item.active .faq-answer {
        padding: 16px 20px;
        max-height: 250px;
    }
    
    .answer-content {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 16px;
    }
    
    .faq-question {
        padding: 14px 16px;
    }
    
    .question-text {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 14px 16px;
    }
    
    .answer-content {
        font-size: 0.85rem;
    }
}

/* Testimonials grid responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
}