/* ==========================================
   STYLE SHEET - SEEHMMARA NUMEROLOGY WORKSHOP
   ========================================== */

/* Import Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Premium Theme */
:root {
    --primary: #8B0000;       /* Deep Red */
    --secondary: #D4AF37;     /* Gold */
    --accent: #0B1F4D;        /* Royal Blue */
    --accent-light: #152C5B;  /* Lighter Royal Blue */
    --accent-glow: rgba(11, 31, 77, 0.9);
    --bg-white: #FFFFFF;
    --bg-light: #FDFBF7;      /* Warm white/cream */
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --text-muted: #666666;
    --border-color: rgba(212, 175, 55, 0.2); /* Soft Gold border */
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
    --shadow-premium: 0 15px 35px rgba(11, 31, 77, 0.1);
    --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Numerology Background Watermark */
.numerology-bg {
    position: relative;
}

.numerology-bg::before {
    content: "8  1  3  5  2  7  6  9  4";
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(11, 31, 77, 0.03);
    word-spacing: 2rem;
    letter-spacing: 1rem;
    line-height: 1.8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    text-align: center;
}

/* Global Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.section-tag {
    display: inline-block;
    background: rgba(139, 0, 0, 0.1);
    color: var(--primary);
    padding: 0.4rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
    position: relative;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b30000);
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(139, 0, 0, 0.5);
    background: linear-gradient(135deg, #b30000, var(--primary));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #b89327);
    color: var(--accent);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #b89327, var(--secondary));
}

.btn-outline {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-light);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

/* Sticky Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11, 31, 77, 0.08);
    transition: var(--transition-fast);
    padding: 0.6rem 0;
}

.navbar.scrolled {
    padding: 0.4rem 0;
    box-shadow: var(--shadow-premium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary);
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 10px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    background: radial-gradient(circle at 80% 20%, var(--accent-light) 0%, var(--accent) 100%);
    color: var(--text-light);
    padding: 10rem 0 7rem 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    transform: rotate(30deg);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseGlow 2s infinite alternate;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--secondary);
    display: block;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.hero-tagline {
    font-size: 1.4rem;
    color: #cbd5e1;
    font-weight: 500;
    border-left: 4px solid var(--secondary);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-highlight-item i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.hero-highlight-info h4 {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.hero-highlight-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

.hero-ctas .btn {
    min-width: 180px;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-backdrop {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: rotateSlow 20s linear infinite;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    border: 4px solid var(--secondary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

/* Countdown Section */
.countdown-section {
    background: var(--primary);
    padding: 3rem 0;
    border-bottom: 4px solid var(--secondary);
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.countdown-text h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.countdown-text p {
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    gap: 1.5rem;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    min-width: 90px;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.countdown-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Attend Section */
.why-attend {
    background-color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--bg-white);
    border: 1px solid rgba(11, 31, 77, 0.08);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    background: var(--secondary);
    color: var(--accent);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Workshop Content Section */
.workshop-content {
    background-color: var(--bg-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.content-card {
    background: var(--bg-white);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(11, 31, 77, 0.12);
    border-color: var(--secondary);
}

.content-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    padding: 1.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-bottom: 3px solid var(--secondary);
}

.content-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    opacity: 0.8;
}

.content-header h3 {
    color: var(--text-light);
    font-size: 1.3rem;
}

.content-body {
    padding: 2rem;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.content-list i {
    color: var(--primary);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* About Speaker Section */
.about-speaker {
    background: var(--bg-white);
}

.speaker-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.speaker-img-wrapper {
    position: relative;
}

.speaker-img-card {
    border: 4px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
}

.speaker-bg-pattern {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background-image: radial-gradient(var(--secondary) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.speaker-bio h3 {
    font-size: 2.2rem;
    margin-bottom: 0.4rem;
}

.speaker-title {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.speaker-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.speaker-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-fast);
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Workshop For Whom Section */
.for-whom {
    background-color: var(--accent);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.for-whom::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.for-whom .section-title {
    color: var(--text-light);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.for-whom-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition-slow);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.for-whom-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    box-shadow: var(--glass-shadow);
}

.for-whom-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.for-whom-card h3 {
    color: var(--text-light);
    font-size: 1.15rem;
    font-weight: 600;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-light);
    border: 1px solid rgba(11, 31, 77, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-slow);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(11, 31, 77, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(139, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: var(--text-light);
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

/* Event Details Section */
.event-details {
    background: var(--bg-light);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: stretch;
}

.details-card {
    background: var(--accent);
    color: var(--text-light);
    padding: 3.5rem;
    border-radius: 24px;
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.details-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    bottom: -50px;
    right: -50px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.details-card h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.details-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.details-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.details-info h4 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.details-info p {
    font-size: 1.1rem;
    font-weight: 500;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-premium);
    height: 100%;
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: var(--bg-light);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    font-family: serif;
    color: rgba(139, 0, 0, 0.08);
    line-height: 1;
}

.rating {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
}

.testimonial-author span {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(11, 31, 77, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-nav-btn:hover {
    background: var(--secondary);
    color: var(--accent);
}

.carousel-nav-btn.prev {
    left: -70px;
}

.carousel-nav-btn.next {
    right: -70px;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.special-offer::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.offer-box {
    max-width: 750px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--secondary);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
}

.urgency-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulseGlow 1.5s infinite alternate;
}

.offer-price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1;
}

.offer-price span {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-right: 0.8rem;
}

.offer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    max-width: 550px;
    margin: 0 auto 3rem auto;
}

.offer-list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.offer-list-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* FAQ Accordion Section */
.faq {
    background-color: var(--bg-light);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid rgba(11, 31, 77, 0.06);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-fast);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: var(--bg-white);
    transition: var(--transition-fast);
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--secondary);
}

.faq-item.active .faq-header {
    background: rgba(212, 175, 55, 0.05);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--text-light);
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-content {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(11, 31, 77, 0.03);
}

/* Registration Section */
.registration {
    background-color: var(--bg-white);
    position: relative;
}

.registration-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2px solid var(--secondary);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.registration-sidebar {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-light);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.registration-sidebar-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 3px solid var(--secondary);
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-gold);
}

.registration-sidebar h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.registration-sidebar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.registration-form-container {
    padding: 3.5rem;
}

.registration-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.registration-form-container p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .registration-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .registration-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2.5rem;
    }
    .registration-form-container {
        padding: 2.5rem 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-main);
    font-size: 0.95rem;
    border: 1.5px solid rgba(11, 31, 77, 0.15);
    border-radius: 8px;
    transition: var(--transition-fast);
    outline: none;
    color: var(--text-dark);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.1);
}

.registration-card .btn {
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.redirect-notice {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(139, 0, 0, 0.05);
    border: 1px solid rgba(139, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 1.5rem;
    font-weight: 500;
}

.redirect-notice i {
    font-size: 1rem;
}

/* Important Notice Banner */
.notice-banner {
    background: #FFF5F5;
    border-top: 1px solid #FED7D7;
    border-bottom: 1px solid #FED7D7;
    padding: 1.8rem 0;
}

.notice-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #C53030;
    font-size: 1.05rem;
}

.notice-item i {
    font-size: 1.2rem;
}

/* Footer styling */
.footer {
    background: var(--accent);
    color: var(--text-light);
    padding: 5rem 0 2rem 0;
    position: relative;
    border-top: 3px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-img {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--secondary);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    color: var(--secondary);
    margin-top: 0.3rem;
}

.footer-contact-list li a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.6rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: var(--transition-fast);
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    animation: wavePulse 2s infinite;
    pointer-events: none;
    z-index: -1;
}

.float-whatsapp {
    background-color: #25D366;
}

.float-whatsapp::before {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
}

.float-call {
    background-color: var(--accent);
    border: 2px solid var(--secondary);
}

.float-call::before {
    box-shadow: 0 0 0 0 rgba(11, 31, 77, 0.5);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--accent);
    transform: translateY(-5px);
}

