/* ===================================
   Modern Homepage Styles
   =================================== */

:root {
    --primary-color: #c39c68;
    --dark-color: #2c2c2c;
    --light-color: #f8f8f8;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modern-homepage {
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Hero Slider Section - Modern Design
   =================================== */

.hero-slider-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.slider-container-modern {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomEffect 15s ease infinite;
}

@keyframes zoomEffect {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(195, 156, 104, 0.35) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    text-align: center;
    z-index: 2;
}

.content-container {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    padding: 10px 30px;
    background: rgba(195, 156, 104, 0.9);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(195, 156, 104, 0.4);
}

.slide-title {
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 3px 3px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.slide-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(195, 156, 104, 0.8);
}

.divider-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.slide-description {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.7);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(195, 156, 104, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(195, 156, 104, 0.6);
}

.prev-slide {
    left: 40px;
}

.next-slide {
    right: 40px;
}

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: bounceUpDown 2s ease-in-out infinite;
}

@keyframes bounceUpDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.scroll-text {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider-modern {
        height: 35vh;
        min-height: 35vh;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slider-container-modern {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .slides-wrapper {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .slide-item {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide-background {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #000;
        margin: 0;
        padding: 0;
    }

    .slide-background img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0;
        padding: 0;
    }

    .slide-overlay {
        display: none;
    }

    /* Hide all content on mobile */
    .slide-content {
        display: none;
    }

    /* Hide navigation arrows on mobile */
    .slider-nav {
        display: none;
    }

    /* Keep dots but make them smaller */
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }

    .dot {
        width: 8px;
        height: 8px;
        border: 1px solid var(--white);
    }

    .dot.active {
        width: 24px;
        border-width: 1px;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator-modern {
        display: none;
    }
}

@media (max-width: 480px) {
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .dot.active {
        width: 20px;
    }
}

/* ===================================
   Section Badges & Titles
   =================================== */

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.section-title .brand-name {
    color: var(--primary-color);
    display: block;
}

.section-title .subtitle {
    font-size: 32px;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px 0;
    border-radius: 2px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   Decorative Dividers
   =================================== */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: var(--white);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    max-width: 300px;
}

.divider-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    box-shadow: 0 5px 20px rgba(195, 156, 104, 0.3);
    animation: pulse 2s infinite;
}

.divider-icon i {
    color: var(--white);
    font-size: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--white);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    color: var(--primary-color);
    opacity: 0.15;
}

/* ===================================
   About Section - New Design
   =================================== */

.about-section-new {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195, 156, 104, 0.08), transparent);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
}

