/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white url('/images/navbar.png') center/70% no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-bottom: 1px solid #B5A18C;
    min-height: 200px;
}


.header::after {
    content: none;
}


.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 1;
    min-height: 200px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.4rem;
    color: #2C2C2C;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #B5A18C;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #bbb091;
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2147483647;
}

.mobile-menu-toggle span {
    width: 40px;
    height: 6px;
    background: #bbb091;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Full Screen Menu Overlay */
.menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(181, 161, 140, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 2147483647 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    overflow: hidden;
}

.menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2147483647 !important;
}

.menu-content {
    text-align: center !important;
    transform: translateY(50px);
    transition: transform 0.3s ease;
    z-index: 2147483647 !important;
    position: relative !important;
}

.menu-overlay.active .menu-content {
    transform: translateY(0) !important;
}

.fullscreen-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-nav-list li {
    margin: 30px 0;
}

.fullscreen-nav-list a {
    font-size: 2.5rem !important;
    font-weight: 600 !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block !important;
    padding: 15px 0 !important;
    position: relative !important;
    z-index: 2147483647 !important;
}

.fullscreen-nav-list a:hover {
    color: #2C2C2C;
    transform: scale(1.1);
}

.fullscreen-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #2C2C2C;
    transition: width 0.3s ease;
}

.fullscreen-nav-list a:hover::after {
    width: 100%;
}

/* Close button for mobile menu */
.menu-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2147483648;
    backdrop-filter: blur(10px);
}

.menu-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.menu-close-btn::before,
.menu-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-close-btn::before {
    transform: rotate(45deg);
}

.menu-close-btn::after {
    transform: rotate(-45deg);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .mobile-menu-toggle {
        padding: 12px;
    }
    
    .menu-close-btn {
        min-width: 50px;
        min-height: 50px;
    }
    
    .fullscreen-nav-list a {
        padding: 25px 0 !important;
        min-height: 60px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .menu-content {
        transform: translateY(0) !important;
    }
    
    .fullscreen-nav-list li {
        margin: 15px 0;
    }
    
    .fullscreen-nav-list a {
        font-size: 1.5rem !important;
        padding: 10px 0 !important;
    }
    
    .menu-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #bbb091 0%, #a89d7a 50%, #bbb091 100%);
    height: calc(100vh - 200px);
    position: fixed;
    top: 200px;
    left: 0;
    right: 0;
    overflow: hidden;
    margin-top: 0;
    width: 100%;
    z-index: 1;
    transform: translateZ(0);
    will-change: transform;
    min-height: calc(100vh - 200px);
}

.hero-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.05)" font-family="Arial">saka</text></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    animation: heroFloat 6s ease-in-out infinite;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    min-height: 100%;
    min-width: 100%;
    filter: brightness(0.9) contrast(1.1);
    transition: all 0.3s ease;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-right {
    position: absolute;
    bottom: 60px;
    right: 40px;
    color: white;
    z-index: 5;
    text-align: right;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.6);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    100% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.6); }
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    color: #B5A18C;
    font-style: italic;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    animation: subtitleSlide 1s ease-out;
}

