/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --background-gradient-1: #f8f0f0;
    --background-gradient-2: #e6d7d7;
    --text-color: #333;
    --text-light: #999;
    --font-family: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Navigation */
header {
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: relative;
}

.nav-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-left a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: var(--primary-color);
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    text-transform: lowercase;
    letter-spacing: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.login-btn, .signup-btn {
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn {
    color: var(--primary-color);
}

.signup-btn {
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.nav-right .booking-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-right .booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    /* Header & Navigation */
    header {
        padding: 20px;
    }
    
    nav {
        padding: 15px 20px;
    }
    
    .nav-left {
        display: none;
    }

    .nav-right {
        display: flex;
        align-items: center;
        margin-right: 50px;
    }
    
    .social-icons {
        display: flex;
        gap: 15px;
    }

    .social-icon {
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .nav-left {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--secondary-color);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-left.mobile-active {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-left a {
        font-size: 1.2rem;
        padding: 10px 0;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
        flex-direction: column;
        padding: 0;
        text-align: center;
        height: 100vh;
        display: flex;
        justify-content: space-between;
    }

    .hero-content {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 65vh;
        margin-top: auto;
    }

    .slide {
        height: 100%;
    }

    .slide img {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        height: 100%;
        min-width: 100%;
        object-fit: cover;
        object-position: bottom;
    }

    .slider-dots {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }

    /* Other Sections */
    .about, .gallery, .contact, .schedule {
        padding: 50px 20px;
    }

    .section-header h3 {
        font-size: 1.5rem;
        margin-bottom: 20px !important;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .divider {
        width: 100px;
        height: 1px;
    }
    
    .schedule-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .cta-buttons {
        justify-content: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background-gradient-1) 0%, var(--background-gradient-2) 100%);
    display: flex;
    align-items: center;
    padding: 100px 150px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.location {
    display: block;
    /*align-items: center;
    gap: 10px;*/
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.location i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero h2 {
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 600;
}

.hero h2 span {
    color: #c94067;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.hero-slider {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

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

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.workflow-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.slide.active .workflow-btn {
    opacity: 1;
    transform: translateY(0);
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.booking-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.workflow-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.play-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.workflow-btn:hover .play-icon {
    transform: scale(1.1);
}

/* Responsive Design for Hero Section */
@media (max-width: 1024px) {
    .hero-slider {
        width: 45%;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-slider {
        height: 70vh;
    }

    .hero h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
    }

    .hero-content {
        padding-top: 20px;
        width: 340px;
    }

    .slide img {
        width: auto;
        height: 120%;
        min-width: 120%;
    }
}

/* About Section */
.about {
    padding: 100px 50px;
    background: var(--secondary-color);
}

.about-content {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.about-text {
    flex: 1;
}

.about-text .intro {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.achievements {
    background: rgba(var(--primary-color-rgb), 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.achievements h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.achievements ul {
    list-style: none;
    padding: 0;
}

.achievements li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.achievements li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.about-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
        height: 400px;
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 50px 20px;
    }

    .about-text .intro {
        font-size: 1.2rem;
    }

    .achievements {
        padding: 20px;
    }
}

/* Schedule Section */
.schedule {
    padding: 50px 50px;
    background: var(--background-gradient-1);
}

.schedule-content {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-card {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-10px);
}

.schedule-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.schedule-card p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Gallery Section */
.gallery {
    padding: 100px 50px;
    background: var(--secondary-color);
}

.gallery-content {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.before-after-slider {
    position: relative;
    width: 100%;
}

.comparison-slider {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    border-radius: 20px;
    overflow: hidden;
    cursor: col-resize;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: #fff;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.handle-circle i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .gallery-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .gallery-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-content {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .gallery {
        padding: 50px 20px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

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

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

/* Contact Section */
.contact {
    padding: 50px 50px;
    background: linear-gradient(135deg, var(--background-gradient-2) 0%, var(--background-gradient-1) 100%);
    
}

.contact-content {
    display: flex;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form {
    flex: 2;
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

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

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--secondary-color);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.modal h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-family);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-images {
        width: 100%;
        overflow: hidden;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 20px;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    padding: 5px;
}

.social-icon i {
    display: block;
    pointer-events: none;
}

.social-icon:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-icons {
        display: flex;
        gap: 15px;
    }
}

/* Slide Content Styles */
.slide-content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    position: absolute;
    width: 100%;
}

.slide-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

