:root {
    --primary-color: #f26522;
    --secondary-color: #ff6b00;
    --accent-color: #ff8c42;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #f8f5f2;
    --bg-card: #ffffff;
    --bg-elevated: #f0ebe7;
    --border-dim: #e0ddd9;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #94510e;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.705);
    backdrop-filter: blur(5px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    flex-wrap: wrap;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.hero {
    position: relative;
    height: 100vh;
    max-height: 1080px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/hero1.png');
    background-color: #1a1a2e;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.274);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInUp 1s ease forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    z-index: 100;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-indicator:hover {
    color: var(--secondary-color);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(242, 101, 34, 0.4);
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

.hero .btn {
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

.about {
    padding: 5rem 10%;
    background: #f8f5f2;
    border-bottom: 1px solid rgba(242, 101, 34, 0.15);
    border-top: 1px solid rgba(242, 101, 34, 0.15);
}

.about-container {
    background: #012901ea;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px dashed rgba(242, 101, 34, 0.4);
}

.about-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #ebebeb;
}

.about-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    text-align: center;
}

.features {
    padding: 5rem 10%;
    background: #f8f5f2;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.3s;
    border: 1px solid rgba(242, 101, 34, 0.15);
    transition: transform 0.4s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #ede3d4;
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(242, 101, 34, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.promo-banner {
    background:  #012901ea ;
    border: 2px solid #ffd966;
    border-radius: 30px;
    padding: 1.2rem;
    margin: 2rem auto 0;
    max-width: 700px;
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.4);
}

.gallery {
    padding: 5rem 5%;
    background: #fdf6f0;
}

/* Gallery Wrapper - 3 rows x 3 columns */
.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-btn-nav {
    background: rgba(242, 101, 34, 0.85);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.gallery-btn-nav:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 1000px;
    min-height: 660px;
}

.gallery-grid .gallery-item {
    height: 210px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

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

.gallery-grid .gallery-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

.gallery-pages {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.gallery-dot:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        min-height: 450px;
    }
    .gallery-grid .gallery-item {
        height: 140px;
    }
    .gallery-btn-nav {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .gallery-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .gallery-btn-nav {
        width: 40px;
        height: 40px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        min-height: 350px;
    }
    .gallery-grid .gallery-item {
        height: 110px;
    }
}

/* Lightbox */
.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-img {
    max-width: 95%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(242, 101, 34, 0.9);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    color: white;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 8px;
}

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

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 900px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 12px;
    }
    .masonry-item.wide {
        grid-column: span 2;
    }
    .masonry-item.tall {
        grid-row: span 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
        gap: 10px;
    }
    .masonry-item.wide {
        grid-column: span 2;
    }
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    .lightbox-nav.prev { left: 10px; }
    .lightbox-nav.next { right: 10px; }
    .lightbox-img {
        max-width: 98%;
    }
}

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

.pricing {
    padding: 5rem 10%;
    background: #faf3eb;
    text-align: center;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.price-card {
    background: var(--bg-card);
    padding: 2rem 1.5rem;
    border-radius: 28px;
    width: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.price-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    background: #ede3d4;
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.price-card h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.price span {
    font-size: 1rem;
    font-weight: 900;
    color: #000;
    margin-left: 2px;
}

.price-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.price-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact {
    padding: 3rem 10%;
    background: #f8f5f2;
    border-top: 1px solid rgba(242, 101, 34, 0.1);
    border-bottom: 1px solid rgba(242, 101, 34, 0.1);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-dim);
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.7rem;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    color: #3d2814;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.contact-text p {
    color: #5a4030;
    font-size: 0.8rem;
}

.contact-text a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #3d2814;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #ffffff;
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    color: #3d2814;
    font-family: inherit;
    font-size: 1rem;
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.available-info {
    margin-top: 3px;
    font-size: 0.75rem;
    color: var(--primary-color);
}

.available-info.error {
    color: #EF4444;
}

.available-info.success {
    color: #10B981;
}

small {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    color: #8b7355;
}

.map-section {
    padding: 4rem 10%;
    background: #f8f5f2;
    text-align: center;
    border-top: 1px solid #e0ddd9;
    border-bottom: 1px solid #e0ddd9;
}

.map-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0ddd9;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.map-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.route-info {
    margin-bottom: 1.5rem;
}

.route-time {
    font-size: 1rem;
    color: #8b7355;
    font-weight: 500;
}

.route-list {
    max-width: 800px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.route-list.visible {
    opacity: 1;
    transform: translateY(0);
}

.route-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0ddd9;
    transition: all 0.3s;
    font-size: 0.85rem;
}

.route-item.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
}

.route-item.active small {
    color: rgba(255,255,255,0.8);
}

.route-num {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

.route-item.active .route-num {
    background: white;
    color: var(--primary-color);
}

.route-text {
    flex: 1;
}

.route-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
}

.faq {
    padding: 4rem 10%;
    background: #f8f5f2;
    border-top: 1px solid #e0ddd9;
    border-bottom: 1px solid #e0ddd9;
}

.faq h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0ddd9;
}

.faq-question {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(242, 101, 34, 0.1);
}

.faq-question::after {
    content: "+";
    font-size: 1.2rem;
    transition: transform 0.3s;
    color: var(--primary-color);
    font-weight: 400;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    color: #666666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--primary-color);
}

footer {
    background: rgba(255, 255, 255, 0.705);
    padding: 1rem 10%;
    text-align: center;
    color: #554b3f;
}

.social-links {
    margin: 1rem 0;
}

.social-links a {
    color: #774411;
    margin: 0 12px;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
    }
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('image/hero1.png') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .nav-links {
        justify-content: center;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .price-card {
        width: 100%;
        max-width: 320px;
    }
    .price-card.popular {
        transform: scale(1);
    }
    .contact-form {
        padding: 1.5rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1rem;
    }
    .about-container {
        padding: 1.2rem;
    }
    .price {
        font-size: 2rem;
    }
    .map-container iframe {
        height: 280px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .pricing-cards {
        gap: 1rem;
    }
    .features-grid {
        gap: 1rem;
    }
    .gallery-grid {
        gap: 1rem;
    }
}

/* Мобильная адаптация (очень маленькие экраны) */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 5%;
        flex-direction: column;
        gap: 0.5rem;
    }
    .logo {
        font-size: 1.4rem;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    .hero h1 {
        font-size: 1.8rem;
        gap: 8px;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    .scroll-indicator {
        bottom: 25px;
        font-size: 0.85rem;
    }
    .scroll-indicator svg {
        width: 28px;
        height: 28px;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .about, .features, .gallery, .pricing, .contact, .map-section, .faq {
        padding: 2.5rem 5%;
    }
    .about-container {
        padding: 1rem;
        border-radius: 15px;
    }
    .feature-card {
        padding: 1.2rem;
        border-radius: 15px;
    }
    .promo-banner {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .price-card {
        padding: 1.2rem;
    }
    .price-card h3 {
        font-size: 1.2rem;
    }
    .price-features li {
        font-size: 0.85rem;
    }
    .form-group {
        margin-bottom: 0.6rem;
    }
    .form-group label {
        font-size: 0.8rem;
    }
    .form-group input, .form-group select {
        padding: 0.6rem 0.7rem;
        font-size: 0.95rem;
    }
    .contact-item {
        padding: 0.5rem 0;
    }
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .contact-text h3 {
        font-size: 0.8rem;
    }
    .contact-text p {
        font-size: 0.75rem;
    }
    .map-container iframe {
        height: 250px;
    }
    .route-item {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    .route-num {
        min-width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    .faq-grid {
        gap: 0.5rem;
    }
    .faq-question {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    footer {
        padding: 2rem 5%;
    }
    footer p {
        font-size: 0.85rem;
    }
}

/* Улучшенная доступность на мобильных */
@media (max-width: 768px) {
    input, select, button, a.btn {
        min-height: 44px;
    }
    a.btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    select {
        padding: 0.7rem;
        font-size: 1rem;
    }
}

/* Стрелка наверх (весло) */
.scroll-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 80px;
    height: 100px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.15);
}

.scroll-top svg {
    width: 70px;
    height: 110px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.4));
}

.scroll-top {
    animation: paddleWiggle 1.5s ease-in-out infinite;
}

@keyframes paddleWiggle {
    0%, 100% { transform: rotate(-8deg); }
    50% { transform: rotate(-15deg); }
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-left, .animate-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
}

.animate-right {
    transform: translateX(30px);
}

.animate-left.visible, .animate-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ede3d4;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}