/*о компании*/
.com-min-h-screen {
    min-height: 100vh;
}

.com-bg-white {
    background-color: #ffffff;
}

.all-tours-header p{
    font-size: 1.6rem;
}
.about-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 2rem 0;
    background: #000; /* Фолбэк фон */
}

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

.about-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 75vh;
}

.about-hero-text {
    color: white;
    max-width: 700px;
    margin-bottom: 3rem;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-description {
    font-size: 1.8rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Реестр ссылка */
.about-hero-registry-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 500px;
}

.about-hero-registry-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.about-hero-registry-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-registry-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.about-hero-registry-text {
    font-size: 1.6rem;
    line-height: 1.4;
    margin: 0;
}

.about-hero-registry-number {
    font-size: 1.4rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Анимации */
@keyframes aboutFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-element-animation {
    animation: aboutFadeInUp 0.8s ease-out forwards;
}

.about-text-typing {
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    animation: aboutTyping 3.5s steps(40, end), aboutBlinkCaret 0.75s step-end infinite;
}

@keyframes aboutTyping {
    from { width: 0 }
    to { width: 100% }
}

@keyframes aboutBlinkCaret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.7) }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 65vh;
    }

    .about-hero-title {
        font-size: 3.2rem;
    }

    .about-hero-content {
        min-height: 65vh;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 1.5rem 0;
    }

    .about-hero-content {
        min-height: 60vh;
        padding: 0 12px;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-hero-description {
        font-size: 1.6rem;
    }

    .about-hero-registry-link {
        //flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem;
        width: 100%;
        max-width: none;
    }

    .about-hero-registry-text {
        font-size: 1.4rem;
    }

    .about-hero-registry-number {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 55vh;
    }

    .about-hero-content {
        min-height: 55vh;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }

    .about-hero-description {
        font-size: 1.4rem;
    }

    .about-hero-registry-link {
        padding: 1rem;
    }
}


body.page-about .about-hero {
    isolation: isolate;
}


//Статические страницы

/* Hero Section */
.com-hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
    margin: 0;
}

.com-hero-background {
    position: absolute;
    inset: 0;
}

.com-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.com-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.com-hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 20px;
}

.com-hero-text {
    color: white;
    max-width: 70rem;
}

.com-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.com-text-teal-400 {
    color: #2dd4bf;
}

.com-hero-description {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.75;
    color: #e2e8f0;
}

.com-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.com-badge {
    padding: 1rem 1.2rem;
   font-size: 1.4rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border-bottom: 1px solid var(--teal-600);
}

.com-badge-primary {
     color: white;
}



.com-badge-secondary {

    color: white;
}



/* Statistics Section */


.com-container {
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}




/* Story Section */
.com-story-section {
    padding: 5rem 0;
}

.com-story-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .com-story-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.com-section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1e293b;
}

.com-story-text {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #374151;
    line-height: 1.75;
}

.com-rounded-image {
    width: 100%;
    height: 40rem;
    object-fit: cover;
    object-position: top;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Values Section */
.com-values-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.com-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.com-section-subtitle {
    font-size: 2rem;
    color: #475569;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.com-values-grid {
    display: grid;
    gap: 2rem;
}

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

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

.com-value-card {
    text-align: center;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    border-radius: 0.5rem;
    background-color: white;
}

.com-value-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.com-value-icon-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem;
}

.com-value-icon-wrapper {
    width: 8rem;
    height: 8rem;
    background-color: var(--slate-100);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.com-value-icon {
    width: 4rem;
    height: 4rem;
    color: var(--slate-600);
}

.com-value-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1e293b;
}

.com-value-description {
    font-size: 1.5rem;
    color: #475569;
    line-height: 1.75;
    padding:  1.2rem 2.5rem;
}




/* Mission Section */
.com-mission-section {
    padding: 5rem 0;
    background-color: #1e293b;
    color: white;
}

.com-mission-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .com-mission-grid {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

.com-mission-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.com-mission-text {
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: #cbd5e1;
    line-height: 1.75;
}

/* CTA Section */
.com-cta-section {
    padding: 5rem 0;
    background-color: var(--slate-700);
}

.com-cta-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.com-cta-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: white;
}

.com-cta-description {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.com-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .com-cta-buttons {
        flex-direction: row;
    }
}

.com-cta-button {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.com-cta-button.com-primary {
    background-color: white;
    color: var(--slate-700);
    border: none;
    font-size: 1.5rem;
}

.com-cta-button.com-primary:hover {
    background-color: #f1f5f9;
}

.com-cta-button.com-secondary {
    border: 2px solid white;
    color: white;
    background-color: transparent;
    font-size: 1.5rem;
}

.com-cta-button.com-secondary:hover {
    background-color: white;
    color: var(--slate-700);
}


/*Контакты*/
.con-min-h-screen {
    min-height: 100vh;
}

.con-bg-white {
    background-color: #ffffff;
}

.con-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 1.5rem;
}

