/* 
    ======================================================================
    (Defined here to easily reuse these exact colors on next pages)
    ======================================================================
*/
:root {
    /* Brand Colors (Hex) */
    --primary-dark: #004632;
    --primary-light: #FFFBFB;
    --accent-yellow: #FEF8DD;
    --accent-green: #BDD0A0;
    --text-main: #1a1a1a;
    --white: #ffffff;
    --black: #000000;

    /* RGB for Opacity Usage */
    --primary-dark-rgb: 0, 70, 50;
    --primary-light-rgb: 255, 251, 251;
    --accent-yellow-rgb: 254, 248, 221;
    --accent-green-rgb: 189, 208, 160;
    --white-rgb: 255, 255, 255;
    --black-rgb: 0, 0, 0;

    /* Shadows */
    --shadow-light: rgba(var(--primary-dark-rgb), 0.15);
    --shadow-strong: rgba(var(--primary-dark-rgb), 0.3);
}

/* ======================================================================
   THEME UTILITY CLASSES (Colors & Typography)
   ====================================================================== */

/* Backgrounds */
.bg-primary-dark {
    background-color: var(--primary-dark);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-accent-yellow {
    background-color: var(--accent-yellow);
}

.bg-accent-green {
    background-color: var(--accent-green);
}

.bg-theme-green {
    background-color: var(--accent-green);
}

/* Legacy Support */
.bg-white {
    background-color: var(--white);
}

/* Text Colors */
.text-primary-dark {
    color: var(--primary-dark);
}

.text-primary-light {
    color: var(--primary-light);
}

.text-accent-yellow {
    color: var(--accent-yellow);
}

.text-accent-green {
    color: var(--accent-green);
}

.text-main {
    color: var(--text-main);
}

.text-white {
    color: var(--white);
}

/* Typography - Headings */
.acs-heading-primary {
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acs-heading-secondary {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .acs-heading-primary {
        font-size: 2.2rem;
    }

    .acs-heading-secondary {
        font-size: 1.4rem;
    }
}

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

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

html,
body,
input,
button,
textarea,
select {
    font-family: 'Inter', 'Roboto', sans-serif !important;
}

/* Make the overall theme brighter by using the light color as background */
body {
    background-color: var(--primary-light);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 250px;
}

@media (max-width: 1200px) {
    body {
        padding-top: 200px;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 150px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }
}

/* -----------------------------
   Hero Banner Section 
   ----------------------------- */
.acs-hero-banner {
    position: relative;
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--primary-light);
    background-image: linear-gradient(rgba(var(--primary-light-rgb), 0.507), rgba(var(--accent-green-rgb), 0.596)), url('../images/banner/banner1.jpeg');
    background-size: 100% 100%, cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 5px solid var(--primary-dark);
}

.acs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.acs-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(var(--black-rgb), 0.15), -1px -1px 0 rgba(var(--white-rgb), 0.5);
}

.acs-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 45px;
    font-weight: 800;
    color: var(--primary-dark);
    background-color: var(--accent-green);
    padding: 12px 35px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(var(--primary-dark-rgb), 0.2);
    border: 2px solid var(--white);
}

.acs-hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.acs-btn-primary,
.acs-btn-secondary {
    padding: 16px 45px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px var(--shadow-strong);
    letter-spacing: 1px;
}

.acs-btn-primary {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    border: 2px solid transparent;
}

.acs-btn-secondary {
    background-color: rgba(var(--white-rgb), 0.8);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    backdrop-filter: blur(5px);
}

.acs-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--accent-green);
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(var(--black-rgb), 0.2);
}

.acs-btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(var(--black-rgb), 0.2);
}

.acs-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--accent-yellow-rgb), 0.1) 0%, transparent 60%);
    z-index: 1;
}

/* -----------------------------
   Header Styles 
   ----------------------------- */
@keyframes slideDownHeader {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.acs-header {
    background-color: white !important;
    border-bottom: 1px solid rgba(var(--primary-dark-rgb), 0.1);
    backdrop-filter: blur(15px);
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(var(--primary-dark-rgb), 0.08);
    transition: all 0.4s ease;
    animation: slideDownHeader 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.acs-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Logo Section */
.acs-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.acs-logo {
    height: 150px;
    width: auto;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 5px 10px rgba(var(--black-rgb), 0.1));
}

.acs-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 8px 20px rgba(var(--primary-dark-rgb), 0.25));
}

.acs-logo-text h1 {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(var(--black-rgb), 0.1);
    margin-bottom: 3px;
}

.acs-logo-text p {
    font-size: 0.95rem;
    color: var(--primary-dark);
    letter-spacing: 2px;
    font-weight: 800;
    opacity: 0.9;
    text-transform: uppercase;
    margin: 0;
}

/* Mobile Menu Button - Hidden by default */
.acs-mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-dark);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.acs-mobile-menu-btn:hover {
    transform: scale(1.1);
}

/* Navigation Links */
.acs-drawer-close-btn {
    display: none;
    /* Hidden on desktop view */
}

.acs-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(var(--primary-dark-rgb), 0.08);
    padding-top: 12px;
}

.acs-nav-list {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.acs-nav-link {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 10px 15px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

/* Smart scaling for laptops to prevent breaking single line */
@media (min-width: 993px) and (max-width: 1400px) {
    .acs-nav-list {
        gap: 6px;
    }

    .acs-nav-link {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

/* High-end hover effect using pseudo-element */
.acs-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green) 0%, rgba(var(--accent-green-rgb), 0.5) 100%);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    border-radius: 30px;
}

.acs-nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.acs-nav-link:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--accent-green-rgb), 0.6);
}

/* Dropdown Styles */
.acs-nav-item {
    position: relative;
    /* Required for absolute positioning of dropdown */
}

.acs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--primary-light);
    border-radius: 8px;
    box-shadow: 0 10px 25px var(--shadow-strong);
    padding: 10px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    list-style: none;
    border-top: 3px solid var(--accent-yellow);
}

/* Show dropdown on hover for desktop */
@media (min-width: 993px) {
    .acs-nav-item.acs-dropdown:hover .acs-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Show dropdown on active (click) - used primarily for mobile */
.acs-nav-item.acs-dropdown.active .acs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.acs-dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.acs-dropdown-link:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    padding-left: 25px;
    /* Slight indent on hover for effect */
}