@keyframes subtitleSlide {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.hero .event-date {
    font-size: 1.1rem;
    color: white !important;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 10;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #B5A18C, #d4af37);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(181, 161, 140, 0.5);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dot.active {
    background: #bbb091;
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(187, 176, 145, 0.6);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Event Calendar Section */
.event-calendar {
    padding: 100px 0;
    background: #f8f8f8;
    margin-top: calc(100vh - 50px);
    position: relative;
    z-index: 5;
}

.section-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-family: serif;
}

.title-line {
    flex: 1;
    height: 1px;
    background: #bbb091;
    max-width: none;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.event-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
    animation: cardSlideUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

@keyframes cardSlideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.event-image {
    height: 170px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.event-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1c2936;
    margin-bottom: 12px;
    line-height: 1.2;
    text-align: left;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    align-items: flex-start;
    text-align: left;
}

.event-date {
    color: #1c2936;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    width: 100%;
}

.event-location {
    color: #B5A18C;
    font-weight: 700;
    font-size: 1.6rem;
    text-align: left;
    width: 100%;
}

.event-content p {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
    text-align: left;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btn-details {
    background: #1c2936;
    color: #bbb092;
    border: none;
    padding: 13px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    width: 100%;
    margin-top: auto;
}

.btn-details:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 41, 54, 0.3);
}

/* Newsletter & Social Media Section */
.newsletter-social {
    background: #bbb091;
    padding: 80px 0;
    position: relative;
    z-index: 5;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-media h3 {
    margin-bottom: 0;
}

.newsletter {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter h3 {
    margin-bottom: 0;
}

.social-media h3,
.newsletter h3 {
    color: #1c2936;
    font-size: 1.5rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #1c2936;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1c2936;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 4px;
    gap: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    background: transparent;
    color: #333;
    font-size: 1rem;
    min-width: 300px;
    flex: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #666;
}

.btn-subscribe {
    background: #1c2936;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 1px;
}

.btn-subscribe:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

/* Our Activities Section */
.our-activities {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.activity-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: activitySlideUp 0.8s ease-out;
    background: white;
    display: flex;
    height: 250px;
    padding: 0;
    margin: 0;
}

@keyframes activitySlideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    flex: 1;
    background: #f0f0f0;
    border-radius: 12px 0 0 12px;
}

.activity-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px 0 0 12px;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c2936;
    font-size: 1.4rem;
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.activity-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.activity-label {
    background: #bbb091;
    color: #1c2936;
    padding: 25px 10px;
    font-weight: 700;
    font-size: 1.1rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    flex-shrink: 0;
    height: 100%;
    transform: rotate(180deg);
}

/* Contact Section */
.contact {
    padding: 40px 0 60px 0;
    background: white;
    position: relative;
    z-index: 5;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #bbb091;
}

.contact-title {
    text-align: left;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1c2936;
    margin-bottom: 30px;
    letter-spacing: 2px;
    background: #bbb091;
    padding: 25px 80px;
    margin: 0 0 30px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-text-stroke: 0.5px #1c2936;
    box-sizing: border-box;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.form-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-right .form-group {
    flex: 1;
}

.form-right .form-checkbox {
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-right .form-checkbox .btn-send {
    margin-top: 15px;
    width: 350px;
    padding: 12px 30px;
    font-size: 1rem;
    flex-shrink: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1c2936;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1c2936;
    box-shadow: 0 0 0 2px rgba(28, 41, 54, 0.1);
}

.form-checkbox {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    margin: 0;
    width: auto;
    margin-top: 2px;
}

.form-right .form-checkbox label {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
    flex: 1;
    max-width: 600px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.form-checkbox a {
    color: #1c2936;
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-send {
    background: #1c2936;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 15px;
}

.btn-send:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 41, 54, 0.3);
}

/* Footer */
.footer {
    background: white;
    color: #1c2936;
    padding: 60px 0 20px;
    position: relative;
    z-index: 5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1c2936;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1c2936;
}

.footer-social {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 120px;
    margin: 0;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c2936;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:nth-child(1) { background: #1877f2; color: white; }
.footer-social a:nth-child(2) { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); color: white; }
.footer-social a:nth-child(3) { background: #ff0000; color: white; }
.footer-social a:nth-child(4) { background: #0077b5; color: white; }
.footer-social a:nth-child(5) { 
    background: #1c2936; 
    color: white; 
}

.footer-social a:nth-child(5) i {
    color: white !important;
}

.footer-social a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #666;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-logo img {
    height: 30px;
    width: auto;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    width: fit-content;
    max-width: calc(100vw - 40px);
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: right;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #1c2936;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(28, 41, 54, 0.3);
    box-sizing: border-box;
}

.scroll-to-top:hover {
    background: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(28, 41, 54, 0.4);
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #999;
}

/* iPhone 12 Specific Fixes */
@media only screen 
and (device-width: 390px) 
and (device-height: 844px) 
and (-webkit-device-pixel-ratio: 3) {
    .play-btn {
        z-index: 20 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
    
    .hero-controls {
        z-index: 15 !important;
        position: relative !important;
    }
    
    .hero-right {
        z-index: 10 !important;
    }
}

/* iPhone 12 Pro Specific Fixes */
@media only screen 
and (device-width: 390px) 
and (device-height: 844px) 
and (-webkit-device-pixel-ratio: 3) {
    .play-btn {
        z-index: 20 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
}

/* iPhone 12 Pro Max Specific Fixes */
@media only screen 
and (device-width: 428px) 
and (device-height: 926px) 
and (-webkit-device-pixel-ratio: 3) {
    .play-btn {
        z-index: 20 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 60px !important;
        min-height: 60px !important;
    }
}

/* General iPhone/iOS Fixes */
@supports (-webkit-touch-callout: none) {
    .play-btn {
        z-index: 20 !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
    
    .hero-controls {
        z-index: 15 !important;
        position: relative !important;
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
}

/* Responsive Design */

/* Large screens and tablets in landscape */
@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
    }
}

/* Medium screens (769px - 1023px) */
@media (max-width: 1023px) and (min-width: 769px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .activity-card {
        height: 220px;
    }
}

/* Tablets */
@media (max-width: 1023px) and (min-width: 769px) {
    .mobile-menu-toggle {
        display: flex;
        right: 25px;
    }
    
    .nav {
        display: none;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero-left {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-image {
        object-fit: contain;
        object-position: center center;
    }
    
    .hero-right {
        padding: 24px 24px 34px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        transform: translateY(-10px);
    }
    
    .hero-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 25px;
    }
    /* Move event date a bit higher on tablets */
    .hero-info .event-date {
        order: -2;
        margin-bottom: 12px;
        transform: translateY(-12px);
    }
    
    .hero-controls {
        order: -1;
        margin-bottom: 20px;
        transform: none;
    }
    
    .fullscreen-nav-list a {
        font-size: 2.2rem !important;
    }
    
    .menu-close-btn {
        top: 25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }
    
    /* Event cards responsive for tablets */
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .event-image {
        height: 200px;
    }
    
    /* Activities grid responsive for tablets */
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .activity-card {
        height: 220px;
    }
    
    .activity-image img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        right: 15px;
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 35px;
        height: 5px;
    }
    
    .nav {
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Mobile Menu Overlay Responsive */
    .menu-overlay {
        padding: 20px;
    }
    
    .menu-content {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .fullscreen-nav-list {
        width: 100%;
    }
    
    .fullscreen-nav-list li {
        margin: 25px 0;
    }
    
    .fullscreen-nav-list a {
        font-size: 2rem !important;
        padding: 20px 0 !important;
    }
    
    .menu-close-btn {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .menu-close-btn::before,
    .menu-close-btn::after {
        width: 18px;
    }
    
    .hero {
        position: fixed !important;
        height: calc(100vh - 200px) !important;
        min-height: calc(100vh - 200px) !important;
        top: 200px !important;
        z-index: 1 !important;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-left {
        position: relative;
        width: 100%;
        height: 50vh;
        min-height: 250px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        position: relative;
        filter: brightness(0.9) contrast(1.1);
        transition: all 0.3s ease;
    }
    
    .hero-right {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        text-align: center;
        max-width: 90%;
        padding: 18px 18px 30px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin: 0 auto;
        flex-shrink: 0;
        min-height: auto;
        justify-content: flex-start;
        gap: 12px;
        transform: translateY(-14px);
    }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-controls {
        order: -1;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transform: none;
    }
    /* Move event date slightly higher on mobile/tablet */
    .hero-info .event-date {
        order: -2;
        transform: translateY(-22px);
        margin-bottom: 6px;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        border-width: 4px;
        z-index: 20 !important;
    }
    
    .dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        border-width: 4px;
    }
    
    .dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .whatsapp {
        bottom: 15px;
        right: 15px;
        padding: 12px;
        font-size: 0.9rem;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }
    
    .whatsapp span {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

/* Small screens (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .event-image {
        height: 150px;
    }
    
    .activity-card {
        height: 160px;
    }
    
    .event-image img,
    .activity-image img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section for Small Screens */
    .hero {
        position: fixed !important;
        height: calc(100vh - 200px) !important;
        min-height: calc(100vh - 200px) !important;
        top: 200px !important;
        z-index: 1 !important;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }
    
    .hero-left {
        position: relative;
        width: 100%;
        height: 45vh;
        min-height: 200px;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        position: relative;
        filter: brightness(0.9) contrast(1.1);
        transition: all 0.3s ease;
    }
    
    .hero-right {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        text-align: center;
        max-width: 95%;
        padding: 14px 14px 28px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin: 0 auto;
        flex-shrink: 0;
        min-height: auto;
        justify-content: flex-start;
        gap: 10px;
        transform: translateY(-16px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        display: none !important;
    }
    
    .hero-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .hero-controls {
        order: -1;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transform: none;
    }
    
    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        border-width: 3px;
        z-index: 20 !important;
    }
    
    .dot {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }
    
    /* Mobile Menu for Small Screens */
    .mobile-menu-toggle {
        right: 10px;
        padding: 5px;
    }
    
    .mobile-menu-toggle span {
        width: 30px;
        height: 4px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .menu-overlay {
        padding: 15px;
    }
    
    .menu-content {
        padding: 0 15px;
    }
    
    .fullscreen-nav-list li {
        margin: 20px 0;
    }
    
    .fullscreen-nav-list a {
        font-size: 1.8rem !important;
        padding: 15px 0 !important;
    }
    
    .menu-close-btn {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .menu-close-btn::before,
    .menu-close-btn::after {
        width: 16px;
    }
    
    .hero-left {
        height: 50vh;
        min-height: 250px;
    }
    
    .hero-image {
        object-fit: contain;
        object-position: center center;
    }
    
    .hero-right {
        padding: 15px;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-controls {
        order: -1;
        margin-bottom: 15px;
    }
    
    .play-btn {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
        border-width: 3px;
    }
    
    .dot {
        width: 15px;
        height: 15px;
        border-width: 2px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-image {
        height: 200px;
    }
    
    .event-image img {
        object-fit: cover;
        object-position: center;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .activity-card {
        height: 200px;
    }
    
    .activity-image img {
        object-fit: cover;
        object-position: center;
    }
    
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .whatsapp {
        bottom: 10px;
        right: 10px;
        padding: 10px;
        font-size: 0.85rem;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }
    
    .whatsapp span {
        display: none;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .activity-card {
        height: 180px;
    }
    
    .activity-image {
        border-radius: 12px 0 0 12px;
    }
    
    .activity-image img {
        border-radius: 12px 0 0 12px;
        object-fit: cover;
        object-position: center;
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-image img {
        object-fit: cover;
        object-position: center;
    }
}

/* Event Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #bbb091, #a89d7a);
    border-radius: 15px 15px 0 0;
}

.modal-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.modal-image {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modal-image:hover img {
    transform: scale(1.05);
}

.modal-info h3 {
    font-size: 2rem;
    color: #1c2936;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.modal-date,
.modal-location {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #666;
}

.modal-date i,
.modal-location i {
    color: #bbb091;
    font-size: 1.2rem;
    width: 20px;
}

.modal-description {
    margin-bottom: 30px;
}

.modal-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-register,
.btn-share {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-register {
    background: linear-gradient(45deg, #bbb091, #a89d7a);
    color: white;
    flex: 1;
    min-width: 150px;
}

.btn-register:hover {
    background: linear-gradient(45deg, #a89d7a, #bbb091);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 176, 145, 0.4);
}

.btn-share {
    background: #1c2936;
    color: white;
    flex: 1;
    min-width: 120px;
}

.btn-share:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 41, 54, 0.4);
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-info h3 {
        font-size: 1.6rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-register,
    .btn-share {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        width: 98%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-image {
        height: 150px;
    }
    
    .modal-info h3 {
        font-size: 1.4rem;
    }
}

/* Registration Form Modal Styles */
.registration-modal {
    max-width: 600px;
}

.registration-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #bbb091;
}

.registration-info h3 {
    color: #1c2936;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.registration-event-date,
.registration-event-location {
    color: #666;
    margin: 5px 0;
    font-size: 1rem;
}

.registration-event-date::before {
    content: "📅 ";
    margin-right: 5px;
}

.registration-event-location::before {
    content: "📍 ";
    margin-right: 5px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1c2936;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bbb091;
    box-shadow: 0 0 0 3px rgba(187, 176, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 10px 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #bbb091;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.form-checkbox a {
    color: #bbb091;
    text-decoration: none;
    font-weight: 600;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel,
.btn-submit {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cancel {
    background: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(45deg, #bbb091, #a89d7a);
    color: white;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #a89d7a, #bbb091);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(187, 176, 145, 0.4);
}

/* Registration Modal Responsive */
@media (max-width: 768px) {
    .registration-modal {
        width: 95%;
        max-width: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
    
    .registration-info {
        padding: 15px;
    }
    
    .registration-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .registration-modal {
        width: 98%;
        margin: 2% auto;
    }
    
    .registration-info {
        padding: 12px;
    }
    
    .registration-info h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
}

/* Video Modal Styles */
.video-modal {
    z-index: 10001;
}

.video-modal-content {
    max-width: 900px;
    width: 95%;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #bbb091;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1c2936, #2c3e50);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #bbb091;
    box-shadow: inset 0 0 20px rgba(187, 176, 145, 0.1);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1c2936;
    border-radius: 8px;
}

.video-modal .modal-header {
    background: linear-gradient(135deg, #bbb091, #a89d7a);
    color: #1c2936;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-modal .modal-title {
    color: #1c2936;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.video-modal .video-close {
    color: #1c2936;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(28, 41, 54, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(28, 41, 54, 0.2);
}

.video-modal .video-close:hover {
    background: rgba(28, 41, 54, 0.2);
    transform: scale(1.1);
    border-color: rgba(28, 41, 54, 0.3);
    box-shadow: 0 4px 15px rgba(28, 41, 54, 0.2);
}

.video-modal .modal-body {
    padding: 0;
    background: #1c2936;
    border-radius: 0 0 15px 15px;
    border: 2px solid #bbb091;
    border-top: none;
}

/* Video Modal Responsive */
@media (max-width: 768px) {
    .video-modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .video-modal .modal-header {
        padding: 15px 20px;
    }
    
    .video-modal .modal-title {
        font-size: 1.3rem;
    }
    
    .video-modal .video-close {
        font-size: 1.8rem;
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        width: 99%;
        margin: 0.5% auto;
    }
    
    .video-modal .modal-header {
        padding: 12px 15px;
    }
    
    .video-modal .modal-title {
        font-size: 1.2rem;
    }
    
    .video-modal .video-close {
        font-size: 1.6rem;
        width: 32px;
        height: 32px;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0522d;
}

/* KVKK Modal */
.kvkk-modal-content {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.kvkk-content {
    padding: 20px 0;
    line-height: 1.6;
}

.kvkk-content h3 {
    color: #1c2936;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #bbb091;
    padding-bottom: 10px;
}

.kvkk-content h4 {
    color: #1c2936;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.kvkk-content p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.kvkk-content ul {
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
}

.kvkk-content li {
    margin-bottom: 5px;
}

.kvkk-content strong {
    color: #1c2936;
    font-weight: 600;
}

.kvkk-content em {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* Modal scroll fix */
body.modal-open {
    position: fixed !important;
    width: 100% !important;
    overflow: hidden !important;
}
