/* ============================================
   EVENTS & COURSES PAGE STYLES
   Matching site design patterns
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background-color: #FCF1DD;
    background-image: var(--lj-img-18f239432999);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(252, 241, 221, 0.95) 0%, rgba(252, 241, 221, 0.85) 60%, rgba(252, 241, 221, 0) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px 0 100px;
    display: flex;
    justify-content: flex-start;
}

.hero-content {
    max-width: 600px !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    padding: 0 !important;
    transform: translateY(-220px) translateX(70px) !important;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #995A3B;
    margin-bottom: 24px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.15;
    color: #17110A;
    margin-bottom: 24px;
    white-space: nowrap;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #17110A;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #BD9450;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #a67f3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: #17110A;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(23, 17, 10, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(23, 17, 10, 0.05);
    border-color: #17110A;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0, 0, 0, 0.4);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: #C9B896;
    padding: 30px 0;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 920px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    gap: 6px;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) .stat-number {
    margin-top: -0.3em;
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    min-height: 1.2em;
}

.stat-number .count {
    color: var(--color-text);
}

.stat-number .suffix {
    color: var(--color-primary);
    font-size: 0.5em;
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(16, 16, 16, 0.65);
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-section {
    padding: 100px 0;
    background: #FCF1DD;
}

.events-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.events-header {
    text-align: center;
    margin-bottom: 48px;
}

.events-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 900;
    color: #17110A;
    margin-bottom: 16px;
}

.events-header h2 em {
    font-style: italic;
}

.events-header p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #17110A;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: #FCF8F3;
    color: #17110A;
    border: 1px solid #D2B48C;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #995A3B;
    color: #995A3B;
}

.filter-btn.active {
    background: #995A3B;
    color: #ffffff;
    border-color: #995A3B;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.event-card {
    background: #FCF8F3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 4rem;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-type-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #995A3B;
    background: rgba(153, 90, 59, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: fit-content;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #17110A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-description {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #17110A;
    margin-bottom: 20px;
    flex: 1;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid #D2B48C;
    border-bottom: 1px solid #D2B48C;
    margin-bottom: 20px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #17110A;
}

.event-meta-item i {
    color: #995A3B;
    width: 16px;
    text-align: center;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.event-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #995A3B;
}

.event-price.free {
    color: #2e7d32;
}

.event-spots {
    font-family: var(--font-body);
    font-size: 13px;
    color: #666;
}

.event-spots.low {
    color: #f57c00;
    font-weight: 600;
}

.event-spots.full {
    color: #d32f2f;
    font-weight: 600;
}

.btn-book {
    width: 100%;
    padding: 14px 24px;
    background: #995A3B;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #7a4830;
}

.btn-book:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Loading & Empty States */
.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.loading-state i {
    font-size: 2rem;
    color: #995A3B;
    margin-bottom: 16px;
}

.no-events {
    text-align: center;
    padding: 80px 20px;
}

.no-events i {
    font-size: 4rem;
    color: #995A3B;
    opacity: 0.3;
    margin-bottom: 24px;
}

.no-events h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #17110A;
    margin-bottom: 12px;
}

.no-events p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #17110A;
    line-height: 1.6;
}

.no-events a {
    color: #995A3B;
    font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.consulting-cta {
    background: #FCF8F3;
    padding: 80px 0 100px;
    position: relative;
}

.consulting-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.consulting-cta-card {
    background: #D2B48C;
    border-radius: 20px;
    padding: 56px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(210, 180, 140, 0.2);
}

.consulting-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    color: #FCF1DD;
    margin-bottom: 16px;
    line-height: 1.1;
}

.consulting-cta-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #FCF1DD;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.consulting-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.consulting-cta-btn:hover {
    background-color: #faf9f4;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   EVENT DETAIL OVERLAY
   ============================================ */
.event-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.event-overlay.active {
    opacity: 1;
    visibility: visible;
}

.event-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(23, 17, 10, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: backdrop-filter 0.4s ease;
}

.event-overlay-content {
    position: relative;
    background: #FCF8F3;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-overlay.active .event-overlay-content {
    transform: translateY(0) scale(1);
}

.event-overlay-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(23, 17, 10, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #17110A;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-overlay-close:hover {
    background: rgba(23, 17, 10, 0.15);
    transform: rotate(90deg);
}