.acs-arrow {
    font-size: 0.7rem;
    margin-left: 3px;
    vertical-align: middle;
}

/* -----------------------------
   Footer Styles 
   ----------------------------- */
.acs-footer {
    background-color: white !important;
    color: var(--primary-light);
    padding: 30px 0 20px;
    border-top: 5px solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
}

/* Soft gradient overlay on footer for premium feel */
.acs-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--shadow-strong), transparent 70%);
    pointer-events: none;
}

/* -----------------------------
   About Section
   ----------------------------- */
.acs-about-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--white) 0%, #f4f8ee 100%);
    position: relative;
    overflow: hidden;
}

.acs-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.acs-about-content h2 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.acs-about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background-color: var(--accent-green);
    border-radius: 5px;
}

.acs-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
    opacity: 0.85;
}

.acs-about-highlight {
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    font-size: 1.15rem !important;
    background: linear-gradient(90deg, rgba(var(--accent-green-rgb), 0.3) 0%, rgba(var(--white-rgb), 0) 100%);
    padding: 20px 25px;
    border-left: 5px solid var(--primary-dark);
    border-radius: 8px 0 0 8px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.acs-read-more-btn {
    background: transparent;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 800;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.acs-read-more-btn:hover {
    background-color: var(--primary-dark);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--black-rgb), 0.15);
}

.acs-about-image-wrapper {
    position: relative;
}

.acs-about-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
    display: block;
    animation: continuousFloat 6s ease-in-out infinite;
}

.acs-about-image:hover {
    transform: translateY(-10px);
}

.acs-about-image-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 20px;
    z-index: 1;
    animation: continuousFloat 8s ease-in-out infinite reverse;
}

/* -----------------------------
   Why Section
   ----------------------------- */
.acs-why-section {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    color: var(--primary-light);
}

.acs-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.acs-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.acs-section-header h2 {
    margin-bottom: 15px;
}

/* Colors for specific section headers are handled by utility classes */

.acs-heading-line {
    width: 80px;
    height: 5px;
    background-color: var(--accent-green);
    margin: 0 auto 20px;
    border-radius: 5px;
}

.acs-why-section .acs-section-header p {
    font-size: 1.1rem;
    color: rgba(var(--white-rgb), 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.acs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.acs-why-card {
    background: rgba(var(--white-rgb), 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--white-rgb), 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.2);
    transition: all 0.4s ease;
    border-top: 5px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.acs-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.4);
    background: rgba(var(--white-rgb), 0.1);
    border-top-color: var(--accent-green);
}

.acs-why-icon {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(var(--accent-green-rgb), 0.808);
    margin-bottom: 15px;
    line-height: 1;
    transition: color 0.4s ease;
}

.acs-why-card:hover .acs-why-icon {
    color: var(--accent-green);
}

.acs-why-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0;
}

.acs-why-footer {
    text-align: center;
    margin-top: 40px;
}

/* Custom button for dark bg */
.acs-why-section .acs-btn-primary {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.acs-why-section .acs-btn-primary:hover {
    background-color: var(--accent-green);
    color: var(--primary-dark);
}

/* -----------------------------
   Tree Timeline (Why Section)
   ----------------------------- */
.acs-tree-timeline {
    position: relative;
    padding: 40px 0;
}

/* The vertical line */
.acs-tree-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    /* Thicker for visibility */
    background-color: var(--accent-green);
    transform: translateX(-50%);
    z-index: 1;
}

/* Clearfix */
.acs-tree-timeline::after {
    content: "";
    display: table;
    clear: both;
}

.acs-tree-timeline .acs-timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 0;
    padding-bottom: 40px;
    /* Use padding for vertical spacing */
    box-sizing: border-box;
    z-index: 2;
}

/* Left Side Items */
.acs-tree-timeline .acs-timeline-item:nth-child(odd) {
    float: left;
    clear: left;
    padding-right: 50px;
    padding-left: 0;
    text-align: right;
}

/* Right Side Items */
.acs-tree-timeline .acs-timeline-item:nth-child(even) {
    float: right;
    clear: right;
    padding-left: 50px;
    text-align: left;
    margin-top: 80px;
    /* Staggering */
}

/* Dots in the center */
.acs-tree-timeline .acs-timeline-item::before {
    content: '';
    position: absolute;
    top: 10px;
    /* Aligned exactly with the center of the '01' badge */
    width: 20px;
    height: 20px;
    background-color: var(--primary-dark);
    border: 4px solid var(--accent-green);
    border-radius: 50%;
    z-index: 3;
    transition: all 0.3s ease;
}

/* Dot positioning for left items */
.acs-tree-timeline .acs-timeline-item:nth-child(odd)::before {
    right: -14px;
    /* Centered on the 4px line */
    left: auto;
}

/* Dot positioning for right items */
.acs-tree-timeline .acs-timeline-item:nth-child(even)::before {
    left: -14px;
    /* Centered on the 4px line */
    right: auto;
}

/* Attractive Content Box */
.acs-tree-timeline .acs-timeline-item .acs-content {
    background: rgba(var(--white-rgb), 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(var(--accent-green-rgb), 0.2);
    box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: left;
    /* Keep readable text alignment */
}

.acs-tree-timeline .acs-timeline-item:hover .acs-content {
    transform: translateY(-5px);
    border-color: var(--accent-green);
}

.acs-tree-timeline .acs-timeline-item:hover::before {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    box-shadow: 0 0 15px rgba(var(--accent-yellow-rgb), 0.8);
}

.acs-tree-timeline .acs-time {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(var(--black-rgb), 0.2);
}

/* -----------------------------
   Event Schedule Section
   ----------------------------- */
.acs-schedule-section {
    padding: 100px 20px;
    background-color: var(--primary-dark);
    color: var(--white);
    position: relative;
}

.acs-schedule-section .acs-section-header .text-primary-dark {
    color: var(--accent-yellow);
}

.acs-schedule-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Colors handled by utility classes */

.acs-schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 50px;
}

