/* ===================================
   ROOT VARIABLES (Matching Theme)
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   EVENTS HERO SECTION
   =================================== */
.events-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
            var(--primary-navy) 0%,
            var(--primary-teal) 40%,
            var(--accent-emerald) 70%,
            var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
}

.badge-icon {
    font-size: 20px;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-indicator p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   LEGACY SECTION
   =================================== */
.legacy-section {
    padding: 100px 0;
    background: var(--white);
}

.legacy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    margin-bottom: 25px;
}

.legacy-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 40px;
}

.legacy-highlight {
    background: var(--light-cream);
    padding: 35px 40px;
    border-radius: 20px;
    border-left: 5px solid var(--accent-gold);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.legacy-highlight p {
    font-size: 1.15rem;
    color: var(--primary-navy);
    font-weight: 500;
    line-height: 1.7;
}

/* ===================================
   EVENT TYPES SECTION
   =================================== */
.event-types-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-type-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.event-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-emerald);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.event-type-card:hover .card-icon {
    transform: rotateY(360deg);
}

.event-type-card h3 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
}

.event-type-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-features i {
    color: var(--accent-emerald);
    font-size: 14px;
}

/* ===================================
   AUDIENCE SECTION
   =================================== */
.audience-section {
    padding: 100px 0;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.audience-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-cream);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.topic-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.topic-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-emerald));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.topic-item p {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.audience-highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.highlight-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.audience-highlight p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.audience-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.audience-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.audience-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.85), rgba(21, 152, 149, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.audience-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.audience-image:hover .overlay-content {
    transform: scale(1);
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===================================
   PAST EVENTS GALLERY
   =================================== */
.past-events-section {
    padding: 100px 0;
    background: var(--light-cream);
}

.events-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 35px;
}

.event-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.event-badge.upcoming {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
}

.event-badge.past {
    background: rgba(102, 102, 102, 0.9);
    color: var(--white);
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-meta i {
    color: var(--accent-emerald);
}

.event-content > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.topic-tag {
    padding: 6px 14px;
    background: var(--light-cream);
    color: var(--primary-teal);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.event-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(21, 152, 149, 0.4);
}

.event-btn.secondary {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
}

/* ===================================
   BOOK SECTION
   =================================== */
.book-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    overflow: hidden;
}

.book-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.book-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.book-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto 30px;
}

.book-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.book-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.book-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 0.95rem;
}

.feature-item i {
    font-size: 20px;
    color: var(--accent-gold);
}

.book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-fast);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ===================================
   SOCIAL CONNECT SECTION
   =================================== */
.social-connect-section {
    padding: 100px 0;
    background: var(--white);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.social-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    font-weight: 700;
}

.social-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-tagline {
    font-size: 1.1rem;
    color: var(--primary-teal);
    font-weight: 500;
    margin-bottom: 35px;
}

.social-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-cream);
    border-radius: 15px;
    transition: var(--transition-fast);
}

.benefit-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.benefit-item > i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.social-card {
    background: var(--light-cream);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.social-card h3 {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.social-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.social-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.social-btn i {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.social-btn.linkedin i { background: #0077B5; }
.social-btn.youtube i { background: #FF0000; }
.social-btn.whatsapp i { background: #25D366; }
.social-btn.facebook i { background: #1877F2; }
.social-btn.instagram i { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }

.social-btn .platform {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.social-btn .desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.social-btn.linkedin:hover { border-color: #0077B5; }
.social-btn.youtube:hover { border-color: #FF0000; }
.social-btn.whatsapp:hover { border-color: #25D366; }
.social-btn.facebook:hover { border-color: #1877F2; }
.social-btn.instagram:hover { border-color: #bc1888; }

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal), var(--accent-emerald));
    overflow: hidden;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
}

.cta-particles .particle:nth-child(1) {
    left: 20%;
    top: 20%;
    animation: float 10s infinite;
}

.cta-particles .particle:nth-child(2) {
    left: 80%;
    top: 60%;
    animation: float 12s infinite;
}

.cta-particles .particle:nth-child(3) {
    left: 50%;
    top: 80%;
    animation: float 15s infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--accent-gold);
    margin: 0 auto 30px;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn i {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .audience-grid,
    .social-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .events-gallery {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .events-hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .event-types-grid {
        grid-template-columns: 1fr;
    }

    .events-gallery {
        grid-template-columns: 1fr;
    }

    .book-features {
        grid-template-columns: 1fr;
    }

    .audience-content h2,
    .social-content h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .stat-icon,
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .event-card {
        border-radius: 20px;
    }

    .event-content {
        padding: 20px;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .hero-particles,
    .hero-overlay,
    .scroll-indicator,
    .book-bg-shapes,
    .cta-particles {
        display: none;
    }

    body {
        background: white;
    }
}