/* Hero Section */
.con-hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.con-hero-background {
    position: absolute;
    inset: 0;
}

.con-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.con-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.con-hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 128rem;
    margin: 0 auto;
    padding: 0 20px;}

.con-hero-text {
    color: white;
    max-width: 70rem;
}

.con-hero-title {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.con-hero-description {
    font-size: 2rem;
    margin-bottom: 2rem;
    line-height: 1.75;
    color: #e2e8f0;
}

.con-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.con-badge {
    padding: 0.5rem 1rem;
 border-bottom: 1px solid var(--teal-600);
    font-size: 1.4rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.con-badge-primary {

    color: white;
}

.con-badge-secondary {
      color: white;
}


/* Contact Methods Section */
.con-contact-methods-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.con-contact-methods-grid {
    display: grid;
    gap: 2rem;
}

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

.con-contact-method-card {
    text-align: center;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    border-radius: 0.5rem;
    background-color: white;
    padding: 2rem;
}

.con-contact-method-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.con-contact-method-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.con-contact-method-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: var(--slate-700);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.con-contact-method-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.con-contact-method-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1e293b;
}

.con-contact-method-primary {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.con-contact-method-secondary {
    color: #475569;
    margin-bottom: 0.75rem;
}

.con-contact-method-description {
    font-size: 1.2rem;
    color: #64748b;
}

/* Contact Form Section */
.con-contact-form-section {
    padding: 5rem 0;
    font-size: 1.5rem;
}

.con-contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .con-contact-grid {
        grid-template-columns: 1fr;
    }
}

.con-section-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #1e293b;
}

.con-section-subtitle {
    color: #475569;
    margin-bottom: 2rem;
}

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

.con-form-row {
    display: grid;
    gap: 1rem;
}

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

.con-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.con-form-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
}

.con-form-input,
.con-form-select,
.con-form-textarea {
    padding: 1rem 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.con-form-input:focus,
.con-form-select:focus,
.con-form-textarea:focus {
    outline: none;
    border-color: var(--slate-700);
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.2);
}

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

.con-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2rem;
    background-color: var(--slate-700);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background-color 0.2s;
    cursor: pointer;
}

.con-submit-button:hover {
    background-color: #0f766e;
}

.con-submit-button:disabled {
    background-color: #0f766e;
    cursor: not-allowed;
}

.con-button-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.con-form-disclaimer {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
}

/* Contact Info */
.con-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.con-info-title {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1e293b;
}

.con-map-container {
    margin-bottom: 1rem;
}

.con-map-placeholder {
    height: 16rem;
    background-color: #e2e8f0;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.con-map-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
}

.con-map-address {
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.con-transport-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.con-transport-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.con-transport-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--slate-700);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.con-transport-title {
    font-weight: 500;
    color: #1e293b;
}

.con-transport-desc {
    color: #475569;
}

/* Offices Section */
.con-offices-section {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.con-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.con-offices-grid {
    display: grid;
    gap: 2rem;
}

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

.con-office-card {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    border-radius: 0.5rem;
    background-color: white;
    padding: 1.5rem;
}

.con-office-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.con-office-main {
    border: 2px solid var(--slate-700);
}

.con-office-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.con-office-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1e293b;
}

.con-office-badge {
    background-color: var(--slate-700);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.con-office-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.con-office-info {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.con-office-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--slate-700);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.con-office-phone {
    font-weight: 500;
    color: #1e293b;
}

.con-office-desc {
    font-size: 1.2rem;
    color: #64748b;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 0.5rem;
}

/* FAQ Section */
.con-faq-section {
    padding: 5rem 0;
}

.con-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.con-faq-item {
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: 0.5rem;
    background-color: white;
    padding: 1.5rem;
}

.con-faq-question {
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.con-faq-answer {
    color: #475569;
}

/* CTA Section */
.con-cta-section {
    padding: 5rem 0;
    background-color: var(--slate-700);
}

.con-cta-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
}

.con-cta-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: white;
}

.con-cta-description {
    font-size: 1.8rem;
    color: #99f6e4;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.con-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .con-cta-buttons {
        flex-direction: row;
    }
}

.con-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 1.2rem;
    cursor: pointer;
}

.con-cta-primary {
    background-color: white;
    color: var(--slate-700);
    border: none;
}

.con-cta-primary:hover {
    background-color: #f1f5f9;
}