.acs-schedule-col {
    background: var(--white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    border-top: 6px solid var(--accent-green);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.acs-schedule-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.acs-schedule-day-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

/* Day 1 - Accent Yellow Theme */
.acs-schedule-col:nth-child(1) .acs-schedule-day-header {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(var(--primary-dark-rgb), 0.1);
}

.acs-schedule-col:nth-child(1) .acs-schedule-day-header .acs-day-num {
    color: rgba(var(--primary-dark-rgb), 0.04);
}

/* Day 2 - Accent Green Theme */
.acs-schedule-col:nth-child(2) .acs-schedule-day-header {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(var(--primary-dark-rgb), 0.1);
}

.acs-schedule-col:nth-child(2) .acs-schedule-day-header .acs-day-num {
    color: rgba(var(--primary-dark-rgb), 0.04);
}

.acs-schedule-day-header .acs-day-num {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    opacity: 1;
    position: absolute;
    right: 0;
    top: -20px;
    margin: 0;
    z-index: 0;
}

.acs-schedule-day-header h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 1px;
}

.acs-schedule-day-header::after {
    content: 'OFFICIAL PROGRAMMING';
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(var(--primary-dark-rgb), 0.5);
    z-index: 2;
}

.acs-schedule-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
}

.acs-schedule-timeline .acs-timeline-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 30px 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(var(--primary-dark-rgb), 0.1);
    box-shadow: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.acs-schedule-timeline .acs-timeline-item:last-child {
    border-bottom: none;
}

.acs-schedule-timeline .acs-timeline-item:hover {
    transform: scale(1.02);
    background: rgba(var(--accent-yellow-rgb), 0.3);
    border-radius: 16px;
    border-bottom-color: transparent;
    box-shadow: 0 10px 30px rgba(var(--primary-dark-rgb), 0.05);
}

.acs-schedule-timeline .acs-time {
    flex: 0 0 180px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    padding: 0 30px 0 0;
    margin: 0;
    border-right: 2px solid var(--accent-green);
    text-align: left;
    white-space: nowrap;
}

.acs-schedule-timeline .acs-timeline-item:nth-child(even) .acs-time {
    border-right: 2px solid var(--accent-yellow);
}

.acs-schedule-timeline .acs-content {
    flex: 1;
    padding-left: 30px;
}

.acs-schedule-timeline .acs-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 5px 0;
}

.acs-schedule-timeline .acs-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0 0 5px 0;
}

.acs-schedule-timeline .acs-content ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.acs-schedule-timeline .acs-content ul li {
    margin-bottom: 4px;
}

.acs-schedule-timeline .acs-speaker {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-dark) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.acs-schedule-timeline .acs-timeline-item:nth-child(even) .acs-speaker {
    background: var(--accent-green);
    color: var(--primary-dark) !important;
}

.acs-schedule-timeline .acs-subtitle {
    display: inline-block;
    background: rgba(var(--accent-green-rgb), 0.3);
    color: var(--primary-dark) !important;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 10px;
}

/* Gala Dinner Special Card */
.acs-gala-card {
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.9) 0%, rgba(var(--primary-dark-rgb), 1) 100%);
    border: 2px solid var(--accent-yellow);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.acs-gala-card::after {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -15px;
    bottom: -20px;
    font-size: 6rem;
    color: rgba(var(--accent-yellow-rgb), 0.1);
    z-index: 0;
    transform: rotate(15deg);
}

.acs-gala-card h4 {
    color: var(--accent-yellow) !important;
    font-size: 1.4rem !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acs-venue-badge {
    display: inline-block;
    background: var(--accent-green);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0;
    position: relative;
    z-index: 1;
}



/* -----------------------------
   Concept Overview Section
   ----------------------------- */
.acs-concept-section {
    position: relative;
    width: 100%;
}

.acs-concept-left-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--primary-dark);
    z-index: 0;
}

.acs-concept-right-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--accent-green);
    z-index: 0;
}

.acs-concept-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.acs-concept-left {
    flex: 1;
    padding: 100px 50px 100px 20px;
    background-color: var(--primary-dark);
}

.acs-concept-right {
    flex: 1;
    padding: 100px 20px 100px 50px;
    background-color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acs-concept-left h2 {
    margin-bottom: 40px;
    line-height: 1.1;
}

.acs-concept-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acs-concept-item {
    display: flex;
    align-items: center;
    border: 2px solid var(--accent-green);
    padding: 15px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.acs-concept-item:hover {
    background-color: var(--accent-green);
    transform: translateX(10px);
}

.acs-concept-item:hover .acs-concept-num,
.acs-concept-item:hover .acs-concept-text {
    color: var(--primary-dark);
}

.acs-concept-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-green);
    margin-right: 20px;
    min-width: 40px;
    transition: color 0.3s ease;
}

.acs-concept-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.acs-concept-images {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.acs-concept-img1 {
    position: absolute;
    top: 0;
    right: 10%;
    width: 80%;
    height: auto;
    border: 4px solid var(--primary-dark);
    box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.2);
    z-index: 2;
    transition: transform 0.4s ease;
}

.acs-concept-img2 {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 70%;
    height: auto;
    border: 4px solid var(--primary-dark);
    box-shadow: 0 20px 40px rgba(var(--black-rgb), 0.2);
    z-index: 3;
    transition: transform 0.4s ease;
}

.acs-concept-img1:hover,
.acs-concept-img2:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* =========================================
   SPECTACULAR PREMIUM FOOTER DESIGN
   ========================================= */
.acs-footer {
    background-color: var(--accent-green);
    color: var(--primary-dark);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(var(--black-rgb), 0.05);
}

/* Subtle glowing light behind the footer content */
.acs-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(var(--white-rgb), 0.4) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.acs-footer-cta,
.acs-footer-main,
.acs-footer-bottom {
    position: relative;
    z-index: 2;
}

.acs-footer-cta {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1100px;
    margin: -60px auto 60px auto;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(var(--black-rgb), 0.3);
    position: relative;
    z-index: 20;
    border: 2px solid rgba(var(--white-rgb), 0.1);
}

.acs-cta-text {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin: 0;
    flex: 1;
    min-width: 300px;
    text-align: left;
    color: var(--primary-dark);
}

.acs-cta-btn {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--black-rgb), 0.15);
    letter-spacing: 1px;
}

.acs-cta-btn:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(var(--black-rgb), 0.25);
}

/* Main Footer Grid */
.acs-footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Footer Columns Alignment */
.acs-col-brand,
.acs-col-links,
.acs-col-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.acs-footer-logo {
    height: 350px;
    width: auto;
    margin-top: 0;
    margin-bottom: 0 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(var(--primary-dark-rgb), 0.15));
}