.event-overlay-header {
    padding: 40px 40px 24px;
    border-bottom: 1px solid rgba(210, 180, 140, 0.3);
}

.event-overlay-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #995A3B;
    background: rgba(153, 90, 59, 0.1);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.event-overlay-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    color: #17110A;
    line-height: 1.2;
    margin: 0;
}

.event-overlay-body {
    padding: 24px 40px;
}

.event-overlay-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #17110A;
    margin: 0 0 24px 0;
}

.event-overlay-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #FCF1DD;
    border-radius: 12px;
    margin-bottom: 24px;
}

.event-overlay-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #17110A;
}

.event-overlay-meta-item i {
    color: #BD9450;
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.event-overlay-details {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #17110A;
}

.event-overlay-details h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #17110A;
    margin: 0 0 12px 0;
}

.event-overlay-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-overlay-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.event-overlay-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #BD9450;
    font-weight: bold;
}

.event-overlay-footer {
    padding: 24px 40px 32px;
    border-top: 1px solid rgba(210, 180, 140, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.event-overlay-price {
    display: flex;
    flex-direction: column;
}

.event-overlay-price .price-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(23, 17, 10, 0.6);
    margin-bottom: 4px;
}

.event-overlay-price .price-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #995A3B;
}

.event-overlay-book {
    padding: 16px 40px;
    font-size: 16px;
}