/* Modals & Popups System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 31, 77, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border: 3px solid var(--secondary);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 3rem 2.5rem;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-premium);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.modal-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1rem;
}

.modal-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.modal-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.modal-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-ctas .btn {
    width: 100%;
}

/* Success page styling */
/* Success page styling */
.success-page {
    background: radial-gradient(circle at 50% 50%, var(--accent-light) 0%, var(--accent) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    color: var(--text-light);
}

.success-container {
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.success-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
}

.success-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.success-card-header h1, .success-card-header h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.success-card-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Satisfaction Animated Checkmark SVG */
.checkmark-svg {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 1.5rem auto;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    stroke: #25D366;
    fill: none;
    animation: checkmarkStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 4;
    stroke: #25D366;
    fill: none;
    animation: checkmarkStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes checkmarkStroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-status-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

.success-status-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.success-status-item i {
    color: #25D366;
    font-size: 1.25rem;
}

.success-message-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.whatsapp-btn-wrapper {
    margin-top: auto;
    text-align: center;
}

.whatsapp-btn-wrapper .btn-primary {
    width: 100%;
    background: #25D366;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.1rem;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition-fast);
}

.whatsapp-btn-wrapper .btn-primary:hover {
    background: #1ebe57;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

.summary-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.summary-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.summary-detail-item i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-top: 0.2rem;
}

.summary-detail-text h4 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.2rem;
}

.summary-detail-text p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-light);
}

.success-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-actions .btn {
    width: 100%;
}

@media (max-width: 800px) {
    .success-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 92%;
        margin: 1rem auto;
    }
    .success-card {
        padding: 2rem 1.5rem;
    }
}

/* KEYFRAMES & ANIMATIONS */
@keyframes wavePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulseGlow {
    from {
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    to {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes scalePulse {
    0% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1.05);
    }
}

/* RESPONSIVE MEDIA QUERIES */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-tagline {
        border-left: none;
        border-bottom: 2px solid var(--secondary);
        padding-left: 0;
        padding-bottom: 1rem;
    }
    
    .hero-highlights {
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .speaker-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .speaker-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .carousel-nav-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 61px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 61px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-slow);
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        width: 100%;
    }
    
    .nav-cta .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .countdown-container {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-timer {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .footer-links h4::after, .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-brand p {
        margin: 1rem auto 0 auto;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .registration-card {
        padding: 2.5rem 1.5rem;
    }
    
    .notice-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-actions {
        left: 1rem;
        bottom: 1rem;
    }
    
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title span {
        font-size: 1.6rem;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    .speaker-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .offer-box {
        padding: 3rem 1.5rem;
    }
    
    .offer-price {
        font-size: 3rem;
    }
}