.acs-footer-logo:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(var(--primary-dark-rgb), 0.25));
}

.acs-footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.85;
    max-width: 380px;
    margin: 0;
}

/* Title for Links & Contact */
.acs-footer-title {
    font-size: 1.2rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
}

.acs-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
    width: 40px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 2px;
}

/* Navigation Links */
.acs-col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.acs-col-links a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0;
    display: inline-block;
    opacity: 0.85;
}

.acs-col-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    text-decoration: underline;
}

/* Contact Info */
.acs-contact-item {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.85;
}

.acs-contact-item a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.acs-contact-item a:hover {
    text-decoration: underline;
}

/* Bottom Strip */
.acs-footer-bottom {
    background-color: var(--primary-dark);
    color: white !important;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.acs-footer-bottom p {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* Social Instagram */
.acs-footer-social {
    display: flex;
    gap: 15px;
}

.acs-social-instagram {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(var(--black-rgb), 0.2);
}

.acs-social-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(var(--black-rgb), 0.4);
    color: white;
}

.acs-social-linkedin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #0077b5;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(var(--black-rgb), 0.2);
}

.acs-social-linkedin:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(var(--black-rgb), 0.4);
    color: white;
    background: #005582;
}

/* =========================================
   ANIMATIONS & EFFECTS (Climbing Theme)
   ========================================= */
@keyframes climbUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }

    70% {
        transform: translateY(-10px) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes continuousFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
}

.animate-on-scroll.is-visible {
    animation: climbUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}


/* =========================================
   Contact Form Styles
   ========================================= */
.acs-contact-page {
    padding: 100px 20px;
    background-color: var(--primary-light);
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.acs-contact-container {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(var(--primary-dark-rgb), 0.15);
    border: 2px solid var(--primary-dark);
    border-top: 8px solid var(--primary-dark);
}

.acs-contact-container h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 800;
}

.acs-contact-form {
    display: flex;
    flex-direction: column;
}

.acs-form-group {
    margin-bottom: 25px;
}

.acs-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.acs-form-control {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(var(--primary-dark-rgb), 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    background: #f9fdfa;
}

.acs-form-control::placeholder {
    color: #999;
    font-weight: 400;
}

.acs-form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(var(--primary-dark-rgb), 0.15);
}

textarea.acs-form-control {
    resize: vertical;
    min-height: 140px;
}

.acs-contact-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 8px 20px rgba(var(--primary-dark-rgb), 0.3);
}

.acs-contact-btn:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(var(--accent-green-rgb), 0.5);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* =========================================
   Industry Talks Detail Page
   ========================================= */
.talks-hero {
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.75), rgba(var(--primary-dark-rgb), 0.5)), url('../images/banner/banner1.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: var(--white);
}

.talks-hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.talks-hero-desc {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.talks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px 40px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.talk-card {
    background: var(--white);
    border-radius: 0 15px 15px 0;
    padding: 40px 40px 40px 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 8px solid var(--primary-dark);
    transition: all 0.3s ease;
    position: relative;
}

.talk-card:hover,
.talk-card.hover-active {
    transform: translateX(10px);
    box-shadow: -5px 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-yellow);
}

.talk-number {
    position: absolute;
    left: -25px;
    top: 30px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.15);
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.talk-card:hover .talk-number,
.talk-card.hover-active .talk-number {
    transform: rotate(0deg) scale(1.1);
    background: var(--primary-dark);
    color: var(--accent-yellow);
}

.talk-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 900;
}

.talk-card p {
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 600;
}

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

.talk-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.5;
}

.talk-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.talk-summary {
    background: rgba(var(--accent-green-rgb), 0.15);
    border-left: 6px solid var(--primary-dark);
    padding: 40px;
    margin: 0 auto 80px;
    max-width: 900px;
    border-radius: 0 12px 12px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.talk-summary p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* =========================================
   Industry Talks Home Section
   ========================================= */
.acs-talks-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.acs-talks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.acs-talks-content h2 {
    font-size: 2.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}

.acs-talks-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acs-talk-item {
    display: flex;
    align-items: center;
    background: rgba(var(--accent-green-rgb), 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--primary-dark);
}

.acs-talk-item span {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-right: 20px;
}

.acs-talk-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-main);
}

.acs-talks-btn-wrapper {
    margin-top: 20px;
    align-self: flex-start;
}

.acs-talks-images-wrapper {
    position: relative;
    height: 500px;
}

.acs-talks-img-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 350px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    z-index: 1;
}

.acs-talks-img-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 8px solid var(--white);
    object-fit: cover;
    z-index: 2;
}

/* =========================================
   Concept Overview Section
   ========================================= */
.acs-concept-overview {
    padding: 70px 20px;
    background-color: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.acs-concept-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.acs-concept-image-wrapper {
    position: relative;
    border-radius: 50% 20px 20px 50%;
}

.acs-concept-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 50% 20px 20px 50%;
    box-shadow: -20px 20px 0 var(--accent-yellow);
}

.acs-concept-floating-badge {
    position: absolute;
    top: 50px;
    left: -30px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 30px;
    border-radius: 50%;
    width: 160px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 5;
    animation: continuousFloat 4s ease-in-out infinite;
}

.acs-concept-floating-badge span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.acs-concept-floating-badge p {
    font-size: 0.8rem;
    font-weight: 800;
    margin: 5px 0 0;
    text-transform: uppercase;
}

.acs-concept-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.15;
}

.acs-concept-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.acs-concept-item {
    background: transparent;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.acs-concept-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: var(--accent-yellow);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 4px;
}

.acs-concept-item:hover {
    padding-left: 30px;
    background: linear-gradient(90deg, rgba(var(--accent-yellow-rgb), 0.25) 0%, transparent 100%);
    border-bottom-color: transparent;
    transform: translateX(10px);
}

.acs-concept-item:hover::before {
    transform: scaleY(1);
}

.acs-concept-item .number {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-yellow);
    margin-right: 20px;
    width: 30px;
    transition: transform 0.4s ease, color 0.4s ease;
}

.acs-concept-item:hover .number {
    color: var(--white);
    transform: scale(1.1);
}

.acs-concept-item h4 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.acs-concept-item:hover h4 {
    color: var(--accent-yellow);
}

/* -----------------------------
   Responsive Design
   ----------------------------- */
