﻿: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;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: clamp(80vh, 85vh, 90vh);
    min-height: 500px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    padding: clamp(1.5rem, 3vw, 3rem);
    width: 100%;
    max-width: 900px;
}

.header-title {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-family: "Playfair Display", serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

    .header-title span {
        color: var(--accent-color);
        font-style: italic;
    }

.header-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    margin-bottom: 2rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0.9;
}

.marquee-section {
    padding: 2.5rem 0;
    background: linear-gradient(90deg, var(--light-bg) 0%, #f5f5f5 100%);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-wrapper:hover .marquee {
    animation-play-state: paused;
}

.marquee-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    color: var(--text-dark);
    padding: 0 4rem;
    font-weight: 500;
    justify-content: center;
}

    .marquee-text i {
        color: var(--accent-color);
        margin-right: 1rem;
        font-size: 1.3em;
    }

    .marquee-text p {
        margin: 0 auto;
    }

.content-section {
    padding: var(--section-spacing) 0;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    justify-content: space-between;
}

.content-text {
    flex: 1;
    min-width: 300px;
}

.content-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition-speed);
}

    .content-image:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

.section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    font-weight: 500;
    color: var(--accent-color);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.section-description {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    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;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(var(--accent-color-rgb, 249, 121, 76), 0.4);
    }

    .btn-primary:active {
        transform: translateY(-1px);
    }

.video-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #edebdd 0%, #f5f3e4 100%);
    position: relative;
    overflow: hidden;
}

    .video-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 30%, rgba(var(--accent-color-rgb, 249, 121, 76), 0.05) 0%, transparent 50%);
    }

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.features-section {
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: clamp(1.5rem, 2.5vw, 2.5rem);
    text-align: center;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-hover);
        border-color: var(--accent-color);
    }

.feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    transition: transform var(--transition-speed);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.feature-description {
    font-family: "Josefin Sans", sans-serif;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.faq-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed);
    border: 1px solid var(--border-color);
}

    .faq-item:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .faq-item.active {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        border-color: var(--accent-color);
    }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    font-family: "Josefin Sans", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        color: var(--accent-color);
        background: rgba(var(--accent-color-rgb, 249, 121, 76), 0.03);
    }

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--text-gray);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: rgba(var(--accent-color-rgb, 249, 121, 76), 0.02);
}

    .faq-answer p {
        font-family: "Josefin Sans", sans-serif;
        font-size: 1rem;
        line-height: 1.7;
        color: var(--text-gray);
        padding: 0 1.5rem 1.5rem;
        margin: 0;
    }

.faq-item.active .faq-answer {
    max-height: 500px;
}

.contact-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f0f0f0 100%);
}

.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: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.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);
}

.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;
}

    .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;
    }

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.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;
}

    .btn-submit:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(var(--accent-color-rgb, 249, 121, 76), 0.4);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.scroll-animate {
    will-change: transform, opacity;
    opacity: 0;
    transition: all 0.6s ease-out;
}

    .scroll-animate.scroll-fade {
        opacity: 0;
    }

    .scroll-animate.scroll-up {
        transform: translateY(30px);
    }

    .scroll-animate.scroll-down {
        transform: translateY(-30px);
    }

    .scroll-animate.scroll-left {
        transform: translateX(-30px);
    }

    .scroll-animate.scroll-right {
        transform: translateX(30px);
    }

    .scroll-animate.animated {
        opacity: 1;
        transform: translate(0);
    }

.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-5 {
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.container-fluid.m-0.p-0 {
    margin: 0;
    padding: 0;
}

@media (max-width: 1199px) {
    .content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 70vh;
        min-height: 400px;
    }

    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .content-text {
        order: 1;
    }

    .content-image-container {
        order: 2;
    }

    .section-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
        min-height: 350px;
    }

    .header-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }

    .header-subtitle {
        font-size: clamp(0.9rem, 1.5vw, 1.3rem);
        letter-spacing: 2px;
    }

    .marquee-text {
        font-size: clamp(0.9rem, 1.1vw, 1.1rem);
        padding: 0 2rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    }

    .section-subtitle {
        font-size: clamp(1.1rem, 1.6vw, 1.5rem);
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 80px;
        height: 80px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .video-wrapper {
        border-radius: var(--border-radius);
    }
}

@media (max-width: 576px) {
    .hero-banner {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 1rem;
    }

    .marquee-section {
        padding: 1.5rem 0;
    }

    .content-section,
    .video-section,
    .features-section,
    .faq-section,
    .contact-section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
    }

    .btn-primary,
    .btn-submit {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .hero-banner {
        height: 45vh;
        min-height: 250px;
    }

    .header-title {
        font-size: 1.6rem;
    }

    .header-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9rem;
    }
}
