/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== ГЕРОЙ СЕКЦИЯ ===== */
.about-hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(220, 194, 170, 0.3) 0%, rgba(32, 31, 30, 0.7) 100%),
                url('../../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 240px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== СТАТИСТИКА ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    position: relative;
    z-index: 1;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.05);
    animation: fadeInUp 0.8s ease-out;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.stat-card:nth-child(2) { animation-delay: 0.3s; }
.stat-card:nth-child(3) { animation-delay: 0.4s; }
.stat-card:nth-child(4) { animation-delay: 0.5s; }

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== МИССИЯ И ВИДЕНИЕ ===== */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.mission-card, .vision-card {
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card {
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    color: white;
}

.vision-card {
    background: linear-gradient(135deg, #a4cd91 0%, #201f1e 100%);
    color: white;
}

.mission-card h2, .vision-card h2 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 20px;
    font-size: 2rem;
}

.mission-card h2::after, .vision-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.mission-card p, .vision-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== ОСНОВНОЙ КОНТЕНТ ===== */
.about-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.content-card {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.content-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 25px;
}

.content-text ul {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

.content-text li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.content-text li:last-child {
    border-bottom: none;
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== ФОТО КОМАНДЫ ===== */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

.team-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-photo-container {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    max-width: 900px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
}

.team-photo-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-photo-container:hover .team-photo-overlay {
    opacity: 1;
}

.zoom-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.team-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s;
}

.team-photo-container:hover .team-photo {
    transform: scale(1.05);
}

/* ===== СОТРУДНИКИ ===== */
.employees-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1s both;
}

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

.employees-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.employees-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.employees-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.employees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.employee-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeInUp 0.8s ease-out both;
}

.employee-card:nth-child(4n+1) { animation-delay: 0.1s; }
.employee-card:nth-child(4n+2) { animation-delay: 0.2s; }
.employee-card:nth-child(4n+3) { animation-delay: 0.3s; }
.employee-card:nth-child(4n+4) { animation-delay: 0.4s; }

.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

.employee-photo-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.employee-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
}

.employee-card:hover .employee-photo {
    transform: scale(1.05);
}

.employee-info {
    padding: 25px 20px;
    text-align: center;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.employee-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
}

.employee-position {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.employee-experience {
    font-size: 0.95rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 15px;
}

.employee-experience i {
    color: var(--primary-color);
    font-size: 1rem;
}

.employee-empty-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: var(--text-light);
    font-size: 1.2rem;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.employee-empty-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

/* ===== ФУТБОЛЬНАЯ КОМАНДА ===== */
.football-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

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

.football-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.football-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.football-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.football-photo-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    margin-bottom: 30px;
    transition: var(--transition);
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    aspect-ratio: 16 / 9;
}

.football-photo-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.football-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s;
    display: block;
}

.football-photo-container:hover .football-photo {
    transform: scale(1.05);
}

.football-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.football-photo-container:hover .football-photo-overlay {
    opacity: 1;
}

.football-zoom-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
    transform: scale(0.9);
}

.football-photo-container:hover .football-zoom-icon {
    transform: scale(1);
}

.football-description {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-top: 30px;
}

.football-description h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.football-description h3 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.football-description p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.football-empty-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: var(--text-light);
    font-size: 1.2rem;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.football-empty-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

/* ===== СЕРТИФИКАТЫ ===== */
.certificates-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

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

.certificates-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.certificates-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.certificate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

.certificate-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-content {
    padding: 30px;
}

.certificate-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.4;
}

.certificate-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.certificate-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.certificate-meta i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.certificate-description {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-top: 15px;
}

.certificate-images-count {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.certificate-images-count i {
    color: var(--primary-color);
}

/* ===== БЛАГОДАРСТВЕННЫЕ ПИСЬМА ===== */
.thankyou-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

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

.thankyou-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.thankyou-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.thankyou-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.thankyou-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.thankyou-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
    cursor: pointer;
}

.thankyou-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

.thankyou-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.thankyou-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.thankyou-card:hover .thankyou-overlay {
    opacity: 1;
}

.thankyou-content {
    padding: 25px;
    text-align: center;
}

.thankyou-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.thankyou-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.thankyou-date i {
    color: var(--primary-color);
}

.thankyou-images-count {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.thankyou-images-count i {
    color: var(--primary-color);
}

.thankyou-empty-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    color: var(--text-light);
    font-size: 1.2rem;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-empty-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}

