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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-secondary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .icon {
    transform: translateX(4px);
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

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

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Header */
.header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/batumi.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(16, 185, 129, 0.3));
    z-index: -1;
}

.header-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.header-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.header-title .highlight {
    color: #fbbf24;
    animation: pulse 2s infinite;
}

.header-subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: scroll-dot 2s infinite;
}

/* Trust Block */
.trust-block {
	background: linear-gradient(135deg, #f9fafbdb, #f3f4f6f2), url(img/map.jpg);
    background-size: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.stat-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scale(1.1);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #3b82f6;
}

.stat-label {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.4;
}

.countries-info {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.countries-info p {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 0;
}

/* Why Us */
.why-us {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #3b82f6;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Anonymity & Security */
.anonymity-security {
	background: linear-gradient(135deg, #f9fafbdb, #f3f4f6f2), url(img/mask.jpg);
    background-size: cover;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.security-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.security-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.security-card:hover .security-icon {
    background: linear-gradient(135deg, #ec4899, #f97316);
    transform: scale(1.1);
}

.security-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.security-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.security-card:hover .security-title {
    color: #6366f1;
}

.security-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Housing & Relocation */
.housing-relocation {
    background: white;
}

.housing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.housing-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.housing-feature {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.housing-feature:hover {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    transform: translateX(8px);
}

.housing-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.housing-feature:hover .housing-icon {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    transform: scale(1.1);
}

.housing-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.housing-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.housing-feature:hover .housing-text h3 {
    color: #3b82f6;
}

.housing-text p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.housing-image {
    position: relative;
}

.housing-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.housing-image:hover img {
    transform: scale(1.05);
}

/* Training & Support */
.training-support {
	background: linear-gradient(135deg, #fdf2f8cc, #fce7f3), url(img/graph.jpg);
    background-size: cover;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.training-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.training-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.training-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.training-card:hover .training-icon {
    background: linear-gradient(135deg, #ec4899, #f97316);
    transform: scale(1.1);
}

.training-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.training-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.training-card:hover .training-title {
    color: #8b5cf6;
}

.training-description {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Why Georgia */
.why-georgia {
    background: white;
}

.georgia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.georgia-image {
    position: relative;
    order: 1;
}

.georgia-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.georgia-image:hover img {
    transform: scale(1.05);
}

.georgia-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    order: 2;
}

.georgia-feature {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.georgia-feature:hover {
    background: linear-gradient(135deg, #fde68a, #fcd34d);
    transform: translateX(8px);
}

.georgia-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.georgia-feature:hover .georgia-icon {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    transform: scale(1.1);
}

.georgia-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.georgia-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.georgia-feature:hover .georgia-text h3 {
    color: #f59e0b;
}

.georgia-text p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Work Process */
.work-process {
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 64px;
    left: 64px;
    right: 64px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 2px;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.step-icon {
    width: 128px;
    height: 128px;
    background: white;
    border: 4px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    border-color: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.step:hover .step-icon svg {
    color: #8b5cf6;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-icon svg {
    width: 32px;
    height: 32px;
    color: #3b82f6;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.testimonial-earnings {
    background: white;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.earnings-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 4px;
}

.earnings-period {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonial-author {
    text-align: center;
}

.author-name {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.875rem;
    color: #6b7280;
}

.testimonials-disclaimer {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* FAQ */
.faq {
    background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #3b82f6;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #581c87, #3730a3);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.application-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.input-icon svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.form-group input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    color: #1f2937;
    background: white;
    transition: all 0.3s ease;
}

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

.form-group input:focus + .input-icon svg {
    color: #3b82f6;
}

.form-submit {
    width: 100%;
    margin-bottom: 16px;
}

.form-disclaimer {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.contact-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    color: white;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    width: 48px;
    height: 48px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-list li {
    margin-bottom: 8px;
    color: #d1d5db;
}

.footer-list a {
    color: #d1d5db;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.instagram-icon {
    color: #E4405F;
}

.telegram-icon {
    color: #0088CC;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer-disclaimer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.disclaimer-icon {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    color: #9ca3af;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes scroll-dot {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .housing-content,
    .georgia-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .georgia-image {
        order: 1;
    }
    
    .georgia-features {
        order: 2;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    
    .process-line {
        display: none;
    }
    
    .step {
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.25rem;
    }
    
    .stats-grid,
    .benefits-grid,
    .security-grid,
    .training-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 32px 24px;
    }
    
    .contact-status {
        flex-direction: column;
        gap: 16px;
    }
    
    .housing-feature,
    .georgia-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .housing-icon,
    .georgia-icon {
        margin-right: 0;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}
/* ===== Testimonials: screenshots row + mobile carousel ===== */
.testimonials { background: #ffffff; }

/* ��� ���������� ��� �������� */
.screens-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 16px;
}
.screens-row img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border: 1px solid #e5e7eb;
}

/* ��������� �������� (�� ��������� ������ �� ��������) */
.ts-carousel{ display: none; }

/* ���-�������� ����� scroll-snap */
.ts-track{
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 6px;
}
.ts-track::-webkit-scrollbar{ display: none; }

.ts-slide{
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.ts-slide img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border: 1px solid #e5e7eb;
}

/* ����� */
.ts-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.ts-dots button{
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer;
  background: #d1d5db; transition: transform .2s, background .2s;
}
.ts-dots button[aria-selected="true"]{
  background: #3b82f6; transform: scale(1.25);
}

/* ������������ �������: ���������/������� */
@media (max-width: 768px){
  .screens-row{ display: none; }
  .ts-carousel{ display: block; }
  .scroll-indicator{ display: none!important;}
}