.about-layout-new {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Images Section */
.about-images-section {
    position: relative;
}

.main-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.08);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(195, 156, 104, 0.5);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pattern-overlay {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

/* Content Section */
.about-content-new {
    position: relative;
}

.content-wrapper {
    max-width: 600px;
}

.section-title-new {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-highlight {
    display: block;
    color: var(--primary-color);
    font-size: clamp(40px, 6vw, 56px);
    margin-bottom: 10px;
}

.subtitle-text {
    display: block;
    color: var(--dark-color);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
}

.decorative-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.line-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.line-bar {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
}

.about-description p {
    margin-bottom: 15px;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card-new {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(195, 156, 104, 0.2);
}

.feature-icon-new {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    color: var(--white);
    border-radius: 12px;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(195, 156, 104, 0.3);
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-info p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout-new {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-images-section {
        order: 2;
    }

    .about-content-new {
        order: 1;
        text-align: center;
    }

    .content-wrapper {
        max-width: 100%;
    }

    .decorative-line {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .features-showcase {
        grid-template-columns: 1fr;
    }

    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
    }

    .badge-number {
        font-size: 28px;
    }

    .section-divider {
        padding: 30px 0;
    }

    .divider-line {
        max-width: 100px;
    }
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(195, 156, 104, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* ===================================
   Corporate Section - Modern Design
   =================================== */

.corporate-section-modern {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.corporate-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(195, 156, 104, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.corporate-layout {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content Side */
.corporate-content-side {
    position: relative;
}

.content-inner {
    max-width: 600px;
}

.corporate-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.title-highlight {
    color: var(--primary-color);
}

.decorative-line-corporate {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.corporate-description {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
}

.corporate-description p {
    margin-bottom: 15px;
}

.corporate-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item-corporate {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.feature-item-corporate:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(195, 156, 104, 0.2);
}

.feature-icon-corporate {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 15px;
    color: var(--white);
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(195, 156, 104, 0.3);
}

.feature-text-corporate h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text-corporate p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Image Side */
.corporate-image-side {
    position: relative;
}

.image-container-corporate {
    position: relative;
}

.image-frame-corporate {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
}

.image-frame-corporate img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame-corporate:hover img {
    transform: scale(1.08);
}

.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(195, 156, 104, 0.5);
    animation: float 3s ease-in-out infinite;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 24px;
}

.stat-info {
    color: var(--white);
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-info p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.pattern-decoration {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 20px;
    z-index: -1;
}

/* Responsive */
@media (max-width: 1024px) {
    .corporate-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .corporate-image-side {
        order: -1;
    }

    .content-inner {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .corporate-features {
        gap: 15px;
    }

    .feature-item-corporate {
        padding: 20px;
    }

    .feature-icon-corporate {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .floating-stats {
        bottom: 20px;
        left: 20px;
    }

    .stat-box {
        padding: 20px 25px;
        gap: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .stat-info h3 {
        font-size: 26px;
    }
}

/* ===================================
   Reservation Section - New Modern Design
   =================================== */

.reservation-section-new {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.reservation-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

/* Left Side - Info */
.reservation-info {
    position: relative;
}

.info-content {
    position: sticky;
    top: 100px;
}

.info-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.reservation-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(195, 156, 104, 0.15);
}

.feature-icon-box {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(195, 156, 104, 0.3);
}

.feature-icon-box i {
    color: var(--white);
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.contact-item i {
    font-size: 20px;
}

/* Right Side - Form */
.reservation-form-wrapper {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: 25px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-color);
}

.form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-split {
    flex-direction: row;
    gap: 15px;
}

.form-row-split .input-group-modern {
    flex: 1;
}

.input-group-modern {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-modern label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    color: var(--primary-color);
    font-size: 18px;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: var(--light-color);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--dark-color);
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

.input-wrapper input::placeholder {
    color: #999;
}

.input-wrapper input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(195, 156, 104, 0.1);
}

.form-footer-modern {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.btn-submit-modern {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(195, 156, 104, 0.4);
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(195, 156, 104, 0.6);
}

.btn-submit-modern i {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-content {
        position: static;
    }

    .reservation-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-box {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 25px;
    }

    .form-row-split {
        flex-direction: column;
    }

    .reservation-features {
        flex-direction: column;
    }

    .feature-box {
        min-width: auto;
    }

    .contact-info-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .form-header h3 {
        font-size: 24px;
    }

    .input-wrapper input {
        padding: 14px 15px 14px 45px;
    }
}

/* ===================================
   Corporate Section
   =================================== */

.corporate-section {
    padding: 100px 0;
    background: var(--light-color);
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corporate-content {
    padding-left: 40px;
}

.corporate-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===================================
   Video Section - Full Width
   =================================== */

.video-section-fullwidth {
    background: var(--white);
    overflow: hidden;
}

.video-header-section {
    padding: clamp(60px, 8vw, 80px) 0 clamp(40px, 6vw, 60px) 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.fullwidth-video-wrapper {
    width: 100%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.video-player-container {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.video-player-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.video-controls-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.play-pause-btn,
.mute-btn {
    width: 55px;
    height: 55px;
    background: rgba(195, 156, 104, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-pause-btn:hover,
.mute-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(195, 156, 104, 0.5);
}

.video-info-section {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.video-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.video-feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border: 2px solid var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.video-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(195, 156, 104, 0.2);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(195, 156, 104, 0.3);
    transition: var(--transition);
}

.video-feature-card:hover .feature-icon-circle {
    transform: rotateY(360deg);
}

.feature-icon-circle i {
    font-size: 36px;
    color: var(--white);
}

.video-feature-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.video-feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .video-player-container {
        height: 60vh;
        max-height: 60vh;
    }

    .video-player-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-controls-overlay {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .play-pause-btn,
    .mute-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .video-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-icon-circle {
        width: 70px;
        height: 70px;
    }

    .feature-icon-circle i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .video-player-container {
        height: 50vh;
        max-height: 50vh;
    }

    .video-player-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-feature-card {
        padding: 30px 20px;
    }
}

/* ===================================
   Testimonials Section - New Design
   =================================== */

.testimonials-section-new {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(195, 156, 104, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(195, 156, 104, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-box {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.testimonial-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(195, 156, 104, 0.2);
    border-color: var(--primary-color);
}

.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(195, 156, 104, 0.3);
}

.testimonial-quote-icon i {
    color: var(--white);
    font-size: 22px;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-message {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(195, 156, 104, 0.3);
    transition: var(--transition);
}

.avatar-placeholder i {
    color: var(--white);
    font-size: 24px;
}

/* Avatar color variations */
.testimonial-box:nth-child(2n) .avatar-placeholder {
    background: linear-gradient(135deg, #8b7355, var(--primary-color));
}

.testimonial-box:nth-child(3n) .avatar-placeholder {
    background: linear-gradient(135deg, #a67c52, #d4af7a);
}

.testimonial-box:hover .avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(195, 156, 104, 0.5);
}

.author-avatar img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.avatar-badge i {
    color: var(--white);
    font-size: 10px;
}

.author-details {
    flex: 1;
    text-align: left;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.author-label {
    font-size: 13px;
    color: var(--text-light);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(195, 156, 104, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(195, 156, 104, 0.3);
}

.stat-icon i {
    color: var(--white);
    font-size: 32px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-box {
        padding: 25px;
    }
}

/* ===================================
   Events Section
   =================================== */

.events-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: var(--white);
    text-align: center;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(195, 156, 104, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.event-card:hover .event-overlay {
    opacity: 1;
}

.event-link {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition);
}

.event-link:hover {
    transform: scale(1.2) rotate(45deg);
}

.event-content {
    padding: 30px;
    text-align: left;
}

.event-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.event-title a:hover {
    color: var(--primary-color);
}

.event-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===================================
   Events Section - Modern Design
   =================================== */

.events-section-modern {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.events-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 156, 104, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.events-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.events-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.event-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(195, 156, 104, 0.25);
    border-color: var(--primary-color);
}

.event-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card-modern:hover .event-image-wrapper img {
    transform: scale(1.15);
}

.event-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;
}

.event-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(195, 156, 104, 0.5);
    z-index: 2;
}

.date-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
}

.date-text {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.event-content-modern {
    padding: 30px;
}

.event-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    background: rgba(195, 156, 104, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.event-category i {
    font-size: 11px;
}

.event-title-modern {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.event-title-modern a {
    color: var(--dark-color);
    text-decoration: none;
    transition: var(--transition);
}

.event-title-modern a:hover {
    color: var(--primary-color);
}

.event-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.event-footer {
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.event-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.event-read-more:hover {
    gap: 15px;
}

.event-read-more i {
    font-size: 12px;
    transition: var(--transition);
}

.event-read-more:hover i {
    transform: translateX(5px);
}

/* Events CTA */
.events-cta {
    text-align: center;
}

.btn-view-all-events {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), #d4af7a);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(195, 156, 104, 0.4);
    transition: var(--transition);
}

.btn-view-all-events:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(195, 156, 104, 0.6);
}

.btn-view-all-events i {
    font-size: 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .events-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .events-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-image-wrapper {
        height: 240px;
    }

    .event-content-modern {
        padding: 25px;
    }

    .event-title-modern {
        font-size: 20px;
    }

    .btn-view-all-events {
        padding: 16px 35px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .event-date-badge {
        top: 15px;
        right: 15px;
        padding: 10px 16px;
        gap: 8px;
    }

    .date-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .date-text {
        font-size: 12px;
    }

    .event-content-modern {
        padding: 20px;
    }
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .about-grid,
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content,
    .corporate-content {
        padding: 0;
        text-align: center;
    }

    .title-divider {
        margin: 20px auto;
    }

    .features-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title .subtitle {
        font-size: 24px;
    }

    .about-section,
    .reservation-section,
    .corporate-section,
    .video-section,
    .testimonials-section,
    .events-section {
        padding: 60px 0;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .reservation-form {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-track {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .btn-primary {
        padding: 15px 35px;
        font-size: 16px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        flex: 0 0 90%;
    }
}

/* ===================================
   Additional Animations & Effects
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth Transitions */
.about-image img,
.corporate-image img,
.event-image img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading State */
.modern-homepage {
    animation: fadeIn 0.5s ease;
}

/* Focus States for Accessibility */
.form-field input:focus,
.btn-primary:focus,
.control-btn:focus,
.slider-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .scroll-indicator,
    .video-controls,
    .slider-controls {
        display: none;
    }
}
