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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background-color: #0f172a;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    min-height: 70px;
}

.logo h2 {
    color: #f8fafc;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
}

.nav-list a:hover,
.nav-list a.active {
    color: #3b82f6;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 8px;
    padding: 0.25rem;
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #cbd5e1;
    font-size: 0.875rem;
}

.lang-btn.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #cbd5e1;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    color: #cbd5e1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    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.1), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 70px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.125rem;
    opacity: 0.9;
    color: #cbd5e1;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-preview,
.services-detail {
    padding: 100px 0;
    background: #0f172a;
}

.services-preview h2,
.services-detail h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f8fafc;
    margin-bottom: 4rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card,
.service-detail-card {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(51, 65, 85, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover,
.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.1) inset;
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-detail-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.service-card h3,
.service-detail-card h2 {
    color: #f8fafc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(3px);
}

/* Service Detail Cards */
.service-detail-card {
    text-align: left;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 2rem;
    transition: color 0.3s ease;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.service-features li:hover {
    color: #f8fafc;
}

/* Advantages Section */
.advantages {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    padding: 100px 0;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #f8fafc;
    margin-bottom: 4rem;
    font-weight: 700;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.advantage-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.advantage-item:hover {
    transform: translateY(-5px);
    background: rgba(51, 65, 85, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.advantage-item h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #0f172a;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.service-form h2 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    backdrop-filter: blur(10px);
}

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

.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);
    background: rgba(15, 23, 42, 0.9);
}

.form-group select[multiple] {
    height: auto;
    min-height: 120px;
}

.form-group select option {
    background: #1e293b;
    color: #f8fafc;
    padding: 0.5rem;
}

.service-form .btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #0f172a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.contact-details h3 {
    color: #f8fafc;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details span {
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Contact Links */
.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.contact-link:hover {
    color: #1d4ed8;
    transform: translateX(2px);
}

.working-hours {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.working-hours h3 {
    color: #f8fafc;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.working-hours p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.working-hours ul {
    list-style: none;
}

.working-hours li {
    color: #cbd5e1;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.working-hours li:last-child {
    border-bottom: none;
}

.contact-form-container {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
    border: 1px solid rgba(51, 65, 85, 0.3);
}

/* AML/CTF Section */
.aml-section {
    padding: 80px 0;
    background: #0f172a;
}

.aml-content {
    max-width: 1000px;
    margin: 0 auto;
}

.aml-block {
    background: linear-gradient(145deg, #1e293b 0%, #334155 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.aml-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.aml-block h2 {
    color: #f8fafc;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.aml-block p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.agreement-section {
    margin-bottom: 2.5rem;
}

.agreement-section h3 {
    color: #f8fafc;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.agreement-section ul {
    list-style: none;
    margin-left: 0;
}

.agreement-section li {
    color: #cbd5e1;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(51, 65, 85, 0.2);
}

.agreement-section li:last-child {
    border-bottom: none;
}

.agreement-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Documents Grid */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.document-item {
    background: rgba(51, 65, 85, 0.3);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.document-item:hover {
    transform: translateY(-5px);
    background: rgba(51, 65, 85, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.document-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.document-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.document-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(51, 65, 85, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.step-content h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* AML Contacts */
.aml-contacts {
    margin-top: 2rem;
}

.aml-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(51, 65, 85, 0.3);
    transition: all 0.3s ease;
}

.aml-contact-item:hover {
    background: rgba(51, 65, 85, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.aml-contact-item i {
    color: #3b82f6;
    font-size: 1.25rem;
    width: 24px;
}

.aml-contact-item span {
    color: #cbd5e1;
    font-weight: 500;
}

/* AML Notice */
.aml-notice {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.notice-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.notice-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.notice-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-info p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
    color: #f8fafc;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #3b82f6;
    transform: translateX(3px);
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    width: 20px;
    color: #3b82f6;
}

/* Footer Links */
.footer-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
}

/* Success/Error Messages */
.success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.error-message {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
    display: none;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-content {
        gap: 3rem;
    }

    .nav-list {
        gap: 1rem;
    }

    .documents-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-content {
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }

    .nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        background: rgba(30, 41, 59, 0.95);
        border-radius: 12px;
        padding: 1rem;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(51, 65, 85, 0.3);
    }

    .nav-list a {
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        background: rgba(59, 130, 246, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .services-preview,
    .services-detail,
    .advantages {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .aml-block {
        padding: 2rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .aml-notice {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .aml-contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header {
        padding: 100px 0 50px;
    }

    .page-header h1 {
        font-size: 1.875rem;
    }

    .services-preview,
    .services-detail,
    .advantages {
        padding: 60px 0;
    }

    .form-section {
        padding: 60px 0;
    }

    .form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .service-form h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card,
    .service-detail-card {
        padding: 2rem;
    }

    .advantage-item {
        padding: 2rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .working-hours {
        padding: 2rem;
    }

    .lang-switcher {
        gap: 0.125rem;
        padding: 0.125rem;
    }

    .lang-btn {
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }

    .aml-section {
        padding: 60px 0;
    }

    .aml-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .aml-block h2 {
        font-size: 1.5rem;
    }

    .agreement-section h3 {
        font-size: 1.1rem;
    }

    .document-item {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .aml-notice {
        padding: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.6s ease;
}

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .service-card,
    .service-detail-card,
    .advantage-item,
    .contact-method,
    .form-container,
    .contact-form-container,
    .working-hours,
    .aml-block,
    .document-item,
    .process-step {
        border: 2px solid #3b82f6;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}