* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e74c3c;
    --secondary: #3498db;
    --accent: #f39c12;
    --accent-dark: #d35400;
    --accent-light: #f1c40f;
    --dark: #2c3e50;
    --darker: #1a252f;
    --light: #ecf0f1;
    --volcano-red: #e74c3c;
    --volcano-orange: #e67e22;
    --volcano-yellow: #f1c40f;
    --sky-blue: #3498db;
    --earth-brown: #8b4513;
    --forest-green: #27ae60;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    overflow-x: hidden;
    background-attachment: fixed;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Russo One', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
}

.volcano-bg {
    background: linear-gradient(45deg, var(--darker), var(--dark));
    position: relative;
    overflow: hidden;
}

.volcano-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(231, 76, 60, 0.2) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgba(243, 156, 18, 0.2) 0%, transparent 15%),
        radial-gradient(circle at 40% 90%, rgba(231, 126, 34, 0.2) 0%, transparent 20%);
    z-index: -1;
}

/* Шапка сайта */
header {
    background: 
        linear-gradient(rgba(26, 37, 47, 0.85), rgba(26, 37, 47, 0.95)),
        url('https://realkamchatka.com/images/cms/thumbs/dbcd8fe41cb8374241b970ff8e4655c8145ebf58/avachinskij_foto_1920_auto_jpg_5_80.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 20px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lava-flow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--volcano-red),
        var(--volcano-orange),
        var(--volcano-yellow),
        var(--volcano-orange),
        var(--volcano-red),
        transparent);
    opacity: 0.7;
    filter: blur(5px);
    animation: lavaFlow 8s infinite linear;
}

@keyframes lavaFlow {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-right: 10px;
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.logo-text {
    font-size: 2.2rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding: 8px 12px;
    border-radius: 30px;
}

.nav-links a:hover {
    color: var(--accent-light);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-light);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-links a:hover::after {
    width: 70%;
}

.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    z-index: 5;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to bottom, #fff, #f1c40f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
    color: #ecf0f1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s;
    animation: fadeInUp 1.4s ease-out;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.5);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.7);
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg);
    transition: all 0.6s;
}

.btn:hover::after {
    left: 120%;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(243, 156, 18, 0.7);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    to {
        transform: translateY(-100vh) rotate(360deg);
    }
}

/* Секции */
section {
    padding: 100px 5%;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--light);
    display: inline-block;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 1;
}

/* О компании */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

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

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

/* Туры */
.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.tour-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s;
    position: relative;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.tour-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--volcano-red), var(--volcano-orange));
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tour-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tour-content .tour-description {
    margin-bottom: 20px;
    color: #d5d8dc;
    min-height: 100px;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-description .short-text {
    display: block;
}

.tour-description .read-more {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-light);
    font-weight: bold;
    font-size: 0.9rem;
}

.tour-price {
    font-weight: bold;
    font-size: 1.4rem;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    display: block;
}

.tour-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.feature {
    display: flex;
    align-items: center;
    color: #bdc3c7;
}

.feature i {
    color: var(--accent);
    margin-right: 8px;
    font-size: 1.1rem;
}

.tour-content .btn {
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
    text-align: center;
}

/* Галерея */
.gallery-carousel {
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s;
    margin: 0 10px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Отзывы */
.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--accent);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author {
    font-weight: bold;
    color: var(--accent-light);
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-location {
    color: #bdc3c7;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    color: #ecf0f1;
    line-height: 1.8;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
    font-family: serif;
    line-height: 1;
}

.testimonial-date {
    color: #95a5a6;
    font-size: 0.9rem;
    text-align: right;
    margin-top: 15px;
}

/* Контакты */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-info p {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.4rem;
    width: 30px;
    text-align: center;
}

.contact-info .social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-info .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.contact-info .social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.5);
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form button {
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
    width: 100%;
    margin-top: 10px;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

/* Карта */
#map {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Подвал */
footer {
    background: linear-gradient(to bottom, #1a252f, #0d161e);
    color: white;
    padding: 60px 5% 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 8px 0;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--accent-light);
    font-size: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.5);
}

.copyright {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f8c8d;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.volcano-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: 
        linear-gradient(to top, transparent 10%, rgba(231, 76, 60, 0.2) 30%, rgba(231, 126, 34, 0.3) 50%, rgba(243, 156, 18, 0.2) 70%, transparent 90%);
    filter: blur(2px);
    z-index: 1;
}

/* Адаптивность */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--accent-light);
    z-index: 100;
}

/* Кнопка "Наверх" */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent), var(--accent-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.7);
}

/* Модальное окно для описания тура */
.tour-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    background: linear-gradient(135deg, #1a252f, #2c3e50);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 40px;
    border: 3px solid var(--accent);
    display: none;
}

.tour-modal.active {
    display: block;
    animation: modalAppear 0.5s ease-out;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.tour-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.tour-modal-header h3 {
    font-size: 1.8rem;
    color: var(--accent-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.close-modal {
    background: transparent;
    border: none;
    color: var(--accent-light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.tour-modal-content {
    color: #ecf0f1;
    line-height: 1.7;
    font-size: 1.1rem;
}

.tour-modal-content h4 {
    color: var(--accent-light);
    margin: 25px 0 15px;
    font-size: 1.4rem;
}

.tour-modal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.tour-modal-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.tour-modal-content li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    line-height: 1;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: none;
}

.modal-overlay.active {
    display: block;
    animation: overlayAppear 0.3s ease-out;
}

@keyframes overlayAppear {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Стили для каруселей */
.slick-prev:before, .slick-next:before {
    color: var(--accent);
    font-size: 30px;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

.slick-dots li button:before {
    color: var(--accent);
    opacity: 0.5;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: var(--accent);
    opacity: 1;
}

@media (max-width: 1100px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        background: var(--darker);
        width: 300px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        transition: right 0.4s ease-in-out;
        z-index: 90;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .tour-modal {
        padding: 25px;
    }
    
    .gallery-item {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 15px 35px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .tour-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .tour-modal {
        width: 95%;
        padding: 20px;
    }
    
    .tour-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .slick-prev:before, .slick-next:before {
        font-size: 20px;
    }
    
    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }
    
    .gallery-item {
        height: 250px;
    }
}