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

:root {
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-orange-50: #fff7ed;
    --color-orange-100: #ffedd5;
    --color-orange-200: #fed7aa;
    --color-orange-400: #fb923c;
    --color-orange-500: #f97316;
    --color-orange-600: #ea580c;
    --color-orange-700: #c2410c;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-green-500: #10b981;
    --color-green-600: #059669;
    --color-blue-500: #3b82f6;
    --color-blue-600: #2563eb;
    --color-blue-700: #1d4ed8;
    --spacing: 0.25rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.5;
    color: #111827;
    background: #fff;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.logo-text {
    color: var(--color-gray-900);
    font-weight: 500;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.desktop-menu {
    display: none;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

.nav-link {
    color: var(--color-gray-700);
    transition: color 0.2s;
    padding: 0.5rem 0;
    text-align: left;
}

.nav-link:hover {
    color: var(--color-red-600);
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.language-toggle:hover {
    background-color: var(--color-gray-100);
}

.language-toggle span {
    text-transform: uppercase;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.mobile-menu-btn:hover {
    background-color: var(--color-gray-100);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    position: relative;
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--color-gray-200);
}

.mobile-menu.open {
    display: flex;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 6rem 1rem 4rem;
    max-width: 48rem;
    width: 100%;
}

.hero-title {
    color: white;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-highlight {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-highlight .amount {
    color: var(--color-red-500);
    font-weight: 600;
    white-space: nowrap;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-red-500), var(--color-orange-600));
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--color-red-600), var(--color-orange-700));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.stat-icon {
    color: var(--color-orange-400);
}

.stat-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Jobs Section */
.jobs-section {
    padding: 5rem 0;
    background-color: var(--color-gray-50);
}

.section-header {
    text-center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.search-filter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    width: 1.25rem;
    height: 1.25rem;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-orange-500);
}

.filter-select {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .search-filter {
        flex-direction: row;
    }
    .filter-select {
        width: 12rem;
    }
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.job-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.job-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.job-card:hover .job-image img {
    transform: scale(1.1);
}

.job-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.job-image-content {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.job-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-company {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.job-content {
    padding: 1.5rem;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.job-tag {
    padding: 0.25rem 0.75rem;
    background: var(--color-orange-50);
    color: var(--color-orange-700);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-details {
    margin-bottom: 1.5rem;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.job-detail svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-red-500);
}

.btn-block {
    width: 100%;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-card-wrapper {
    position: relative;
}

.about-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 1rem;
    transform: rotate(1deg);
}

.about-card-bg.alt {
    background: linear-gradient(135deg, var(--color-orange-500), var(--color-red-600));
    transform: rotate(-1deg);
}

.about-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.about-card h3 {
    color: var(--color-gray-900);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--color-gray-600);
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--color-red-50), var(--color-orange-50));
    transition: box-shadow 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.value-card h4 {
    color: var(--color-gray-900);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--color-gray-600);
    font-size: 0.875rem;
}

.team-photo {
    margin-top: 4rem;
    height: 24rem;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    display: flex;
    align-items: flex-end;
}

.team-photo-content {
    padding: 2rem;
    color: white;
}

.team-photo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-photo-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--color-gray-50), white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    cursor: pointer;
}

.testimonial-image {
    position: relative;
    height: 16rem;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.testimonial-image-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.testimonial-name {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.testimonial-quote-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    color: var(--color-orange-200);
}

.testimonial-quote {
    color: var(--color-gray-700);
    font-style: italic;
    position: relative;
    z-index: 10;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-red-50), var(--color-orange-50));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-card.hours {
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card.hours h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-card.hours p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

.contact-card.telegram {
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.telegram-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.telegram-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-blue-500), var(--color-blue-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.telegram-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.telegram-content h3 {
    color: var(--color-gray-900);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.telegram-content p {
    color: var(--color-gray-600);
}

.btn-telegram {
    background: linear-gradient(90deg, var(--color-blue-500), var(--color-blue-600));
    color: white;
}

.btn-telegram:hover {
    background: linear-gradient(90deg, var(--color-blue-600), var(--color-blue-700));
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: white;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-text {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

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

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

.footer-links button,
.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links button:hover,
.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
}

.footer-bottom {
    border-top: 1px solid var(--color-gray-800);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-400);
    font-size: 0.875rem;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

.toast.success {
    border-left: 4px solid var(--color-green-500);
}

.toast.error {
    border-left: 4px solid var(--color-red-500);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Job Selection Page */
.job-selection-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--color-gray-50), white);
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.back-button {
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.back-button:hover {
    background-color: var(--color-gray-100);
}

.job-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .job-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .job-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.selection-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.selection-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.selection-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.selection-card:hover .selection-image img {
    transform: scale(1.1);
}

.selection-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.3), transparent);
}

.selection-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.selection-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.selection-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.selection-content {
    padding: 1.5rem;
}

.selection-description {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.selection-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.selection-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--color-gray-700);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.selection-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background: var(--color-orange-500);
    border-radius: 50%;
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.info-box {
    margin-top: 4rem;
    background: linear-gradient(90deg, var(--color-red-50), var(--color-orange-50));
    border-radius: 1rem;
    padding: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.info-box h3 {
    color: var(--color-gray-900);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.info-box p {
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
}

.btn-outline {
    border: 2px solid var(--color-red-500);
    color: var(--color-red-600);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-red-50);
}

/* CS Selection Page */
.cs-selection-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--color-gray-50), white);
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.cs-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .cs-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.cs-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cs-card:not(.disabled):hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--color-orange-500);
    cursor: pointer;
}

.cs-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: var(--color-gray-50);
}

.cs-avatar {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--color-red-500), var(--color-orange-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cs-card.disabled .cs-avatar {
    background: var(--color-gray-400);
}

.cs-avatar svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.cs-name {
    color: var(--color-gray-900);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cs-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-dot.available {
    background: var(--color-green-500);
}

.status-dot.busy {
    background: var(--color-red-500);
}

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

.status-text {
    font-size: 0.875rem;
}

.status-text.available {
    color: var(--color-green-600);
}

.status-text.busy {
    color: var(--color-red-600);
}

.cs-card .btn {
    width: 100%;
}

.btn:disabled {
    background: var(--color-gray-400);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Application Form Page */
.app-form-page {
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--color-gray-50), white);
    padding-top: 6rem;
    padding-bottom: 5rem;
}

.form-container {
    max-width: 42rem;
    margin: 0 auto;
}

.info-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .info-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-box-small {
    background: linear-gradient(90deg, var(--color-red-50), var(--color-orange-50));
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.info-box-small p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: 0.25rem;
}

.info-box-small strong {
    color: var(--color-gray-900);
}

.form-card {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-help {
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-top: 0.25rem;
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-500);
}

.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Media Queries */
@media (min-width: 640px) {
    .hero-content {
        padding: 8rem 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-highlight {
        font-size: 1.125rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-cta {
        justify-content: flex-start;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.875rem;
    }
    .stat-item {
        text-align: left;
    }
    .stat-header {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-highlight {
        font-size: 1.25rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

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