@media (max-width: 992px) {
    .acs-about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .acs-about-image-bg {
        top: 20px;
        right: -10px;
    }

    .acs-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acs-header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 20px;
        position: relative;
    }

    .acs-logo-section {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .acs-logo {
        height: 85px;
        /* Increased size since text is removed */
    }

    .acs-logo-text {
        display: none;
        /* Hide redundant text on mobile for a clean app-like look */
    }

    .acs-mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        background: rgba(var(--primary-dark-rgb), 0.05);
        border-radius: 8px;
        padding: 10px 12px;
        transition: all 0.3s ease;
    }

    .acs-mobile-menu-btn:hover {
        background: rgba(var(--primary-dark-rgb), 0.1);
        transform: scale(1.05);
    }

    /* Premium Mobile Drawer Navigation */
    .acs-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen by default */
        width: 85vw;
        max-width: 400px;
        height: 100vh;
        background-color: var(--primary-dark);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 80px 30px 40px;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 999;
    }

    .acs-drawer-close-btn {
        position: absolute;
        top: 20px;
        right: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .acs-drawer-close-btn:hover {
        background: var(--accent-yellow);
        color: var(--primary-dark);
        transform: rotate(90deg);
    }

    .acs-nav.active {
        right: 0;
    }

    .acs-nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        gap: 15px;
    }

    .acs-nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .acs-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        text-align: left;
        color: var(--white);
        font-size: 1.1rem;
    }

    .acs-arrow {
        padding: 5px;
        font-size: 1rem;
        color: var(--accent-yellow);
        transition: transform 0.3s ease;
    }

    .acs-nav-item.active .acs-arrow {
        transform: rotate(180deg);
    }

    .acs-nav-link:hover {
        background-color: transparent;
        box-shadow: none;
        color: var(--accent-yellow);
        padding-left: 10px;
    }

    .acs-nav-link::before {
        display: none;
    }

    .acs-dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 15px;
        display: none;
        margin-top: 10px;
        border-left: 2px solid var(--accent-yellow);
    }

    .acs-dropdown-link {
        color: rgba(255, 255, 255, 0.7);
        padding: 10px 15px;
    }

    .acs-dropdown-link:hover {
        background: transparent;
        color: var(--accent-yellow);
        padding-left: 20px;
    }

    .acs-nav-item.active .acs-dropdown-menu {
        display: block;
        animation: slideDownHeader 0.3s ease;
    }

    .acs-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .acs-col-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .acs-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .acs-col-links,
    .acs-col-contact {
        text-align: center;
        align-items: center;
    }

    .acs-concept-left-bg,
    .acs-concept-right-bg {
        display: none;
    }

    .acs-concept-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .acs-concept-left {
        padding: 60px 20px;
    }

    .acs-concept-right {
        padding: 60px 20px;
    }

    .acs-concept-images {
        min-height: 400px;
    }

    .acs-concept-img1 {
        right: 0;
        width: 90%;
    }

    .acs-concept-img2 {
        bottom: 0;
        width: 85%;
    }

    .acs-schedule-grid {
        grid-template-columns: 1fr;
    }

    .acs-venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .acs-footer-main {
        grid-template-columns: 1fr;
    }

    .acs-why-grid {
        grid-template-columns: 1fr;
    }

    /* Headings handled by .acs-heading-primary media query */

    .acs-logo {
        height: 100px;
    }

    .acs-footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .acs-cta-text {
        font-size: 1.4rem;
    }

    .acs-schedule-day-header .acs-day-num {
        font-size: 2.5rem;
    }

    /* Minimal List Mobile Override - Compact View */
    .acs-schedule-grid {
        gap: 30px;
        margin-top: 30px;
    }

    .acs-schedule-col {
        padding: 25px 15px;
        border-radius: 15px;
    }

    .acs-schedule-day-header {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .acs-schedule-day-header h3 {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }

    .acs-schedule-day-header .acs-day-num {
        font-size: 4rem;
        top: -5px;
    }

    .acs-schedule-timeline .acs-timeline-item {
        flex-direction: column;
        padding: 15px 10px;
    }

    .acs-schedule-timeline .acs-time {
        flex: none;
        width: 100%;
        text-align: left;
        border-right: none;
        border-bottom: 2px solid var(--accent-green);
        padding: 0 0 5px 0;
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .acs-schedule-timeline .acs-timeline-item:nth-child(even) .acs-time {
        border-bottom: 2px solid var(--accent-yellow);
    }

    .acs-schedule-timeline .acs-content {
        padding-left: 0;
    }

    .acs-schedule-timeline .acs-content h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .acs-schedule-timeline .acs-content p,
    .acs-schedule-timeline .acs-content ul {
        font-size: 0.85rem;
    }

    .acs-schedule-timeline .acs-speaker,
    .acs-schedule-timeline .acs-subtitle {
        padding: 2px 8px;
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    /* Tree Timeline Mobile Override */
    .acs-tree-timeline::before {
        display: none;
    }

    .acs-tree-timeline .acs-timeline-item {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .acs-tree-timeline .acs-timeline-item:nth-child(odd),
    .acs-tree-timeline .acs-timeline-item:nth-child(even) {
        float: none;
        text-align: left;
        margin-top: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .acs-tree-timeline .acs-timeline-item:nth-child(odd)::before,
    .acs-tree-timeline .acs-timeline-item:nth-child(even)::before {
        display: none;
    }

    .acs-tree-timeline .acs-time {
        margin-bottom: -20px;
        position: relative;
        z-index: 10;
        margin-left: 20px;
    }

    /* Reduce vertical spacing for mobile sections */
    .acs-about-section,
    .acs-why-section,
    .acs-schedule-section,
    .acs-concept-section,
    .acs-venue-details-section {
        padding: 50px 20px;
    }

    .acs-footer {
        padding: 50px 0 20px;
    }

    .acs-about-container {
        gap: 30px;
    }

    .acs-why-grid {
        gap: 20px;
    }

    .acs-concept-container {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .acs-concept-content {
        display: contents;
    }

    .acs-concept-content h2 {
        order: 1;
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 40px;
    }

    .acs-concept-image-wrapper {
        order: 2;
        width: 90%;
        max-width: 400px;
        margin: 0 auto 30px auto;
        border-radius: 20px;
        position: relative;
    }

    .acs-concept-main-img {
        height: 320px;
        border-radius: 20px;
        box-shadow: 15px 15px 0 var(--accent-yellow);
    }

    .acs-concept-floating-badge {
        width: 110px;
        height: 110px;
        left: auto;
        right: -15px;
        top: auto;
        bottom: -20px;
        padding: 15px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .acs-concept-floating-badge span {
        font-size: 1.4rem;
    }

    .acs-concept-floating-badge p {
        font-size: 0.65rem;
    }

    .acs-concept-list {
        order: 3;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 30px 20px;
        margin-bottom: 20px;
        width: 100%;
    }

    .acs-concept-content .acs-btn-primary {
        order: 4;
        align-self: center;
        margin-top: 15px;
        background: var(--accent-yellow) !important;
        color: var(--primary-dark) !important;
        border: 2px solid var(--accent-yellow) !important;
    }

    /* Venue Mobile Override */
    .acs-venue-hero-content {
        padding: 60px 20px;
    }

    .acs-venue-title {
        font-size: 2.5rem;
    }

    .acs-venue-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .acs-venue-media-wrapper.map-wrapper {
        height: 300px;
    }
}

/* -----------------------------
   Venue Details Page
   ----------------------------- */
.acs-venue-hero {
    position: relative;
    background: url('../images/climbing-wall.jpg') no-repeat center center/cover;
    /* Since we might not have a specific hero image for Yashobhoomi, we'll use a deep green gradient fallback */
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.acs-venue-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.95), rgba(var(--primary-dark-rgb), 0.8));
    z-index: 1;
}

.acs-venue-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.acs-venue-subtitle {
    display: inline-block;
    color: var(--accent-yellow);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.acs-venue-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin: 0 0 15px 0;
    color: var(--white);
}

.acs-venue-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.acs-venue-details-section {
    padding: 100px 20px;
    background-color: var(--primary-light);
    position: relative;
    overflow: hidden;
}

/* Background floating shapes */
.acs-venue-details-section::before,
.acs-venue-details-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: venue-float 15s infinite alternate ease-in-out;
}

.acs-venue-details-section::before {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(var(--accent-green-rgb), 0.15);
}

.acs-venue-details-section::after {
    bottom: -150px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: rgba(var(--accent-yellow-rgb), 0.1);
    animation-delay: -5s;
}

@keyframes venue-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.acs-venue-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.acs-venue-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.acs-venue-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 40px;
}

.acs-venue-info-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 6px solid var(--accent-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.acs-venue-info-box:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.acs-info-icon {
    font-size: 2rem;
    background: rgba(var(--accent-green-rgb), 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.acs-info-content h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 0 0 10px 0;
}

.acs-info-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

.acs-venue-media {
    display: block;
}

.acs-venue-media-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--white);
    background: var(--white);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.acs-venue-media-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.acs-venue-media-wrapper.map-wrapper {
    height: 450px;
    /* Exact height user wanted */
    width: 100%;
}

.acs-venue-media-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Metro Connectivity Cards */
.acs-metro-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.acs-metro-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.acs-metro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 6px;
    background: #ccc;
    transition: width 0.4s ease;
}

.acs-metro-card.orange-line::before {
    background: #f36f21;
}

.acs-metro-card.blue-line::before {
    background: #0072bc;
}

.acs-metro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.acs-metro-card:hover::before {
    width: 12px;
}

.acs-metro-card.orange-line {
    border-left-color: #f36f21;
}

.acs-metro-card.blue-line {
    border-left-color: #0072bc;
}

.acs-metro-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.acs-metro-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0;
    position: relative;
}

.acs-metro-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: metro-pulse 2s infinite;
}