/* Event Overlay Responsive */
@media (max-width: 768px) {
    .event-overlay-content {
        max-height: 90vh;
        border-radius: 16px 16px 0 0;
        margin-top: auto;
    }

    .event-overlay-header,
    .event-overlay-body,
    .event-overlay-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .event-overlay-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .event-overlay-price {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .event-overlay-book {
        width: 100%;
    }
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #FCF8F3;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.modal-header p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #995A3B;
    margin: 0;
    font-weight: 600;
}

/* Form Styles */
.booking-form {
    padding: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #995A3B;
    box-shadow: 0 0 0 3px rgba(153, 90, 59, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-group.checkbox label {
    margin: 0;
    font-weight: 400;
    color: #555;
}

.btn-full {
    width: 100%;
    margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #000000;
    color: #FCF1DD;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-brand h6 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand h6 a {
    color: #FCF1DD;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(252, 241, 221, 0.7);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #FCF1DD;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(252, 241, 221, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FCF1DD;
}

.footer-contact span {
    font-family: var(--font-body);
    display: block;
    font-size: 15px;
    color: rgba(252, 241, 221, 0.7);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(252, 241, 221, 0.1);
    border-radius: 50%;
    color: #FCF1DD;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D2B48C;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(252, 241, 221, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(252, 241, 221, 0.5);
}

/* ============================================
   ADMIN PAGE STYLES
   ============================================ */
.admin-page {
    background: #f5f5f5;
    min-height: 100vh;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: #060910;
    color: #FCF1DD;
    padding: 32px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-logo {
    padding: 0 24px 32px;
    border-bottom: 1px solid rgba(252, 241, 221, 0.1);
}

.admin-logo a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #FCF1DD;
    display: block;
    margin-bottom: 4px;
}

.admin-logo span {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(252, 241, 221, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-nav {
    padding: 24px 0;
}

.admin-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: rgba(252, 241, 221, 0.6);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
}

.admin-nav .nav-item:hover,
.admin-nav .nav-item.active {
    background: rgba(252, 241, 221, 0.08);
    color: #FCF1DD;
}

.admin-nav .nav-item i {
    width: 20px;
    text-align: center;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    padding: 40px;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #17110A;
}

.admin-list {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.list-item {
    padding: 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #17110A;
    margin-bottom: 6px;
}

.list-item-info p {
    font-family: var(--font-body);
    font-size: 14px;
    color: #666;
}

.list-item-info .status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 12px;
}

.list-item-info .status.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.list-item-info .status.inactive {
    background: #ffebee;
    color: #c62828;
}

.list-item-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-edit {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-edit:hover {
    background: #bbdefb;
}

.btn-delete {
    background: #ffebee;
    color: #d32f2f;
}

.btn-delete:hover {
    background: #ffcdd2;
}

.btn-danger {
    background: #d32f2f;
    color: #ffffff;
}

.btn-danger:hover {
    background: #b71c1c;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.empty-state i {
    font-size: 3rem;
    color: #995A3B;
    opacity: 0.3;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #17110A;
}

/* Admin Modal */
.modal-large {
    max-width: 650px;
}

.modal-small {
    max-width: 420px;
    text-align: center;
}

.modal-small p {
    padding: 0 32px 24px;
    color: #555;
}

#event-form {
    padding: 32px;
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        transform: translateX(0);
    }

    .hero-section::before {
        width: 70%;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Mobile hero - match home page pattern */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-image: none !important;
        background-color: #000 !important;
        display: flex;
        align-items: flex-end;
    }

    .hero-section::before,
    .hero-section::after {
        display: none !important;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        z-index: 2;
        text-align: center;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: #D2B48C;
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.85);
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-item {
        min-width: 140px;
        padding: 0 20px;
        border-right: none;
    }

    .events-section .container {
        padding: 0 24px;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .filter-controls {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 36px 0 24px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px 16px;
        padding: 0 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand h6 {
        margin-bottom: 8px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-links li {
        margin-bottom: 4px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-links ul {
        gap: 2px;
        align-items: center;
    }

    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-contact span {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .social-links {
        margin-top: 12px;
        justify-content: center;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        margin-top: 20px;
        padding: 16px 24px 0;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    /* Admin responsive */
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .admin-main {
        margin-left: 0;
        padding: 24px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .list-item-actions {
        width: 100%;
    }

    .btn-icon {
        flex: 1;
    }

    /* Touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-book,
    .filter-btn,
    .consulting-cta-btn {
        min-height: 48px;
    }

    /* CTA buttons stack */
    .consulting-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .consulting-cta-btn {
        width: 100%;
        text-align: center;
    }

    /* Consulting CTA card padding */
    .consulting-cta-card {
        padding: 40px 24px;
    }

    /* Hero title prevent overflow */
    .hero-title {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .events-section .container {
        padding: 0 16px;
    }

    .events-section {
        padding: 60px 0;
    }

    .event-content {
        padding: 20px 16px;
    }

    .consulting-cta-container {
        padding: 0 16px;
    }

    .consulting-cta-card {
        padding: 32px 16px;
    }

    .consulting-cta-title {
        font-size: clamp(26px, 6vw, 36px);
    }

    .consulting-cta-text {
        font-size: 15px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer-container {
        padding: 0 16px;
        gap: 28px;
    }

    .footer-bottom {
        padding: 16px 16px 0;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ============================================
   CTA SECTION - About Page Style
   ============================================ */
.cta-section {
    padding: 40px 0 100px 0;
    background-color: #FCF1DD;
    background-image: none !important;
    position: relative;
}

.cta-section::before,
.cta-section::after {
    display: none !important;
    content: none !important;
}

.cta-section .cta-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 56px;
    text-align: center;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}

.cta-section .cta-container h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .cta-container p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .cta-contact-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.cta-section .cta-contact-row .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    min-width: 180px;
}

.cta-section .cta-contact-row .btn-primary:hover {
    background-color: #2d4a3e !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-buttons {
    display: flex !important;
    gap: 20px;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    margin-top: -10px;
    width: 100% !important;
    position: relative;
    text-align: center !important;
}

.cta-section .cta-buttons .btn-primary,
.cta-section .cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 250px !important;
    flex: none !important;
}

.cta-section .cta-buttons .btn-primary:hover,
.cta-section .cta-buttons .btn-secondary:hover {
    background-color: #E8D5B7 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 16px;
    }

    .cta-section .cta-container {
        padding: 36px 24px 40px;
        margin: 0 auto;
        width: 100%;
        border-radius: 20px;
        overflow: hidden;
        gap: 0 !important;
    }

    .cta-section .cta-container h2 {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
        margin-bottom: 12px !important;
    }

    .cta-section .cta-container p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .cta-section .cta-contact-row {
        margin: 0 0 12px 0 !important;
        width: 100%;
    }

    .cta-section .cta-contact-row .btn-primary {
        width: 100% !important;
        min-width: unset;
        margin: 0 !important;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
        margin: 0 !important;
        width: 100%;
    }

    .cta-section .cta-buttons .btn-primary,
    .cta-section .cta-buttons .btn-secondary {
        width: 100% !important;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        margin: 0 !important;
    }
}

