﻿:root {
    --primary-color: var(--button-color-two, #B0A096);
    --accent-color: var(--button-color, #F9794C);
    --secondary-color: #F9794C;
    --light-bg: #f9f9f9;
    --dark-bg: #2c2c2c;
    --text-dark: #333;
    --text-light: #fff;
    --text-gray: #666;
    --border-color: #eee;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --transition-speed: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --section-spacing: clamp(4rem, 8vw, 6rem);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --gold-color: #4d3f28;
    --beige-color: #f5f3ea;
}

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.intro-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--beige-color) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

    .intro-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(var(--accent-color-rgb, 249, 121, 76), 0.05) 0%, transparent 50%);
    }

.body-content-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.body-content-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
        border-color: var(--accent-color);
    }

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: transform var(--transition-speed);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
}

.feature-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-color);
    margin: 0;
    line-height: 1.4;
}

.content-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.content-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .content-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
        border-radius: 2px;
    }

.content-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 2rem;
    max-width: 800px;
}

.carousel-section {
    padding: 3rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    background: white;
}

    .carousel-container:hover .carousel-nav {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
    padding: 0 1rem;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc(20% - 1.2rem);
    min-width: calc(20% - 1.2rem);
    height: 260px;
    transition: transform 0.3s ease;
}

    .carousel-slide:hover img {
        transform: scale(1.05);
    }

    .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius);
        transition: transform 0.6s ease;
        will-change: transform;
    }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed);
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0;
}

    .carousel-nav:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
        left: 10px;
    }

    .carousel-nav.next {
        right: 10px;
    }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

    .carousel-dots.hidden {
        display: none;
    }

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all var(--transition-speed);
}

    .carousel-dot.active {
        background: var(--accent-color);
        transform: scale(1.2);
    }

    .carousel-dot:hover {
        background: var(--accent-color);
        opacity: 0.8;
    }

.partners-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--beige-color) 0%, #f8f6f0 100%);
    position: relative;
}

    .partners-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234d3f28' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.partners-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-color);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 3rem;
}

.logo-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

    .logo-slider-wrapper:hover .logo-nav {
        opacity: 1;
    }

.logo-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
}

.logo-item {
    flex: 0 0 calc(20% - 1.6rem);
    min-width: calc(20% - 1.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all var(--transition-speed);
    border: 1px solid var(--border-color);
}

    .logo-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        border-color: var(--accent-color);
    }

        .logo-item:hover img {
            opacity: 1;
            transform: scale(1.05);
        }

    .logo-item img {
        max-width: 100%;
        max-height: 100px;
        width: auto;
        height: auto;
        object-fit: contain;
        transition: all var(--transition-speed);
    }

.logo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-speed);
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0;
}

    .logo-nav:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-50%) scale(1.1);
    }

    .logo-nav.prev {
        left: -20px;
    }

    .logo-nav.next {
        right: -20px;
    }

.contact-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
    position: relative;
}

    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 80% 20%, rgba(var(--accent-color-rgb, 249, 121, 76), 0.05) 0%, transparent 50%);
    }

.contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

    .contact-form-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    }

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

    .form-label .required {
        color: var(--secondary-color);
    }

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    background: #fff;
}

    .form-control:focus {
        outline: none;
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(var(--accent-color-rgb, 249, 121, 76), 0.1);
    }

    .form-control::placeholder {
        color: #999;
        font-size: 0.95rem;
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 20px rgba(var(--accent-color-rgb, 249, 121, 76), 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(var(--accent-color-rgb, 249, 121, 76), 0.4);
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    }

    .btn-submit:active {
        transform: translateY(-1px);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    will-change: transform, opacity;
    opacity: 0;
}

.animated {
    animation: fadeInUp 0.6s ease forwards;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.container-fluid.m-0.p-0 {
    margin: 0;
    padding: 0;
}

@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 calc(25% - 1.2rem) !important;
        min-width: calc(25% - 1.2rem) !important;
    }

    .logo-item {
        flex: 0 0 calc(25% - 1.6rem);
        min-width: calc(25% - 1.6rem);
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .carousel-slide {
        flex: 0 0 calc(33.333% - 1.2rem) !important;
        min-width: calc(33.333% - 1.2rem) !important;
        height: 220px !important;
    }

    .logo-item {
        flex: 0 0 calc(33.333% - 1.6rem);
        min-width: calc(33.333% - 1.6rem);
        padding: 1rem;
    }

        .logo-item img {
            max-height: 50px;
        }

    .logo-nav.prev {
        left: -10px;
    }

    .logo-nav.next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .intro-section,
    .content-section,
    .partners-section,
    .contact-section {
        padding: 3rem 0;
    }

    .body-content-title {
        font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    }

    .body-content-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .content-title {
        font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    }

    .content-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .carousel-slide {
        flex: 0 0 calc(50% - 1.2rem) !important;
        min-width: calc(50% - 1.2rem) !important;
        height: 200px !important;
    }

    .carousel-track {
        padding: 0 0.5rem;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        opacity: 1 !important;
        transform: translateY(-50%) scale(1) !important;
    }

    .logo-item {
        flex: 0 0 calc(50% - 1.6rem);
        min-width: calc(50% - 1.6rem);
        padding: 0.8rem;
        min-height: 100px;
    }

        .logo-item img {
            max-height: 40px;
        }

    .logo-nav {
        display: none !important;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .btn-submit {
        padding: 0.8rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-slide {
        flex: 0 0 calc(100% - 1.2rem) !important;
        min-width: calc(100% - 1.2rem) !important;
        height: 250px !important;
    }

    .carousel-track {
        padding: 0;
    }

    .carousel-nav {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .carousel-dots {
        margin-top: 1.5rem;
    }

    .logo-item {
        flex: 0 0 calc(100% - 1.6rem);
        min-width: calc(100% - 1.6rem);
        padding: 1rem;
        min-height: 90px;
    }

        .logo-item img {
            max-height: 35px;
        }

    .contact-title {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .form-control {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    textarea.form-control {
        min-height: 100px;
    }
}

@media (max-width: 400px) {
    .body-content-title {
        font-size: 1.6rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .carousel-slide {
        height: 200px !important;
    }

    .logo-item {
        min-height: 80px;
        padding: 0.8rem;
    }

        .logo-item img {
            max-height: 30px;
        }
}