@keyframes metro-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.acs-metro-card.orange-line .acs-metro-dot {
    background: #f36f21;
}

.acs-metro-card.orange-line .acs-metro-dot::after {
    border-color: #f36f21;
}

.acs-metro-card.blue-line .acs-metro-dot {
    background: #0072bc;
}

.acs-metro-card.blue-line .acs-metro-dot::after {
    border-color: #0072bc;
}

.acs-metro-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.acs-metro-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

/* =========================================
   Responsive Overrides for Venue Page
   ========================================= */
@media (max-width: 992px) {
    .acs-venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .acs-venue-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .acs-venue-media-wrapper.map-wrapper {
        height: 280px;
        border-width: 3px;
        border-radius: 12px;
    }

    .acs-venue-details-section {
        padding: 40px 15px;
    }

    .acs-venue-hero-content {
        padding: 50px 15px;
    }

    .acs-venue-title {
        font-size: 2.2rem;
    }

    .acs-venue-info-box {
        padding: 15px;
        gap: 15px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .acs-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .acs-info-content h4 {
        font-size: 1.1rem;
    }

    .acs-info-content p {
        font-size: 0.85rem;
    }

    .acs-metro-card {
        padding: 15px;
        border-radius: 12px;
    }

    .acs-metro-header h4 {
        font-size: 1.1rem;
    }

    .acs-metro-card p {
        font-size: 0.85rem;
    }

    /* Hero Banner Mobile Overrides */
    .acs-hero-banner {
        padding: 80px 15px;
        min-height: 60vh;
    }

    .acs-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .acs-hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 15px 25px;
        border-radius: 20px;
        margin-bottom: 35px;
    }

    .acs-hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .acs-hero-buttons .acs-btn-primary,
    .acs-hero-buttons .acs-btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Footer Mobile Overrides */
    .acs-footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 15px 15px 15px;
        text-align: center;
    }

    .acs-col-brand,
    .acs-col-links,
    .acs-col-contact {
        align-items: center;
        text-align: center;
    }

    .acs-col-links ul {
        align-items: center;
    }

    .acs-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .acs-footer-logo {
        height: 90px;
        width: auto;
        margin-bottom: 0px;
    }

    .acs-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .acs-footer-social {
        justify-content: center;
    }
}

/* ======================================================================
   SPEAKERS & MOTIVATORS SECTION
   ====================================================================== */
.speakers-hero {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #00281b 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.speakers-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 100%, rgba(var(--accent-green-rgb), 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.speakers-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent-yellow);
    position: relative;
    z-index: 2;
}

.speakers-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.speakers-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.speaker-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(var(--primary-dark-rgb), 0.05);
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(var(--accent-green-rgb), 0.5);
}

.speaker-header {
    position: relative;
    height: 140px;
    background: var(--primary-dark);
}

