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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.section {
    padding: 0.5rem 1.5rem;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #3c4b38;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #3c4b38;
    border-radius: 2px;
}

.header {
    background-color: #3c4b38;
    color: #f9fefa;
    padding: 1rem 1rem;
    text-align: center;
    border-radius: 0 0 30px 30px;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.logo span {
    display: block;
    font-weight: 300;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #f9fefa;
    color: #3c4b38;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #f9fefa;
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #f9fefa;
}

.location-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.address-card {
    background-color: #f8f9f8;
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.address-card h3 {
    color: #3c4b38;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.address-card p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.address-card i {
    margin-right: 10px;
    color: #3c4b38;
    width: 20px;
}

.map-placeholder {
    background-image: url('images/map.png');
    background-color: #f8f9f8;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.map-placeholder:hover {
    transform: translateY(-5px);
}

.map-marker {
    font-size: 3rem;
    color: #3c4b38;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.map-placeholder p {
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.map-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    background-color: #f8f9f8;
    border-radius: 20px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 5rem;
    color: #3c4b38;
    opacity: 0.7;
}

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

.price-card {
    background-color: #f8f9f8;
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.price-header h3 {
    color: #3c4b38;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.price {
    background-color: #3c4b38;
    color: #f9fefa;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-card p {
    margin-bottom: 0.8rem;
    color: #555;
}

.duration {
    display: flex;
    align-items: center;
    color: #3c4b38;
    font-weight: 500;
}

.duration i {
    margin-right: 8px;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3,
.contact-form h3 {
    color: #3c4b38;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 10px;
    color: #3c4b38;
    width: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3c4b38;
}

.submit-btn {
    background-color: #3c4b38;
    color: #f9fefa;
    padding: 1rem;
    border-radius: 15px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background-color: #2f3b2c;
}

.footer {
    background-color: #3c4b38;
    color: #f9fefa;
    padding: 1.2rem 0.1rem;
    border-radius: 30px 30px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    font-weight: 300;
    font-size: 1.2rem;
}

.footer-tagline {
    font-weight: 300;
    opacity: 0.9;
}

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

.footer-social h4 {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(249, 254, 250, 0.1);
    border-radius: 50%;
    color: #f9fefa;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #f9fefa;
    color: #3c4b38;
    transform: translateY(-3px);
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-info p {
    margin-bottom: 0.8rem;
}

.footer-info a {
    color: #f9fefa;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.gallery-section {
    background-color: #f8f9f8;
    border-radius: 30px;
    margin: 1rem 1.5rem;
    padding: 0.5rem 0;
}

.gallery-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.horizontal-carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    background-color: #f8f9f8;
    transition: transform 0.3s ease;
}

.carousel-item.active img {
    transform: scale(1.02);
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: #3c4b38;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background-color: #f9fefa;
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(60, 75, 56, 0.7);
    color: #f9fefa;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.gallery-container:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background-color: #3c4b38;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 95%;
    max-height: 95%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-image-container {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

#modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(60, 75, 56, 0.7);
    color: #f9fefa;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.8rem;
    transition: background-color 0.3s ease;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: #3c4b38;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 2rem;
    }

    .logo {
        font-size: 2.2rem;
    }

    .logo span {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .location-wrapper,
    .about-content,
    .contact-wrapper {
        flex-direction: row;
    }

    .location-wrapper>div,
    .about-content>div,
    .contact-wrapper>div {
        flex: 1;
    }

    .prices-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-brand,
    .footer-social,
    .footer-info {
        text-align: left;
        flex: 1;
    }

    .gallery-container {
        height: 450px;
        max-width: 450px;
    }
}

@media (min-width: 992px) {
    .section {
        padding: 2rem 2rem;
    }

    .logo {
        font-size: 2.5rem;
    }

    .prices-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-container {
        height: 500px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        height: 500px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.7;
        font-size: 1.2rem;
    }

    .modal-image-container {
        height: 60vh;
        padding: 10px;
    }

    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (min-width: 1200px) {
    .gallery-container {
        height: 600px;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        height: 350px;
    }

    .modal-content {
        max-width: 250%;
        max-height: 250%;
    }

    .modal-image-container {
        height: 80vh;
    }
}

.header-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: left;
}

.logo-container {
    flex-shrink: 0;
}

.site-logo {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo {
    flex: 1;
    min-width: 200px;
    margin-bottom: 0;
}

.tagline {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    margin-left: auto;
}

.site-logo {
    width: 80px;
    height: 80px;
}

@media (min-width: 768px) {
    .site-logo {
        width: 100px;
        height: 100px;
    }

    .header-content {
        gap: 2rem;
    }
}

@media (min-width: 992px) {
    .site-logo {
        width: 120px;
        height: 120px;
    }

    .header-content {
        gap: 3rem;
    }
}

@media (max-width: 400px) {
    .header-content {
        gap: 1rem;
    }

    .site-logo {
        width: 70px;
        height: 70px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 1.2rem;
    }
}

.header-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 180px;
}

.logo-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.site-logo {
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.site-logo:hover {
    transform: scale(1.05);
}

.logo,
.tagline,
.cta-button {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.site-logo {
    width: 110px;
    height: 110px;
}

@media (max-width: 767px) {
    .header-content {
        flex-direction: column;
        min-height: auto;
        padding-top: 1rem;
        gap: 0.5rem;
    }

    .logo-container {
        position: static;
        order: 1;
        transform: none;
        margin-bottom: 0.5rem;
    }

    .logo {
        order: 2;
        margin-bottom: 0.5rem;
    }

    .tagline {
        order: 3;
        margin-bottom: 1rem;
    }

    .cta-button {
        order: 4;
    }

    .site-logo {
        width: 120px;
        height: 120px;
        display: block;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .site-logo {
        width: 90px;
        height: 90px;
    }

    .header-content {
        min-height: 200px;
    }
}

.price-cta-button {
    display: inline-block;
    background-color: #3c4b38;
    color: #f9fefa;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #3c4b38;
    cursor: pointer;
    text-align: center;
    margin-top: 1rem;
    width: 100%;
}

.price-cta-button:hover {
    background-color: #2f3b2c;
    border-color: #2f3b2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 59, 44, 0.2);
}

.contact-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    border: 2px solid transparent;
}

.call-button {
    background-color: #2aa708;
    color: #f9fefa;
}

.call-button:hover {
    background-color: #2f3b2c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 59, 44, 0.2);
}

.telegram-button {
    background-color: #0088cc;
    color: white;
}

.telegram-button:hover {
    background-color: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.2);
}

.whatsapp-button {
    background-color: #25D366;
    color: white;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

@media (max-width: 768px) {
    .contact-button {
        width: 100%;
        justify-content: center;
    }

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

.contact-info {
    position: relative;
}

.contact-hint {
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    background: linear-gradient(135deg, #3c4b38, #4a5d45);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(60, 75, 56, 0.3);
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.contact-hint.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-hint i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

.contact-hint::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #3c4b38;
}
.price-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card .price-cta-button {
    margin-top: auto;
    align-self: flex-end;
    width: auto;
    min-width: 120px;
}

@media (max-width: 768px) {
    .price-card .price-cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gallery-container {
        height: 500px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        opacity: 0.7;
        font-size: 1.2rem;
    }

    .modal-content {
        max-width: 98% !important;
        max-height: 95% !important;
        width: 98% !important;
        height: 95% !important;
        border-radius: 15px !important;
        background-color: #292626 !important;
    }

    .modal-image-container {
        height: 80vh !important;
        padding: 10px !important;
        background-color: #292626 !important;
    }

    .modal-prev,
    .modal-next {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        background-color: rgba(255, 255, 255, 0.2) !important;
    }

    .modal-prev:hover,
    .modal-next:hover {
        background-color: rgba(255, 255, 255, 0.4) !important;
    }

    .modal-prev {
        left: 10px !important;
    }

    .modal-next {
        right: 10px !important;
    }
    
    .modal-close {
        width: 50px !important;
        height: 50px !important;
        background-color: rgba(255, 255, 255, 0.2) !important;
        top: 20px !important;
        right: 20px !important;
    }
    
    .modal-close:hover {
        background-color: rgba(255, 255, 255, 0.4) !important;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        height: 350px;
    }

    .modal-content {
        max-width: 100% !important;
        max-height: 100% !important;
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }

    .modal-image-container {
        height: 100vh !important;
        padding: 0 !important;
    }
    
    #modal-image {
        max-width: 100vw !important;
        max-height: 100vh !important;
        width: auto !important;
        height: auto !important;
    }
    
    .modal-prev,
    .modal-next {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.3rem !important;
        bottom: 20px !important;
        top: auto !important;
        transform: none !important;
    }
    
    .modal-prev {
        left: 20px !important;
    }
    
    .modal-next {
        right: 20px !important;
    }
    
    .modal-close {
        top: 25px !important;
        right: 25px !important;
        width: 45px !important;
        height: 45px !important;
    }
    
    .modal-counter {
        bottom: 80px !important;
        background-color: rgba(255, 255, 255, 0.2) !important;
        font-size: 1.3rem !important;
        padding: 12px !important;
    }
}

.modal-content {
    background-color: #312f2f;
}

#modal-image {
    object-fit: contain;
    transition: transform 0.3s ease;
}

#modal-image.zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

#modal-image:not(.zoomed) {
    cursor: zoom-in;
}

.modal-counter {
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 1.3rem;
}