/* ===== GLOBAL SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CORPORATE EVENTS SECTION ===== */
.events-section {
    max-width: 1360px;
    margin: 3rem auto;
    padding: 0 2rem;
}
.events-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #1a2a3a;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 4px solid #c9a86c;
    display: inline-block;
    text-transform: uppercase;
}
.events-section .section-title span { color: #c9a86c; }

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0;
}
/* Left Column - Carousel */
.carousel-col {
    position: relative;
    background: #1a2a3a;
    min-height: 420px;
    overflow: hidden;
}
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
}
.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
    flex: 0 0 100%;
    height: 100%;
    min-height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #2c3e50; /* fallback */
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #1a2a3a;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.carousel-btn:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.05);
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.carousel-dots .dot {
    width: 12px;
    height: 12px;
    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;
}
.carousel-dots .dot.active {
    background: #c9a86c;
    border-color: #c9a86c;
    transform: scale(1.2);
}
.carousel-dots .dot:hover { background: rgba(255, 255, 255, 0.8); }

/* Right Column - Details */
.details-col {
    padding: 2.5rem 2.8rem 2.8rem 2.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}
.details-col .badge {
    display: inline-block;
    background: #c9a86c;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    align-self: flex-start;
}
.details-col h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f1c2b;
    margin-bottom: 0.5rem;
}
.details-col h2 .highlight { color: #c9a86c; }
.details-col .tagline {
    font-size: 1rem;
    font-weight: 500;
    color: #3d4f60;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}
.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.8rem;
    margin: 0.75rem 0 1.25rem 0;
}
.specs-grid .spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e2e3e;
}
.specs-grid .spec-item i {
    color: #c9a86c;
    font-size: 1.1rem;
    width: 1.4rem;
    text-align: center;
}
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
    margin: 0.5rem 0 1.5rem 0;
    padding: 0;
    list-style: none;
}
.feature-list li {
    font-size: 0.92rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.feature-list li i { color: #c9a86c; font-size: 0.6rem; }
.divider-light {
    width: 60px;
    height: 3px;
    background: #c9a86c;
    border-radius: 4px;
    margin: 0.5rem 0 1.25rem 0;
}
.contact-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.8rem;
    margin-top: 0.5rem;
}
.contact-row .phones {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a2a3a;
}
.contact-row .phones i { color: #c9a86c; margin-right: 0.3rem; }
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #c9a86c;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.7rem 1.8rem;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.25s, transform 0.15s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(201, 168, 108, 0.35);
}
.btn-cta:hover {
    background: #b8975a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 108, 0.4);
}
.address {
    font-size: 0.82rem;
    color: #5a6f7e;
    margin-top: 1rem;
    border-top: 1px solid #edeae3;
    padding-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.address i { color: #c9a86c; font-size: 0.9rem; }
.address .web { color: #c9a86c; font-weight: 600; text-decoration: none; }
.address .web:hover { text-decoration: underline; }

/* Responsive */
@media screen and (max-width: 1024px) {
    .events-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .details-col { padding: 2rem; }
    .details-col h2 { font-size: 1.7rem; }
}
@media screen and (max-width: 820px) {
    .events-grid { grid-template-columns: 1fr; border-radius: 20px; }
    .carousel-col, .carousel-container, .carousel-slide { min-height: 320px; }
    .details-col { padding: 2rem 1.8rem; }
    .details-col h2 { font-size: 1.6rem; }
    .contact-row { flex-direction: column; align-items: flex-start; }
    .btn-cta { width: 100%; justify-content: center; }
}
@media screen and (max-width: 480px) {
    .events-section { padding: 0 1rem; margin: 2rem auto; }
    .events-section .section-title { font-size: 1.5rem; }
    .carousel-col, .carousel-container, .carousel-slide { min-height: 240px; }
    .details-col { padding: 1.5rem 1.2rem; }
    .details-col h2 { font-size: 1.3rem; }
    .carousel-btn { width: 34px; height: 34px; font-size: 0.9rem; }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
}

/* Make sure the Corporate Events section is always visible */
#corporate-events {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* If WOW.js is hiding it, override it */
#corporate-events.wow {
    visibility: visible !important;
    animation-name: none !important;
}

/* ===== RESPONSIVE: TABLETS ===== */
@media screen and (max-width: 820px) {
    .carousel-col {
        min-height: 340px;
    }
    .carousel-container {
        min-height: 340px;
    }
    .carousel-slide {
        min-height: 340px;
    }
    .details-col {
        padding: 2rem 1.8rem !important;
    }
}
.corporate-events.carousel-slides {
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    }

/* ===== RESPONSIVE: MOBILES ===== */
@media screen and (max-width: 480px) {
    .carousel-col {
        min-height: 480px;
    }
    .carousel-container {
        min-height: 480px;
    }
    .carousel-slide {
        min-height: 480px;
        background-position: top center;
        background-size: cover;
        display: flex;
        transition: transform 0.6s ease;
        width: 100%;
        height: 100%;
    }
    
    .details-col {
        padding: 1.5rem 1.2rem !important;
    }
    .events-section .section-title {
        font-size: 1.5rem;
    }
    .details-col h2 {
        font-size: 1.3rem;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
}

/* ===== RESPONSIVE: VERY SMALL MOBILES ===== */
@media screen and (max-width: 380px) {
    .carousel-col {
        min-height: 400px;
    }
    .carousel-container {
        min-height: 400px;
    }
    .carousel-slide {
        min-height: 400px;
    }
}