.speaker-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--white);
    border: 6px solid var(--white);
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-body {
    padding: 95px 40px 40px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.speaker-title {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.speaker-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    text-align: justify;
    margin-bottom: 25px;
}

.speaker-quote {
    background: rgba(var(--accent-green-rgb), 0.15);
    border-left: 4px solid var(--accent-green);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-align: left;
    margin-top: auto;
}

@media (max-width: 768px) {
    .speakers-hero h1 {
        font-size: 2.5rem;
    }

    .speakers-container {
        grid-template-columns: 1fr;
    }

    .speaker-body {
        padding: 95px 25px 30px;
    }
}

/* ======================================================================
   PREMIUM SPEAKERS SECTION
   ====================================================================== */
.speakers-container-premium {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.premium-speaker-card {
    display: flex;
    flex-direction: row;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.356);
    border: 1px solid rgba(var(--primary-dark-rgb), 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.premium-speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(var(--primary-dark-rgb), 0.15);
    border-color: rgba(var(--accent-green-rgb), 0.5);
}

.premium-speaker-image {
    width: 250px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.premium-speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-speaker-card:hover .premium-speaker-image img {
    transform: scale(1.05);
}

.premium-speaker-overlay {
    display: none;
}

.premium-speaker-content {
    flex-grow: 1;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.premium-speaker-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 2px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.premium-speaker-title {
    display: inline-block;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.premium-speaker-divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-green);
    margin-bottom: 10px;
    border-radius: 2px;
}

.premium-speaker-bio p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 10px;
    text-align: left;
}

.premium-speaker-quote {
    background: rgba(var(--accent-green-rgb), 0.1);
    border-left: 4px solid var(--accent-green);
    padding: 10px 15px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.6;
}



@media (max-width: 992px) {
    .speakers-container-premium {
        grid-template-columns: 1fr;
    }

    .premium-speaker-card,
    .premium-speaker-card:nth-child(even) {
        flex-direction: column;
        padding: 40px 20px;
    }

    .premium-speaker-image {
        width: 120px;
        height: 120px;
        min-height: 120px;
        border-radius: 50%;
        margin: 0 auto 25px;
        border: 4px solid var(--accent-green);
        box-shadow: 0 10px 20px rgba(var(--primary-dark-rgb), 0.15);
        overflow: hidden;
        flex-shrink: 0;
    }

    .premium-speaker-overlay {
        display: none !important;
    }

    .premium-speaker-content {
        width: 100%;
        padding: 0;
        text-align: center;
        align-items: center;
    }

    .premium-speaker-name {
        font-size: 2rem;
    }

    .premium-speaker-title {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .premium-speaker-divider {
        margin: 0 auto 20px;
    }

    .premium-speaker-bio p {
        text-align: center;
        font-size: 1.05rem;
    }

    .premium-speaker-quote {
        font-size: 1.1rem;
        padding: 20px;
        border-left: none;
        border-top: 4px solid var(--accent-green);
        border-radius: 12px;
        margin-top: 20px;
        text-align: center;
    }
}

/* ======================================================================
   PREMIUM VENUE VIDEO TOUR SECTION
   ====================================================================== */
.acs-venue-video-section {
    width: 100%;
    padding: 0 20px;
}

.acs-video-premium-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #000;
    position: relative;
    cursor: pointer;
    border: 6px solid var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.acs-video-premium-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(var(--primary-dark-rgb), 0.25);
}

.acs-venue-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.acs-video-premium-wrapper.is-playing .acs-venue-video {
    opacity: 1;
}

/* Sleek Play Button Overlay */
.acs-play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.acs-play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 8px;
    /* Optical centering */
    transition: border-color 0.3s ease;
}

.acs-video-premium-wrapper:hover .acs-play-btn-overlay {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translate(-50%, -50%) scale(1.1);
}

.acs-video-premium-wrapper:hover .acs-play-icon {
    border-color: transparent transparent transparent var(--primary-dark);
}

/* ------------------------------------
   ROCK CLIMBING TRIP NEW DESIGN
------------------------------------ */
/* ------------------------------------
   ROCK CLIMBING TRIP - THEMED DESIGN
------------------------------------ */
.trip-page-body {
    background-color: var(--primary-light);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.trip-modern-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background-color: var(--primary-dark);
}

.trip-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/Trip/1.JPEG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.trip-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.6) 0%, rgba(var(--primary-dark-rgb), 0.2) 100%);
    z-index: 1;
}

.trip-modern-hero .content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.trip-modern-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--primary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.trip-modern-hero p {
    font-size: 1.3rem;
    color: var(--accent-yellow);
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-trip-primary {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: var(--accent-yellow);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-trip-primary:hover {
    transform: translateY(-5px);
    background: var(--accent-green);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Details Section */
.trip-details-section {
    padding: 100px 20px;
    background-color: var(--primary-light);
}

.trip-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Split Block (Zig-Zag) */
.trip-split-block {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
}

.trip-split-block.reverse {
    flex-direction: row-reverse;
}

.trip-text-content {
    flex: 1;
}

.trip-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--accent-green-rgb), 0.3);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    border: 1px solid var(--accent-green);
}

.trip-heading {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.trip-text-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 20px;
}

.trip-highlights-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trip-highlights-list li {
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
    background: var(--white, #ffffff);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(var(--primary-dark-rgb), 0.06);
    box-shadow: 0 4px 15px rgba(var(--primary-dark-rgb), 0.03);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.trip-highlights-list li:hover {
    transform: translateX(8px);
    border-color: rgba(var(--accent-green-rgb), 0.5);
    box-shadow: 0 8px 25px rgba(var(--primary-dark-rgb), 0.08);
}

.trip-highlights-list li i {
    color: var(--primary-dark);
    background: var(--accent-yellow);
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

/* Image Styling */
.trip-image-content {
    flex: 1;
    position: relative;
}

.trip-image-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(var(--primary-dark-rgb), 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.trip-image-content:hover img {
    transform: translateY(-10px);
}

.trip-image-box {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--accent-green);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.5s ease;
}

.trip-split-block.reverse .trip-image-box {
    left: 20px;
    background-color: var(--accent-yellow);
}

.trip-image-content:hover .trip-image-box {
    transform: translate(10px, -10px);
}

/* CTA Box */
.trip-cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #003020 100%);
    padding: 80px 40px;
    border-radius: 30px;
    color: var(--primary-light);
    box-shadow: 0 20px 50px rgba(var(--primary-dark-rgb), 0.2);
}

.trip-cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--accent-yellow);
}