.con-cta-secondary {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.con-cta-secondary:hover {
    background-color: white;
    color: var(--slate-700);
}

.con-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

/*события*/

.eve-min-h-screen {
    min-height: 100vh;
}

.eve-bg-white {
    background-color: #ffffff;
}

.eve-container {
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Hero Section */
.eve-hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.eve-hero-background {
    position: absolute;
    inset: 0;
}

.eve-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eve-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.eve-hero-content {
    position: relative;
    z-index: 10;
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.eve-hero-text {
    color: white;
    max-width: 72rem;
}

.eve-hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2.4rem;
    line-height: 1.2;
}

.eve-text-teal-400 {
    color: #2dd4bf;
}

.eve-hero-description {
    font-size: 2rem;
    margin-bottom: 3.2rem;
    line-height: 1.75;
    color: #e2e8f0;
}

.eve-badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.eve-badge {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--slate-700);
}

.eve-badge-icon {
    width: 1.6rem;
    height: 1.6rem;
}

.eve-badge-primary {

    color: white;
}

.eve-badge-secondary {

    color: white;
}

.eve-badge-white {
    background-color: rgba(255, 255, 255, 0.9);
    color: #1f2937;
}


/* Section Header */
.eve-section-header {
    text-align: center;
    margin-bottom: 6.4rem;
}

.eve-section-title {
    font-size: 3.6rem;
    font-weight: 300;
    margin-bottom: 2.4rem;
    color: #1f2937;
}

.eve-section-subtitle {
    font-size: 2rem;
    color: #4b5563;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Section */
.eve-featured-section {
    padding: 2rem 0;
}

.eve-featured-grid {
    display: grid;
    gap: 3.2rem;
    margin-bottom: 6.4rem;
}

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

.eve-featured-card {
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    background-color: white;
    overflow: hidden;
}

.eve-featured-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.eve-card-image-container {
    position: relative;
}

.eve-card-image {
    width: 100%;
    height: 38.4rem;
    object-fit: cover;
}



.eve-card-access {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
}

.eve-card-content {
    padding: 2.4rem;
}

.eve-card-title {
    font-size: 2.4rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 1.6rem;
    line-height: 1.3;
}

.eve-card-description {
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 2.4rem;
}

.eve-event-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.4rem;
}

.eve-event-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: #4b5563;
}

.eve-detail-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: var(--slate-700);
    flex-shrink: 0;
}

.eve-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.4rem;
    border-top: 1px solid #e5e7eb;
}

.eve-footer-text {
    font-size: 1.4rem;
    color: #6b7280;
}

.eve-footer-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--slate-700);
    border-radius: 0.6rem;
    color: var(--slate-700);
    background-color: transparent;
    font-size: 1.4rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

.eve-footer-btn:hover {
    background-color: #f0fdfa;
}

.eve-btn-icon {
    width: 1.6rem;
    height: 1.6rem;
}



.eve-event-card .eve-card-image {
    height: 25.6rem;
}

.eve-event-card .eve-card-content {
    padding: 1.6rem;
}