/* ===== КОНТАКТНАЯ ИНФОРМАЦИЯ ===== */
.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

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

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

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

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(102, 126, 234, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== CTA СЕКЦИЯ ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #dcc2aa 0%, #201f1e 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 1.6s both;
    margin: 2px 0px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 194, 170, 0.3) 0%, rgba(32, 31, 30, 0.7) 100%),
                url('../../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding: 4px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-text {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.photo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2002;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.modal-close:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.2);
}

.modal-caption {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2001;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2002;
    backdrop-filter: blur(5px);
}

.modal-nav:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-prev {
    left: 20px;
}

.modal-nav-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 2002;
    backdrop-filter: blur(5px);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .about-hero h1 { font-size: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .employees-grid { grid-template-columns: repeat(3, 1fr); gap: 25px; }
}

@media (max-width: 992px) {
    .about-hero { padding: 140px 0 100px; padding-top: 200px; }
    .about-hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .mission-grid { grid-template-columns: 1fr; gap: 30px; }
    .mission-card, .vision-card { min-height: 300px; padding: 40px 30px; }
    .content-card { padding: 40px 30px; }
    .team-photo { height: 400px; }
    .certificates-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
    .employees-title { font-size: 2.2rem; }
    .employees-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .employee-name { font-size: 1.2rem; }
    .football-title { font-size: 2.2rem; }
    .thankyou-header h2 { font-size: 2.2rem; }
    .thankyou-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
}

@media (max-width: 768px) {
    .about-hero { padding: 120px 0 80px; padding-top: 180px; }
    .about-hero h1 { font-size: 2rem; padding: 0 20px; }
    .hero-subtitle { font-size: 1.1rem; padding: 0 20px; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .stat-card { padding: 30px 20px; }
    .stat-number { font-size: 2.5rem; }
    .content-title { font-size: 2rem; }
    .content-text { font-size: 1rem; }
    .team-title, .contact-header h2, .certificates-header h2 { font-size: 2rem; }
    .team-photo { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; gap: 25px; }
    .cta-title { font-size: 2.2rem; }
    .cta-text { font-size: 1.1rem; padding: 0 20px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .modal-close { top: 10px; right: 15px; width: 40px; height: 40px; font-size: 30px; }
    .employees-section { padding: 60px 0; }
    .employees-title { font-size: 2rem; }
    .employees-subtitle { font-size: 1.1rem; padding: 0 20px; }
    .employees-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .football-section { padding: 60px 0; }
    .football-title { font-size: 2rem; }
    .football-subtitle { font-size: 1rem; }
    .football-description { padding: 25px; }
    .football-description h3 { font-size: 1.4rem; }
    .football-description p { font-size: 1rem; }
    .modal-nav { width: 40px; height: 40px; font-size: 1.2rem; }
    .modal-nav-prev { left: 10px; }
    .modal-nav-next { right: 10px; }
    .modal-counter { top: 70px; left: 10px; font-size: 0.8rem; padding: 5px 12px; }
    .thankyou-section { padding: 60px 0; }
    .thankyou-header h2 { font-size: 2rem; }
    .thankyou-subtitle { font-size: 1rem; padding: 0 20px; }
}

@media (max-width: 576px) {
    .about-hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .mission-card h2, .vision-card h2 { font-size: 1.7rem; }
    .mission-card p, .vision-card p { font-size: 1rem; }
    .content-card { padding: 30px 20px; border-radius: 20px; }
    .content-title { font-size: 1.8rem; }
    .team-title { font-size: 1.8rem; }
    .team-photo { height: 250px; }
    .certificates-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.8rem; }
    .cta-buttons .btn { width: 100%; max-width: 280px; }
    .employees-grid { grid-template-columns: 1fr; max-width: 350px; }
    .employee-card { max-width: 300px; min-width: 300px; margin: 0 auto; }
    .employee-name { font-size: 1.2rem; }
    .football-section { padding: 50px 0; }
    .football-title { font-size: 1.8rem; }
    .football-subtitle { font-size: 0.95rem; }
    .football-description { padding: 20px; }
    .football-description h3 { font-size: 1.3rem; }
    .football-description p { font-size: 0.95rem; line-height: 1.6; }
    .football-zoom-icon { width: 40px; height: 40px; font-size: 1.1rem; }
    .thankyou-grid { grid-template-columns: 1fr; }
    .thankyou-header h2 { font-size: 1.8rem; }
}

@media (max-width: 400px) {
    .about-hero { padding-top: 160px; }
    .stat-card { padding: 25px 15px; }
    .contact-card { padding: 30px 20px; }
    .contact-icon { width: 70px; height: 70px; font-size: 2rem; }
    .mission-card, .vision-card { padding: 30px 20px; min-height: 250px; }
    .employees-title { font-size: 1.8rem; }
    .football-title { font-size: 1.6rem; }
}