.trip-cta-box p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn-trip-secondary {
    display: inline-block;
    padding: 16px 45px;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: var(--primary-light);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-trip-secondary:hover {
    background: var(--accent-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {

    .trip-split-block,
    .trip-split-block.reverse {
        flex-direction: column;
        text-align: left;
        gap: 40px;
    }

    .trip-highlights-list li {
        justify-content: flex-start;
    }

    .trip-image-box,
    .trip-split-block.reverse .trip-image-box {
        top: 10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .trip-modern-hero {
        min-height: 30vh;
        padding: 40px 15px;
    }

    .trip-modern-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .trip-modern-hero p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .trip-heading {
        font-size: 2.2rem;
    }

    .trip-cta-box h2 {
        font-size: 2.2rem;
    }

    .trip-details-section {
        padding: 50px 20px;
    }

    .trip-split-block {
        margin-bottom: 60px;
    }
}

/* Speaker Interest Form CSS */
.speaker-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    font-weight: 800;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--accent-yellow-rgb), 0.3);
}

.speaker-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--accent-yellow-rgb), 0.5);
    background: var(--accent-green);
}

.speaker-form-section {
    padding: 80px 20px;
    background: var(--white);
}

.speaker-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-dark-rgb), 0.08);
    box-shadow: 0 20px 40px rgba(var(--primary-dark-rgb), 0.05);
}

.speaker-form-wrapper h2 {
    color: var(--primary-dark);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 900;
}

.speaker-form-sub {
    text-align: center;
    color: var(--text-main);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.speaker-application-form .form-group {
    margin-bottom: 25px;
}

.speaker-application-form .form-row {
    display: flex;
    gap: 20px;
}

.speaker-application-form .form-row .form-group {
    flex: 1;
}

.speaker-application-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.speaker-application-form input,
.speaker-application-form select,
.speaker-application-form textarea {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.speaker-application-form input:focus,
.speaker-application-form select:focus,
.speaker-application-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(var(--accent-green-rgb), 0.1);
}

.speaker-submit-btn {
    background: var(--primary-dark);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 30px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.speaker-submit-btn:hover {
    background: var(--accent-green);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-dark-rgb), 0.1);
}

@media (max-width: 768px) {
    .speaker-application-form .form-row {
        flex-direction: column;
        gap: 0;
    }

    .speaker-form-wrapper {
        padding: 30px 20px;
    }
}

/* Speaker Modal Popup CSS */
.speaker-modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--primary-dark-rgb), 0.85);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.speaker-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid rgba(var(--primary-dark-rgb), 0.1);
    width: 90%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.4s ease-out;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.speaker-modal-close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.speaker-modal-close:hover,
.speaker-modal-close:focus {
    color: var(--primary-dark);
    text-decoration: none;
}

@media (max-width: 768px) {
    .acs-map-overlay {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .acs-header-date-text {
        display: none !important;
    }
}

/* Circular Sticker Badge Animation */
.acs-date-badge-container {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(var(--primary-dark-rgb), 0.1);
}

.acs-date-badge {
    width: 85px;
    height: 85px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(var(--primary-dark-rgb), 0.3);
    position: relative;
    animation: heartbeat-badge 2s infinite;
    cursor: default;
}

/* Outer dashed spinning border for the 'offer tag' feel */
.acs-date-badge::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px dashed var(--accent-green);
    border-radius: 50%;
    animation: spin-badge 10s linear infinite;
}

.acs-date-badge .badge-month {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}

.acs-date-badge .badge-days {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 2px 0;
}

.acs-date-badge .badge-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

@keyframes spin-badge {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes heartbeat-badge {

    0%,
    100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.08);
        box-shadow: 0 8px 20px rgba(var(--primary-dark-rgb), 0.4);
    }

    20% {
        transform: scale(1);
    }
}

/* Footer Phone Modal Styles */
.acs-phone-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.acs-phone-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUpModal 0.3s ease-out forwards;
}

.acs-phone-modal-content h4 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.acs-phone-modal-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.acs-phone-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.acs-phone-buttons a {
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.acs-btn-call {
    background: var(--primary-dark);
    color: #fff;
}

.acs-btn-call:hover {
    background: #000;
    color: #fff;
}

.acs-btn-wa {
    background: #1ca04d;
    color: #fff;
}

.acs-btn-wa:hover {
    background: #128c4f;
    color: #fff;
}

.acs-btn-cancel {
    background: none;
    border: none;
    color: #999;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: underline;
}

@keyframes slideUpModal {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Custom Multi-Select Grid */
.custom-multi-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-height: 200px;
    overflow-y: auto;
}

.custom-multi-select::-webkit-scrollbar {
    width: 6px;
}

.custom-multi-select::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 10px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
    user-select: none;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.checkbox-container:hover {
    color: var(--primary-dark);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--accent-green);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .custom-multi-select {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================
   PREMIUM VISITOR MODAL FORMS
   ====================================================================== */
.visitor-modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 20, 0.8);
    backdrop-filter: blur(12px);
    justify-content: center;
    align-items: center;
}

.visitor-modal-content {
    background: #ffffff;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 650px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideUp 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.visitor-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    font-weight: 300;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.visitor-modal-close:hover {
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.visitor-form-wrapper {
    padding: 40px;
}

.visitor-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.visitor-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

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

.visitor-form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.visitor-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.visitor-form-row .visitor-form-group {
    flex: 1;
    margin-bottom: 0;
}

.visitor-form-wrapper input[type="text"],
.visitor-form-wrapper input[type="email"],
.visitor-form-wrapper input[type="tel"],
.visitor-form-wrapper textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f4f6f8;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.visitor-form-wrapper input:focus,
.visitor-form-wrapper textarea:focus {
    background: #ffffff;
    border-color: var(--accent-green);
    box-shadow: 0 5px 15px rgba(var(--accent-green-rgb), 0.15);
}

.visitor-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a22 100%);
    color: var(--accent-yellow);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(var(--primary-dark-rgb), 0.2);
}

.visitor-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--primary-dark-rgb), 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .visitor-form-row {
        flex-direction: column;
        gap: 20px;
    }
    .visitor-form-wrapper {
        padding: 30px 20px;
    }
}