.eve-event-card .eve-card-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.eve-event-card .eve-card-description {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eve-event-card .eve-event-details {
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.eve-event-card .eve-event-detail {
    font-size: 1.2rem;
}

.eve-event-card .eve-card-footer {
    padding-top: 1.6rem;
}
/*отзывы*/

.rev-container {
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;

}

/* Hero Section */
.rev-hero-section {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

.rev-hero-background {
    position: absolute;
    inset: 0;
}

.rev-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rev-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
}

.rev-hero-content {
    position: relative;
    z-index: 10;
    max-width: 128rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.rev-hero-text {
    color: white;
    max-width: 70rem;
}



.rev-stars {
    display: flex;
    gap: 0.4rem;
}

.rev-star {
    color: #c5c5c5;
    fill:#c5c5c5;
    width: 1.6rem;
    height: 1.6rem;
}

.rev-star-filled {
    color: #fbbf24;
    fill: currentColor;
}








.rev-stat-icon-teal .rev-stat-icon {
    color: var(--slate-700);
}

.rev-stat-icon-yellow .rev-stat-icon {
    color: #d97706;
}

.rev-stat-icon-green .rev-stat-icon {
    color: #16a34a;
}

.rev-stat-icon-purple .rev-stat-icon {
    color: #9333ea;
}



/* Section Header */
.rev-section-header {
    text-align: center;
    margin-bottom: 6.4rem;
}

.rev-section-title {
    font-size: 3.6rem;
    font-weight: 200;
    color: #1f2937;
    margin-bottom: 2.4rem;
}

.rev-section-subtitle {
    font-size: 2rem;
    color: #6b7280;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Featured Section */
.rev-featured-section {
    padding: 8rem 0;
    background-color: #f8fafc;
}

//.rev-featured-reviews {
//    display: flex;
//    flex-direction: column;
//    gap: 3.2rem;
//}

.rev-featured-card {
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    overflow: hidden;
    background-color: white;
}

.rev-featured-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rev-card-gradient {
    background: linear-gradient(to right, #f0fdfa, #e0f2fe);
    padding: 0.2rem;
}

.rev-card-header {
    background-color: white;
    padding: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.rev-reviewer-info {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
}

.rev-reviewer-avatar {
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.rev-avatar-teal {
    background: linear-gradient(to bottom right, #ccfbf1, #99f6e4);
    color: var(--slate-700);
}

.rev-avatar-blue {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}



.rev-reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rev-reviewer-name {
    font-size: 2rem;
    font-weight: 500;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.rev-verified-icon {
    width: 2rem;
    height: 2rem;
    color: #10b981;
}

.rev-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    color: #6b7280;
}

.rev-meta-icon {
    width: 1.6rem;
    height: 1.6rem;
}

.rev-meta-separator {
    color: #d1d5db;
}

.rev-review-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.2rem;
}

.rev-featured-badge {
    background-color: #dc2626;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
}



.rev-tour-badge {
    background-color: #f1f5f9;
    color: var(--slate-700);
    padding: 0.8rem 1.2rem;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
    display: inline-block;
}

.rev-review-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 1.6rem;
}

.rev-review-text {
    cursor:pointer;
    height: 132px;
    overflow: hidden;
    background-color: white;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.75;
}
.rev-review-text.active{
    position: relative;
    z-index: 10000;
    display: block;
    min-height: 132px;
    height: auto;
}

.rev-review-photos {
    margin-bottom: 2.4rem;
}

.rev-photo-container {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
}

.rev-review-photo {
    width: 100%;
    height: 38.4rem;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.rev-photo-overlay {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rev-photo-icon {
    width: 1.6rem;
    height: 1.6rem;
    color: white;
}

.rev-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.4rem;
    border-top: 1px solid #e5e7eb;
}

.rev-review-actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.rev-likes {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.4rem;
    color: #6b7280;
}

.rev-like-icon {
    width: 1.6rem;
    height: 1.6rem;
}

.rev-verified-badge {
    border: 1px solid #10b981;
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 0.4rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.rev-reply-btn {
    background: none;
    border: none;
    color: var(--slate-700);
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
}

.rev-reply-btn:hover {
    color: #0f766e;
}







.rev-review-card .rev-review-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.rev-review-card .rev-review-text {
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rev-review-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.6rem;
    border-top: 1px solid #f3f4f6;
}

.rev-review-card .rev-likes {
    font-size: 1.2rem;
}



/* Form Section */
.rev-form-section {
    padding: 8rem 0;
    background-color: #f8fafc;
}

.rev-form-card {
    background-color: white;
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    padding: 3.2rem;
}

.rev-review-form {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.rev-form-row {
    display: grid;
    gap: 2.4rem;
}

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

.rev-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.rev-form-label {
    font-size: 1.4rem;
    font-weight: 500;
    color: #374151;
}

.rev-form-input,
.rev-form-select,
.rev-form-textarea {
    padding: 1.2rem 1.6rem;
    border: 1px solid #d1d5db;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    transition: all 0.2s;
    background-color: white;
}

.rev-form-input:focus,
.rev-form-select:focus,
.rev-form-textarea:focus {
    outline: none;
    border-color: var(--slate-700);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.rev-form-textarea {
    resize: vertical;
    min-height: 19.2rem;
}

.rev-rating-input {
    display: flex;
    gap: 0.8rem;
}

.rev-star-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
}

.rev-star-btn:hover {
    transform: scale(1.1);
}

.rev-star-large {
    width: 4rem;
    height: 4rem;
}

.rev-star-active .rev-star-large {
    color: #b8b8b8;
    fill: currentColor;
}
.yellow{
    color: #fbbf24!important;
}

.rev-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.6rem 2.4rem;
    background-color: var(--slate-700);
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 500;
    transition: all 0.2s;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

//.rev-submit-btn:hover {
//    background-color: #0f766e;
//    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
//}

.rev-submit-btn:disabled {
    background-color: #0f766e;
    cursor: not-allowed;
}

.rev-submit-icon {
    width: 2.4rem;
    height: 2.4rem;
}

.rev-form-disclaimer {
    font-size: 1.4rem;
    color: #6b7280;
    line-height: 1.5;
}

