/* ================================================
   PROFESSIONAL DENTISTRY WEBSITE - GLASSMORPHISM DESIGN
   Ultra-Modern, Elegant, Compact Design for Prof. Javier Plaza
   ================================================ */

/* ================================================
   ROOT VARIABLES - Modern Professional Color Palette
   ================================================ */
:root {
    /* Primary Colors - Elegant dental tones */
    --primary-gold: #b47b18;
    --primary-gold-light: #d49832;
    --primary-gold-dark: #8a5f12;
    --accent-teal: #2c7a7b;
    --accent-blue: #1a365d;
    
    /* Neutral Colors - Professional grays */
    --dark-primary: #0a0f14;
    --dark-secondary: #151c22;
    --dark-tertiary: #1e2830;
    --gray-light: #e2e8f0;
    --gray-medium: #a0aec0;
    --white: #ffffff;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: 12px;
    
    /* Semantic Colors */
    --success: #48bb78;
    --warning: #ed8936;
    --info: #4299e1;
    
    /* Typography - More compact */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing - More compact */
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
    
    /* Shadows - Modern glassmorphic */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(180, 123, 24, 0.3);
    
    /* Border Radius - More modern */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================
   ENHANCED TYPOGRAPHY - More Compact
   ================================================ */
body {
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px; /* Account for fixed navbar */
}

body.mobile-menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h5 {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-xs) var(--spacing-md);
    display: inline-block;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.6) 0%, rgba(180, 123, 24, 0.4) 100%);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-xs) var(--spacing-md);
    display: inline-block;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 2px 8px rgba(180, 123, 24, 0.2);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray-light);
    font-size: 0.95rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* ================================================
   ENHANCED HEADER & NAVIGATION - Keep Original Simple Style
   ================================================ */

/* Navbar - Glassmorphist Premium */
header.header-full {
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.8) 0%,
        rgba(10, 15, 20, 0.7) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(212, 167, 106, 0.15);
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

header.header-full.scrolled {
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.95) 0%,
        rgba(10, 15, 20, 0.9) 100%
    );
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(212, 167, 106, 0.25);
    padding: 0.75rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

header.header-full.transparent {
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.6) 0%,
        rgba(10, 15, 20, 0.5) 100%
    );
}

/* Logo */
.logo-container {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all var(--transition-medium);
    width: auto;
    margin-left: 1rem;
}

.logo-container a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo-container a:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo-img {
    max-height: 24px;
    width: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(212, 167, 106, 0.3));
}

header.header-full.scrolled .logo-img {
    max-height: 20px;
}

/* Main Menu */
#mainmenu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

#mainmenu li {
    position: relative;
}

#mainmenu li a {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

#mainmenu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 167, 106, 0.1) 0%, rgba(180, 123, 24, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

#mainmenu li a:hover::before,
#mainmenu li a.active::before {
    opacity: 1;
}

#mainmenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mainmenu li a:hover::after,
#mainmenu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

#mainmenu li a:hover,
#mainmenu li a.active {
    color: var(--gold-light);
    background: rgba(212, 167, 106, 0.05);
    border: 1px solid rgba(212, 167, 106, 0.2);
}

#mainmenu li a span {
    position: relative;
    z-index: 1;
}

/* Mobile Menu Button */
#menu-btn {
    display: none;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

#menu-btn::before,
#menu-btn::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#menu-btn::before {
    top: 8px;
    box-shadow: 0 11px 0 var(--gold-primary);
}

#menu-btn::after {
    bottom: 8px;
}

.menu_side_area {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    #menu-btn {
        display: block;
    }
    
    .menu_side_area {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #mainmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(10, 15, 20, 0.98);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        border-left: 1px solid rgba(212, 167, 106, 0.2);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 100px 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    #mainmenu.active {
        right: 0;
    }
    
    #mainmenu li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    #mainmenu li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.05rem;
        border: 1px solid rgba(212, 167, 106, 0.1);
        margin-bottom: 0.5rem;
    }
    
    #mainmenu li a:hover,
    #mainmenu li a.active {
        border: 1px solid rgba(212, 167, 106, 0.4);
        transform: translateX(-5px);
    }
    
    /* Mobile menu button animation when open */
    body.mobile-menu-open #menu-btn::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        box-shadow: none;
    }
    
    body.mobile-menu-open #menu-btn::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }
    
    /* Overlay */
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

@media (max-width: 767px) {
    #mainmenu {
        width: 280px;
        padding: 80px 1.5rem 1.5rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .logo-img {
        max-height: 20px;
    }
}

/* ================================================
   HERO SECTION - Glassmorphic & Compact
   ================================================ */
.jarallax {
    position: relative;
    overflow: hidden;
}

.overlay-bg {
    background: linear-gradient(135deg, rgba(10, 15, 20, 0.8) 0%, rgba(21, 28, 34, 0.7) 100%);
    backdrop-filter: blur(3px);
    position: relative;
}

.very-big {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md) !important;
}

/* ================================================
   BUTTONS - Modern Glassmorphic Style
   ================================================ */
.btn-main,
a.btn-main {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.9) 0%, 
        rgba(212, 152, 50, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.25);
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(180, 123, 24, 0.4), var(--shadow-glow);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-main:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: calc(var(--spacing-sm) - 1px) calc(var(--spacing-xl) - 1px);
}

.btn-secondary:hover {
    background: rgba(180, 123, 24, 0.2);
    color: var(--primary-gold-light);
    border-color: var(--primary-gold-light);
}

/* ================================================
   SECTIONS - Premium Glassmorphic & Enhanced Backgrounds
   ================================================ */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

section.bg-dark-2 {
    background: linear-gradient(180deg, 
        rgba(21, 28, 34, 1) 0%, 
        rgba(15, 20, 26, 1) 100%);
    position: relative;
}

/* Animated background particles effect */
section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, rgba(180, 123, 24, 0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

/* Premium section separators */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(180, 123, 24, 0.3),
        transparent);
    margin: var(--spacing-xxl) 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(180, 123, 24, 0.6);
}

/* ================================================
   CARDS & CONTENT BOXES - Glassmorphism Design
   ================================================ */

/* Premium Venue Carousel Styling */
#items-carousel {
    padding: 0.5rem 0;
    margin: 0 0 3rem 0;
    position: relative;
}

#items-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 15px;
}

#items-carousel .owl-nav button {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#items-carousel .owl-nav button:hover {
    background: rgba(180, 123, 24, 0.2) !important;
    border-color: rgba(180, 123, 24, 0.4) !important;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.3);
}

#items-carousel .owl-nav button span {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

@media (max-width: 991px) {
    #items-carousel {
        margin: 0.8rem 0 0 0;
    }
    
    #items-carousel .owl-nav {
        padding: 0 10px;
    }
    
    #items-carousel .owl-nav button {
        width: 48px;
        height: 48px;
    }
    
    #items-carousel .owl-nav button span {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    #items-carousel {
        margin: 0.5rem 0 0 0;
    }
    
    #items-carousel .owl-nav {
        padding: 0 5px;
    }
    
    #items-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    #items-carousel .owl-nav button span {
        font-size: 1.5rem;
    }
}

.card-image-1,
.de-skill-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
}

.card-image-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.1) 0%,
        rgba(10, 15, 20, 0.3) 50%,
        rgba(10, 15, 20, 0.6) 100%
    );
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: 1;
    pointer-events: none;
}

.card-image-1:hover::before {
    opacity: 1;
}

.card-image-1:hover,
.de-skill-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 
                0 0 60px rgba(180, 123, 24, 0.15);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(180, 123, 24, 0.4);
}

.card-image-1 img {
    transition: transform 0.6s var(--ease-smooth);
    position: relative;
    z-index: 0;
}

.card-image-1:hover img {
    transform: scale(1.08);
}

.de-skill-item {
    padding: var(--spacing-lg) !important;
}

.de-skill-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
}

.de-skill-item:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

.de-skill-item h4 {
    font-size: 1rem;
    margin-top: var(--spacing-sm);
}

/* ================================================
   MODAL IMPROVEMENTS - Premium Glassmorphism
   ================================================ */
.modal-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content {
    border-radius: var(--radius-xl);
    background: rgba(15, 20, 26, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(180, 123, 24, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(180, 123, 24, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(180, 123, 24, 0.2);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg,
        rgba(180, 123, 24, 0.1) 0%,
        rgba(180, 123, 24, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-gold),
        transparent);
}

.modal-title {
    color: var(--primary-gold-light);
    font-size: 1.75rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(180, 123, 24, 0.3);
}

.modal-body {
    padding: var(--spacing-xxl);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(180, 123, 24, 0.2),
        transparent);
}

.modal-footer {
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    padding: var(--spacing-xl);
    background: rgba(10, 15, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

/* Stripe Pricing Table Enhancement */
stripe-pricing-table {
    --pricing-table-background-color: transparent !important;
    --pricing-table-border-color: rgba(180, 123, 24, 0.2) !important;
}

.modal-body stripe-pricing-table {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(180, 123, 24, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ================================================
   FAQ SECTION - Elegant Accordion Design
   ================================================ */
#faq {
    background: linear-gradient(180deg,
        rgba(15, 20, 26, 1) 0%,
        rgba(21, 28, 34, 1) 100%);
    position: relative;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(180, 123, 24, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(44, 122, 123, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(180, 123, 24, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: var(--spacing-lg) var(--spacing-xl);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    user-select: none;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-gold-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.faq-item.active .faq-question::before,
.faq-question:hover::before {
    opacity: 1;
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    flex: 1;
    transition: color 0.3s;
}

.faq-item.active .faq-question h4,
.faq-question:hover h4 {
    color: var(--primary-gold-light);
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(180, 123, 24, 0.2);
    border: 1px solid rgba(180, 123, 24, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon::after {
    content: '+';
    color: var(--primary-gold-light);
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    background: rgba(180, 123, 24, 0.3);
    border-color: rgba(180, 123, 24, 0.6);
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 var(--spacing-xl);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 var(--spacing-xl) var(--spacing-lg) var(--spacing-xl);
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    margin-top: var(--spacing-md);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ================================================
   BOOTSTRAP ACCORDION OVERRIDE - Premium Glassmorphic Style
   ================================================ */

.accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item:hover {
    border-color: rgba(180, 123, 24, 0.25) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.accordion-button {
    padding: 1.3rem 1.8rem;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    font-weight: 600;
    border: none !important;
    box-shadow: none !important;
    transition: all 0.3s;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: #d4a76a !important;
    background: transparent !important;
}

.accordion-button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4a76a, #b47b18);
    opacity: 0;
    transition: opacity 0.3s;
}

.accordion-button:not(.collapsed)::before,
.accordion-button:hover::before {
    opacity: 1;
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-size: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(80%) sepia(95%) saturate(400%) brightness(102%);
    transform: rotate(180deg);
}

.accordion-body {
    padding: 1.5rem 1.8rem;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.08) 0%, rgba(180, 123, 24, 0.02) 100%);
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 400;
}

.accordion-body a {
    color: #d4a76a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.accordion-body a:hover {
    color: #e8d4a8;
    text-decoration: underline;
}

.accordion-body strong {
    color: #d4a76a;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 767px) {
    .accordion-button {
        padding: 1.1rem 1.4rem;
        font-size: 1rem;
        font-weight: 500;
    }

    .accordion-body {
        padding: 1.2rem 1.4rem;
        font-size: 0.9rem;
    }
}

/* ================================================
   PRICING TABLES - Premium Glassmorphic Design
   ================================================ */
#inscripcion {
    background: linear-gradient(180deg,
        rgba(21, 28, 34, 1) 0%,
        rgba(15, 20, 26, 1) 100%);
    position: relative;
}

#inscripcion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(180, 123, 24, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(44, 122, 123, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.table_component {
    overflow: auto;
    width: 100%;
    margin: var(--spacing-xl) 0;
}

.table_component table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.table_component table h3 {
    padding: var(--spacing-lg);
    margin: 0;
    color: var(--primary-gold-light);
    font-size: 1.25rem;
    background: linear-gradient(135deg,
        rgba(180, 123, 24, 0.15) 0%,
        rgba(180, 123, 24, 0.08) 100%);
    border-bottom: 2px solid rgba(180, 123, 24, 0.3);
}

.table_component thead th {
    background: linear-gradient(135deg,
        rgba(180, 123, 24, 0.2) 0%,
        rgba(180, 123, 24, 0.1) 100%);
    color: var(--primary-gold-light);
    font-weight: 700;
    padding: var(--spacing-lg);
    border-bottom: 2px solid rgba(180, 123, 24, 0.3);
    font-size: 1.05rem;
    text-align: center;
}

.table_component tbody td {
    padding: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    text-align: center;
}

.table_component tbody tr:last-child td {
    border-bottom: none;
}

.table_component tbody tr:hover {
    background: rgba(180, 123, 24, 0.05);
}

.table_component tbody td[style*="font-weight: bold"] {
    color: var(--primary-gold-light);
    font-weight: 700;
    background: rgba(180, 123, 24, 0.05);
}

/* Special notice table */
.table_component table tr th:only-child {
    background: linear-gradient(135deg,
        rgba(180, 123, 24, 0.25) 0%,
        rgba(180, 123, 24, 0.15) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: var(--spacing-xl);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 600;
    text-align: center;
    border: 2px solid rgba(180, 123, 24, 0.4);
}

/* Payment buttons enhancement */
.btn-primary {
    background: linear-gradient(135deg,
        rgba(180, 123, 24, 0.9) 0%,
        rgba(212, 152, 50, 0.9) 100%) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-lg) !important;
    padding: var(--spacing-md) var(--spacing-lg) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(180, 123, 24, 0.5) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Pricing info text */
#inscripcion h4 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 3px solid var(--primary-gold);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin: var(--spacing-xl) 0;
}

/* ================================================
   PROGRAMA SECTION - Enhanced Clarity & Premium Design
   ================================================ */
#programa {
    background: linear-gradient(180deg, 
        rgba(10, 15, 20, 1) 0%, 
        rgba(15, 20, 26, 1) 50%,
        rgba(21, 28, 34, 1) 100%);
    position: relative;
}

#programa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(180, 123, 24, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(180, 123, 24, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Program Module Cards */
.program-module {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--primary-gold),
        var(--primary-gold-light),
        var(--primary-gold));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.program-module:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(180, 123, 24, 0.25);
    border-color: rgba(180, 123, 24, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.program-module h4 {
    color: var(--primary-gold-light);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.program-module h4::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: var(--radius-sm);
}

/* Timeline Enhancement for Program */
.d_timeline {
    list-style: none;
    padding-left: 0;
    position: relative;
}

.d_timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(180, 123, 24, 0.8) 0%, 
        rgba(180, 123, 24, 0.4) 50%,
        rgba(180, 123, 24, 0.2) 100%);
    border-radius: var(--radius-sm);
    box-shadow: 0 0 10px rgba(180, 123, 24, 0.3);
}

.d_timeline-item {
    padding-left: var(--spacing-xxl);
    padding-bottom: var(--spacing-xl);
    position: relative;
}

.d_timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 8px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-gold);
    box-shadow: 
        0 0 0 4px rgba(21, 28, 34, 1), 
        0 0 0 7px rgba(180, 123, 24, 0.3),
        0 0 20px rgba(180, 123, 24, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-glow 3s ease-in-out infinite;
}

.d_timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 
        0 0 0 4px rgba(21, 28, 34, 1), 
        0 0 0 10px rgba(180, 123, 24, 0.4),
        0 0 30px rgba(180, 123, 24, 0.8);
}

.d_timeline-title {
    color: var(--primary-gold-light);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.d_timeline-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 0.95rem;
}

.d_timeline-text br {
    display: block;
    content: "";
    margin-top: var(--spacing-xs);
}

/* ================================================
   TESTIMONIALS - Premium Glassmorphic Design
   ================================================ */
#testimonios {
    background: linear-gradient(180deg, 
        rgba(10, 15, 20, 1) 0%, 
        rgba(21, 28, 34, 1) 50%,
        rgba(30, 40, 48, 1) 100%);
    position: relative;
    overflow: hidden;
}

#testimonios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(180, 123, 24, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 123, 24, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: gradient-shift 15s ease infinite;
    background-size: 200% 200%;
}

.q-big {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(180, 123, 24, 0.25);
    border-left-width: 3px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.q-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(180, 123, 24, 0.5), 
        transparent);
}

.q-big::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s;
}

.q-big:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(180, 123, 24, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-left-width: 4px;
    border-color: rgba(180, 123, 24, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

.q-big:hover::after {
    opacity: 1;
}

.q-big .icon_quotations {
    color: var(--primary-gold);
    opacity: 0.2;
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.q-big p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    margin-bottom: var(--spacing-lg);
}

.d-quote-by {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    color: var(--primary-gold-light);
    font-weight: 600;
    font-style: italic;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.d-quote-by::before {
    content: '—';
    color: var(--primary-gold);
    margin-right: var(--spacing-xs);
    font-style: normal;
}

/* Owl Carousel for testimonials */
#carousel__testimonial .owl-stage-outer {
    padding: var(--spacing-lg) 0;
}

#carousel__testimonial .owl-item {
    opacity: 0.6;
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#carousel__testimonial .owl-item.active {
    opacity: 1;
    transform: scale(1);
}

#carousel__testimonial .owl-dots {
    margin-top: var(--spacing-xl);
    text-align: center;
}

#carousel__testimonial .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(180, 123, 24, 0.3);
    border: 1px solid rgba(180, 123, 24, 0.5);
    margin: 0 var(--spacing-xs);
    transition: all 0.3s;
}

#carousel__testimonial .owl-dot.active {
    background: var(--primary-gold);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(180, 123, 24, 0.6);
}

/* ================================================
   MARQUEE - Enhanced & Compact
   ================================================ */
.de-marquee-list {
    overflow: hidden;
    padding: 2rem 0;
    background: transparent;
    position: relative;
}

.de-marquee-list::before,
.de-marquee-list::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.de-marquee-list::before {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 20, 26, 1) 0%, rgba(15, 20, 26, 0) 100%);
}

.de-marquee-list::after {
    right: 0;
    background: linear-gradient(90deg, rgba(15, 20, 26, 0) 0%, rgba(15, 20, 26, 1) 100%);
}

.d-item-txt {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', Georgia, serif;
    display: inline-block;
    padding: 0 2rem;
}

.d-item-txt:hover {
    color: rgba(180, 123, 24, 0.3);
}

.d-item-txt.line {
    color: rgba(180, 123, 24, 0.15);
    font-weight: 800;
}

.d-item-txt.line:hover {
    color: rgba(180, 123, 24, 0.35);
}

/* ================================================
   BORDER & DIVIDERS - Glassmorphic
   ================================================ */
.s_border {
    border-left: 3px solid var(--primary-gold);
    padding-left: var(--spacing-md);
    margin: var(--spacing-md) 0;
    background: linear-gradient(90deg, 
        rgba(180, 123, 24, 0.08) 0%, 
        transparent 100%);
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* ================================================
   IMAGES - Professional Enhancement
   ================================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

figure img {
    transition: all var(--transition-slow);
}

figure:hover img {
    transform: scale(1.03);
}

/* ================================================
   SCROLL ENHANCEMENTS - Glassmorphic
   ================================================ */
.float-text {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    z-index: 999;
}

.float-text a {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(180, 123, 24, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.3);
    transition: all var(--transition-medium);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-text a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(180, 123, 24, 0.5);
    background: rgba(212, 152, 50, 0.9);
}

/* ================================================
   PRELOADER - Modern Design
   ================================================ */
#preloader {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.preloader1 {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(180, 123, 24, 0.2);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px rgba(180, 123, 24, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ================================================
   BUTTON RIPPLE EFFECT
   ================================================ */
.button-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-main,
.btn-primary {
    position: relative;
    overflow: hidden;
}

/* ================================================
   IMAGE LAZY LOAD EFFECT
   ================================================ */
img {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

img.loaded,
img[src] {
    opacity: 1;
}

/* ================================================
   SCROLL BAR STYLING
   ================================================ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-gold-light), var(--primary-gold));
}

/* ================================================
   ENHANCED BUTTON STATES
   ================================================ */
.btn-main:active,
.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-main:focus,
.btn-primary:focus {
    box-shadow: 
        0 8px 30px rgba(180, 123, 24, 0.5),
        0 0 0 3px rgba(180, 123, 24, 0.3) !important;
}

/* ================================================
   LOADING STATE FOR IMAGES
   ================================================ */
img[data-src] {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ================================================
   ENHANCED CARD HOVER GLOW
   ================================================ */
.glass-card::before,
.q-big::after,
.de-skill-item::after {
    content: '';
    position: absolute;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.6s;
    pointer-events: none;
}

.glass-card:hover::before,
.q-big:hover::after,
.de-skill-item:hover::after {
    opacity: 0.1;
}

/* ================================================
   TEXT SELECTION ENHANCEMENT
   ================================================ */
::selection {
    background: rgba(180, 123, 24, 0.8);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: rgba(180, 123, 24, 0.8);
    color: var(--white);
    text-shadow: none;
}

/* ================================================
   RESPONSIVE IMPROVEMENTS - Compact
   ================================================ */
@media (max-width: 991px) {
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .very-big {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }
    
    h2 {
        font-size: clamp(1.35rem, 3vw, 2rem);
    }
    
    .btn-main {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: var(--spacing-lg);
    }
    
    .d_timeline-title {
        font-size: 1rem;
    }
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 0.9rem;
    }
    
    .logo-img {
        max-height: 18px;
    }
}

@media (max-width: 767px) {
    :root {
        --spacing-xl: 1.5rem;
        --spacing-xxl: 2rem;
    }
    
    body {
        font-size: 14px;
    }
    
    .q-big {
        padding: var(--spacing-md);
    }
    
    .modal-header,
    .modal-footer {
        padding: var(--spacing-md);
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    h5, .section-subtitle {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================ */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ================================================
   SMOOTH SCROLL
   ================================================ */
html {
    scroll-behavior: smooth;
}

/* ================================================
   SELECTION STYLING
   ================================================ */
::selection {
    background: var(--primary-gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--white);
}

/* ================================================
   CUSTOM ANIMATIONS - Premium & Elegant
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(180, 123, 24, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(180, 123, 24, 0.5);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fadeIn {
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideInRight {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slideInLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scaleIn {
    animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Premium hover effects */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-hover:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(180, 123, 24, 0.3);
}

/* ================================================
   UTILITY CLASSES - Glassmorphism
   ================================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-light) 100%);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
}

.shadow-professional {
    box-shadow: var(--shadow-lg);
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

/* ================================================
   FOOTER - Premium Modern Design
   ================================================ */
.footer-premium {
    background: linear-gradient(180deg, 
        #0a0e12 0%,
        #0f1318 50%,
        #0a0e12 100%);
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.footer-top {
    padding: 3.5rem 0 2rem;
}

.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-brand-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-brand-logo {
    max-height: 40px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-brand-logo:hover {
    filter: brightness(1.4) drop-shadow(0 2px 8px rgba(180, 123, 24, 0.3));
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 1.5rem 0;
    max-width: 300px;
}

.footer-social-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #b47b18;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(180, 123, 24, 0.1);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-link:hover {
    background: rgba(180, 123, 24, 0.25);
    border-color: rgba(180, 123, 24, 0.4);
    color: #d4a76a;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(180, 123, 24, 0.15);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-widget {
    margin-bottom: 0;
}

.footer-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #b47b18, transparent);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '▸ ';
    color: #b47b18;
    margin-right: 0.5rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #d4a76a;
}

.footer-menu a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(180, 123, 24, 0.2),
        transparent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(180, 123, 24, 0.15);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.footer-copyright .highlight {
    color: #d4a76a;
    font-weight: 600;
}

.footer-credits {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credits a {
    color: #b47b18;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-credits a:hover {
    color: #d4a76a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-top {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-widget-title {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-widget-title::after {
        width: 30px;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin-top: 1rem;
}

/* Glassmorphic card utility */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(180, 123, 24, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ================================================
   SOBRE MÍ SECTION - Premium University-Grade Design
   ================================================ */
#sobremi {
    background: linear-gradient(180deg, 
        rgba(21, 28, 34, 1) 0%, 
        rgba(15, 20, 26, 1) 100%);
    position: relative;
}

#sobremi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(180, 123, 24, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(44, 122, 123, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

/* Service Tabs Enhancement */
.de-service-tab-a .d-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.de-service-tab-a .d-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-gold-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.de-service-tab-a .d-item:hover,
.de-service-tab-a .d-item.active {
    background: rgba(180, 123, 24, 0.08);
    border-color: rgba(180, 123, 24, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.de-service-tab-a .d-item:hover::before,
.de-service-tab-a .d-item.active::before {
    opacity: 1;
}

.de-service-tab-a .d-item h3 {
    font-size: 1.05rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.5;
}

.de-service-tab-a .d-item .d-num {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Organizations/Societies Cards */
.de-skill-item {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.de-skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(180, 123, 24, 0.5),
        transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.de-skill-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(180, 123, 24, 0.2);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(180, 123, 24, 0.35);
}

.de-skill-item:hover::before {
    opacity: 1;
}

.de-skill-item img {
    max-width: 80%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.4s;
}

.de-skill-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.15);
}

.de-skill-item h4 {
    font-size: 0.95rem;
    margin-top: var(--spacing-md);
    font-weight: 600;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
}

.de-skill-item .de_count h4 {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Owl Carousel enhancements */
.owl-carousel .owl-item img {
    border-radius: var(--radius-lg);
}

.owl-carousel .owl-nav button {
    background: rgba(180, 123, 24, 0.2) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(180, 123, 24, 0.3) !important;
    border-radius: var(--radius-md) !important;
    transition: all var(--transition-medium) !important;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(180, 123, 24, 0.4) !important;
    border-color: rgba(180, 123, 24, 0.5) !important;
}

/* Enhanced map container */
.mapouter,
.gmap_canvas {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Service holder glassmorphic */
.de-service-holder-a {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.de-service-holder-a > div {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* Compact content improvements */
.container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.spacer-double {
    height: var(--spacing-xl);
}

.spacer-single {
    height: var(--spacing-lg);
}

.spacer-half {
    height: var(--spacing-sm);
}
/* ================================================
   AVANT-GARDE MASTERPIECE - REVOLUTIONARY DESIGN SYSTEM
   The Ultimate Glassmorphism Website for Future Generations
   Dr. Javier Plaza - RNO Formation
   ================================================ */

/* ================================================
   FUTURISTIC ROOT VARIABLES
   ================================================ */
:root {
    /* Revolutionary Color System */
    --gold-primary: #b47b18;
    --gold-light: #d4a76a;
    --gold-dark: #8a5f12;
    --gold-glow: rgba(180, 123, 24, 0.4);
    
    /* Ultra Dark Backgrounds */
    --bg-primary: #050a0f;
    --bg-secondary: #0d1419;
    --bg-tertiary: #151c22;
    
    /* Advanced Glassmorphism */
    --glass-ultra: rgba(255, 255, 255, 0.03);
    --glass-light: rgba(255, 255, 255, 0.06);
    --glass-medium: rgba(255, 255, 255, 0.09);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-glow: rgba(180, 123, 24, 0.15);
    
    /* Revolutionary Blur System */
    --blur-subtle: 8px;
    --blur-medium: 16px;
    --blur-intense: 24px;
    --blur-extreme: 40px;
    
    /* Next-Gen Shadows */
    --shadow-float: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 50px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 30px var(--gold-glow);
    --shadow-inset: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    
    /* Gradient System */
    --gradient-gold: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    --gradient-dark: linear-gradient(135deg, #0a0f14 0%, #1a2229 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(5, 10, 15, 0) 0%, rgba(5, 10, 15, 0.8) 100%);
    
    /* Animation Curves */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ================================================
   HERO SECTION - AVANT-GARDE DESIGN
   ================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(5, 10, 15, 0.85) 0%, 
        rgba(13, 20, 25, 0.75) 50%, 
        rgba(21, 28, 34, 0.85) 100%
    );
    backdrop-filter: blur(8px);
    z-index: 1;
}

.hero-overlay > * {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(var(--blur-medium));
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-float), var(--shadow-gold);
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    color: #ffffff;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    font-family: 'Playfair Display', Georgia, serif;
}

.hero-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: clamp(1.0625rem, 2vw, 1.3rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 750px;
    letter-spacing: 0.01em;
}

.hero-subtitle strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-gold);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-float), var(--shadow-gold);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 60px var(--gold-glow);
    color: #000;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--glass-light);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-medium));
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-float);
    transition: all 0.3s var(--ease-smooth);
}

.btn-hero-secondary:hover {
    background: var(--glass-medium);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--gold-light);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.mouse-icon-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* ================================================
   REVOLUTIONARY SECTION STYLES
   ================================================ */
.section-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 1.5rem auto;
    padding: 0.5rem 1.5rem;
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--gold-primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    backdrop-filter: blur(var(--blur-subtle));
}

.section-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-align: center;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.section-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ================================================
   ULTRA-MODERN GLASSMORPHIC CARDS
   ================================================ */
.glassmorphic-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.glassmorphic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(180, 123, 24, 0.4) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
}

.glassmorphic-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(180, 123, 24, 0.08) 0%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
    pointer-events: none;
}

.glassmorphic-card:hover::after {
    opacity: 1;
}

.glassmorphic-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(180, 123, 24, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(180, 123, 24, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glassmorphic-card:hover::before {
    opacity: 1;
}

.content-card {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(var(--blur-medium));
    box-shadow: var(--shadow-float);
    transition: all 0.3s var(--ease-smooth);
    margin-bottom: 1.5rem;
}

.content-card:hover {
    border-color: var(--glass-glow);
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-inset);
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ================================================
   PREMIUM IMAGE CONTAINERS
   ================================================ */
.premium-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
}

.premium-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.1) 0%, 
        transparent 50%
    );
    z-index: 1;
    transition: opacity 0.4s;
}

.premium-image-container:hover::before {
    opacity: 0;
}

.premium-image {
    transition: transform 0.6s var(--ease-smooth);
}

.premium-image-container:hover .premium-image {
    transform: scale(1.05);
}

.image-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.premium-image-container:hover .image-glow-effect {
    opacity: 1;
}

/* ================================================
   EDITIONS TIMELINE CAROUSEL - ULTRA PREMIUM
   ================================================ */
.editions-timeline-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(10, 15, 20, 0.95) 0%,
        rgba(15, 20, 25, 0.98) 100%
    );
    margin: 0;
}

/* Section Separators & Breathing Room */

/* Sleek Glassmorphist Line Separator */
.section-separator {
    position: relative;
    height: 1px;
    margin: 2rem auto;
    max-width: 600px;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        rgba(180, 123, 24, 0.2) 25%,
        rgba(180, 123, 24, 0.4) 50%,
        rgba(180, 123, 24, 0.2) 75%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(180, 123, 24, 0.15);
    background-clip: padding-box;
    border-collapse: collapse;
}

/* Reduce separator margin after section-rno to avoid excessive gap */
.section-rno + .section-separator {
    margin: 1.5rem auto;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, 
        rgba(180, 123, 24, 0.9) 0%,
        rgba(180, 123, 24, 0.5) 50%,
        rgba(180, 123, 24, 0.2) 70%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 15px rgba(180, 123, 24, 0.6);
}

.spacer-section {
    height: 1.5rem;
}

@media (max-width: 991px) {
    section {
        margin: 1.5rem 0;
    }
    
    .section-separator {
        margin: 2rem auto;
        max-width: 400px;
    }
    
    .spacer-section {
        height: 1rem;
    }
}

.editions-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow: visible;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 1399px) {
    .editions-carousel-wrapper {
        max-width: 1140px;
    }
}

@media (max-width: 1199px) {
    .editions-carousel-wrapper {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .editions-carousel-wrapper {
        max-width: 720px;
    }
}

@media (max-width: 767px) {
    .editions-carousel-wrapper {
        max-width: 540px;
    }
}

@media (max-width: 575px) {
    .editions-carousel-wrapper {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
}

#editions-carousel {
    padding: 1rem 0;
}

.edition-card {
    position: relative;
    height: 600px;
    margin: 0 15px;
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.5s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.edition-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease-smooth);
    z-index: 0;
}

.edition-card:hover .edition-background {
    transform: scale(1.08);
}

.edition-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.3) 0%,
        rgba(10, 15, 20, 0.75) 50%,
        rgba(10, 15, 20, 0.95) 100%
    );
    z-index: 1;
    transition: background 0.5s var(--ease-smooth);
}

.edition-card.current-edition .edition-overlay {
    background: linear-gradient(
        180deg,
        rgba(180, 123, 24, 0.15) 0%,
        rgba(10, 15, 20, 0.7) 50%,
        rgba(10, 15, 20, 0.98) 100%
    );
}

.edition-card:hover .edition-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.2) 0%,
        rgba(10, 15, 20, 0.7) 50%,
        rgba(10, 15, 20, 0.92) 100%
    );
}

.edition-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.edition-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease-smooth);
}

.edition-badge.current {
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.25) 0%,
        rgba(212, 167, 106, 0.15) 100%
    );
    color: #d4a76a;
    border-color: rgba(180, 123, 24, 0.4);
}

.edition-badge.completed {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #d4a76a;
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.edition-number {
    font-size: 6rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(180, 123, 24, 0.3);
}

.edition-card.completed-edition .edition-number {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.2) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edition-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.edition-card.completed-edition .edition-title {
    color: rgba(255, 255, 255, 0.7);
}

.edition-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.edition-card.completed-edition .edition-detail-item {
    color: rgba(255, 255, 255, 0.5);
}

.edition-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 8px 24px rgba(180, 123, 24, 0.3);
    width: fit-content;
}

.edition-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.5);
    color: #ffffff;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
}

/* Owl Carousel Navigation Customization */
#editions-carousel .owl-nav {
    position: relative;
    width: 100%;
    height: 0;
    z-index: 10;
}

#editions-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

#editions-carousel .owl-nav button.owl-prev {
    left: -70px;
}

#editions-carousel .owl-nav button.owl-next {
    right: -70px;
}

#editions-carousel .owl-nav button:hover {
    background: rgba(180, 123, 24, 0.2) !important;
    border-color: rgba(180, 123, 24, 0.4) !important;
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.3);
}

#editions-carousel .owl-nav button span {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

@media (max-width: 1399px) {
    #editions-carousel .owl-nav button.owl-prev {
        left: -50px;
    }
    
    #editions-carousel .owl-nav button.owl-next {
        right: -50px;
    }
}

@media (max-width: 991px) {
    #editions-carousel .owl-nav button {
        width: 48px;
        height: 48px;
    }
    
    #editions-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    #editions-carousel .owl-nav button.owl-next {
        right: 10px;
    }
    
    #editions-carousel .owl-nav button span {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    #editions-carousel .owl-nav button {
        width: 40px;
        height: 40px;
    }
    
    #editions-carousel .owl-nav button.owl-prev {
        left: 5px;
    }
    
    #editions-carousel .owl-nav button.owl-next {
        right: 5px;
    }
    
    #editions-carousel .owl-nav button span {
        font-size: 1.5rem;
    }
}

#editions-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

#editions-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#editions-carousel .owl-dot.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: rgba(180, 123, 24, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .edition-card {
        height: 550px;
    }
    
    .edition-content {
        padding: 2.5rem;
    }
    
    .edition-number {
        font-size: 5rem;
    }
    
    .edition-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .editions-timeline-section {
        padding: 4rem 0;
    }
    
    .edition-card {
        height: 500px;
        margin: 0 0.5rem;
    }
    
    .edition-content {
        padding: 2rem;
    }
    
    .edition-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .edition-number {
        font-size: 4rem;
    }
    
    .edition-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .edition-details {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .edition-detail-item {
        font-size: 0.9rem;
    }
    
    .edition-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    #editions-carousel .owl-nav button {
        width: 48px;
        height: 48px;
        margin: 0 0.5rem;
    }
}

/* ================================================
   VENUE SECTION - FUTURISTIC DESIGN
   ================================================ */
.venue-section {
    position: relative;
    padding: 4rem 0;
}

.venue-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .venue-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.04) 0%, 
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(180, 123, 24, 0.15);
    border-radius: 18px;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(180, 123, 24, 0.8) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover::before {
    opacity: 1;
    width: 60%;
}

.feature-item:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(180, 123, 24, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(180, 123, 24, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.15) 0%,
        rgba(180, 123, 24, 0.08) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.25);
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(180, 123, 24, 0.1) 0%, 
        transparent 70%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.25) 0%,
        rgba(180, 123, 24, 0.12) 100%);
    border-color: rgba(180, 123, 24, 0.5);
    transform: scale(1.12) rotateY(5deg);
    box-shadow: 0 8px 24px rgba(180, 123, 24, 0.2);
}

.feature-item:hover .feature-icon::after {
    opacity: 1;
}

.feature-item:hover .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(212, 167, 106, 0.4));
}

.feature-content {
    flex: 1;
    width: 100%;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
    text-transform: capitalize;
}

.feature-content p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-item {
        padding: 2rem 1.8rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-content h4 {
        font-size: 1.15rem;
    }

    .feature-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .feature-item {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }

    .feature-icon {
        width: 68px;
        height: 68px;
    }

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

    .feature-content p {
        font-size: 0.93rem;
    }
}

/* ================================================
   ABOUT SECTION - REVOLUTIONARY TABS
   ================================================ */
.about-section {
    position: relative;
    padding: 6rem 0;
}

.de-service-tab-premium {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-tab-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-left: 3px solid transparent;
    border-radius: 12px;
    backdrop-filter: blur(var(--blur-subtle));
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.service-tab-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gradient-gold);
    transition: width 0.3s var(--ease-smooth);
    border-radius: 12px 0 0 12px;
}

.service-tab-item:hover::before,
.service-tab-item.active::before {
    width: 4px;
}

.service-tab-item:hover,
.service-tab-item.active {
    background: var(--glass-light);
    border-left-color: var(--gold-primary);
    transform: translateX(10px);
    box-shadow: var(--shadow-float);
}

.tab-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    font-family: monospace;
    flex-shrink: 0;
    width: 40px;
}

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

.tab-content-text h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.tab-content-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.tab-arrow {
    font-size: 1.5rem;
    color: var(--gold-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-smooth);
}

.service-tab-item:hover .tab-arrow,
.service-tab-item.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

.de-service-holder-premium > div {
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.de-service-holder-premium > div.active {
    display: block;
    opacity: 1;
    animation: fadeInScale 0.5s var(--ease-entrance);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.service-image-container.active {
    display: block;
    position: relative;
    opacity: 1;
}

.service-image-container img {
    transition: transform 0.5s var(--ease-smooth);
}

.service-image-container:hover img {
    transform: scale(1.05);
}

.de-service-holder-premium {
    position: relative;
    min-height: 400px;
}

/* ================================================
   ACHIEVEMENT CARDS - PREMIUM GRID REDESIGN
   ================================================ */
.about-section-revamped {
    position: relative;
    padding: 6rem 0;
}

.achievement-card-premium {
    position: relative;
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(var(--blur-medium));
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(180, 123, 24, 0.15), 
                0 0 60px rgba(180, 123, 24, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(180, 123, 24, 0.4);
}

.achievement-image {
    position: relative;
    width: 100%;
    padding-top: 65%; /* 16:10 aspect ratio */
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.achievement-card-premium.compact .achievement-image {
    padding-top: 85%; /* Taller for compact cards */
}

.achievement-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.achievement-card-premium:hover .achievement-image img {
    transform: scale(1.08);
}

.achievement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 15, 20, 0.1) 0%,
        rgba(10, 15, 20, 0.4) 50%,
        rgba(10, 15, 20, 0.8) 100%
    );
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity 0.4s var(--ease-smooth);
}

.achievement-card-premium:hover .achievement-overlay {
    opacity: 0.6;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 20px rgba(180, 123, 24, 0.3);
}

.achievement-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievement-card-premium.compact .achievement-content {
    padding: 1.5rem;
}

.achievement-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s var(--ease-smooth);
}

.achievement-card-premium:hover .achievement-content h3 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-card-premium.compact .achievement-content h3 {
    font-size: 1.25rem;
}

.achievement-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.achievement-card-premium.compact .achievement-content p {
    font-size: 0.9375rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .achievement-card-premium {
        margin-bottom: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .achievement-content h3 {
        font-size: 1.25rem;
    }
    
    .achievement-card-premium.compact .achievement-content h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .achievement-image {
        padding-top: 75%;
    }
    
    .achievement-card-premium.compact .achievement-image {
        padding-top: 75%;
    }
    
    .achievement-content {
        padding: 1.5rem;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
}

/* ================================================
   SOCIETIES CARDS - ULTRA PREMIUM
   ================================================ */
.societies-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.societies-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.society-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(var(--blur-medium));
    box-shadow: var(--shadow-float);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.society-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.society-card:hover {
    background: var(--glass-medium);
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-gold);
}

.society-card:hover::after {
    transform: scaleX(1);
}

.society-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--glass-ultra);
    border-radius: 12px;
}

.society-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.3s;
}

.society-card:hover .society-logo img {
    filter: brightness(1.3) drop-shadow(0 0 10px var(--gold-glow));
    transform: scale(1.1);
}

.society-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.society-card p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.6;
}

/* ================================================
   TESTIMONIALS - REVOLUTIONARY DESIGN
   ================================================ */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
}

.testimonials-carousel-container {
    position: relative;
    padding: 2rem 0;
}

.testimonial-card-premium {
    background: var(--glass-light);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(var(--blur-medium));
    box-shadow: var(--shadow-float);
    transition: all 0.4s var(--ease-smooth);
    margin: 1rem;
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-smooth);
}

.testimonial-card-premium:hover {
    background: var(--glass-medium);
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-gold);
}

.testimonial-card-premium:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-ultra);
    border-radius: 12px;
}

.rating {
    color: var(--gold-primary);
    font-size: 1.25rem;
    letter-spacing: 0.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
}

.testimonial-text strong {
    color: var(--gold-light);
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Owl Carousel Customization for Premium Testimonials */
#carousel__testimonial__premium .owl-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

#carousel__testimonial__premium .owl-dot {
    width: 12px;
    height: 12px;
    background: var(--glass-light);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    transition: all 0.3s;
}

#carousel__testimonial__premium .owl-dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--gradient-gold);
    border-color: var(--gold-primary);
}

#carousel__testimonial__premium .owl-nav button {
    width: 50px;
    height: 50px;
    background: var(--glass-light) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(var(--blur-medium));
    color: var(--gold-primary) !important;
    font-size: 1.5rem !important;
    transition: all 0.3s !important;
}

#carousel__testimonial__premium .owl-nav button:hover {
    background: var(--glass-medium) !important;
    border-color: var(--gold-primary) !important;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: space-around;
    }
    
    .society-card {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card-premium {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title-main {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    
    .testimonial-card-premium {
        padding: 1.5rem 1rem;
    }
}

/* ================================================
   ACCESSIBILITY & PERFORMANCE
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Force GPU acceleration for smooth animations */
.glassmorphic-card,
.testimonial-card-premium,
.society-card,
.premium-image,
.service-tab-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ================================================
   CLOSED REGISTRATION MODAL - CENTERED & GLASSMORPHIST
   ================================================ */
.closed-registration-modal {
    background: rgba(15, 20, 26, 0.95) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 2px solid rgba(180, 123, 24, 0.3) !important;
    border-radius: 24px !important;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(180, 123, 24, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.closed-registration-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b47b18, #d4a76a, #b47b18, transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.closed-registration-modal .modal-body {
    padding: 4rem 3rem !important;
    background: transparent !important;
}

.modal-icon-wrapper {
    margin-bottom: 2rem;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon-wrapper svg {
    filter: drop-shadow(0 4px 20px rgba(180, 123, 24, 0.4));
}

.modal-title-custom {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a76a;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(180, 123, 24, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.btn-modal-primary {
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #b47b18, #d4a76a);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(180, 123, 24, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.6s ease-out 0.6s both;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-modal-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(180, 123, 24, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #d4a76a, #b47b18);
}

.btn-modal-primary:active {
    transform: translateY(0);
}

.btn-close-custom {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
}

.btn-close-custom:hover {
    background: rgba(180, 123, 24, 0.2);
    border-color: rgba(180, 123, 24, 0.5);
    color: #d4a76a;
    transform: rotate(90deg);
}

.modal-backdrop.show {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* ================================================
   ULTIMATE ENHANCEMENTS - PERFECTION LAYER
   Fixes, Mobile Optimization, Advanced Effects
   ================================================ */

/* ================================================
   SHADOW CUTOFF FIXES - Add overflow padding
   ================================================ */
section {
    padding-left: 1rem;
    padding-right: 1rem;
    overflow-x: hidden;
}

.container {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

/* Prevent shadow clipping on cards */
.glassmorphic-card,
.testimonial-card-premium,
.society-card,
.content-card,
.service-tab-item {
    margin: 1.5rem 0;
}

.row {
    margin-left: -1rem;
    margin-right: -1rem;
}

[class*="col-"] {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Add breathing room for shadow effects */
.testimonials-carousel-container,
.venue-features,
.hero-cta-group {
    padding: 2rem 0;
}

/* ================================================
   ENHANCED GLASSMORPHISM EFFECTS
   ================================================ */

/* Animated gradient borders */
.glassmorphic-card-enhanced {
    position: relative;
    background: var(--glass-light, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.12));
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.glassmorphic-card-enhanced::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(180, 123, 24, 0.3) 25%, 
        transparent 50%,
        rgba(180, 123, 24, 0.3) 75%,
        transparent 100%
    );
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glassmorphic-card-enhanced:hover::before {
    opacity: 1;
}

/* Floating particles effect */
.hero-section::before,
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(180, 123, 24, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(180, 123, 24, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 167, 106, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Improved text shadows for better readability */
.hero-title,
.section-title-main {
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(180, 123, 24, 0.2);
}

/* Micro-interactions on hover */
.btn-hero-primary,
.btn-hero-secondary {
    transform-origin: center;
}

.btn-hero-primary:active {
    transform: translateY(-3px) scale(0.98);
}

.btn-hero-secondary:active {
    transform: translateY(-3px) scale(0.98);
}

/* ================================================
   MOBILE RESPONSIVENESS IMPROVEMENTS
   ================================================ */

/* Better mobile spacing */
@media (max-width: 768px) {
    section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    [class*="col-"] {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Reduce shadow intensity on mobile to prevent cutoff */
    .glassmorphic-card,
    .testimonial-card-premium,
    .society-card {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        margin: 1rem 0;
    }
    
    /* Stack hero stats vertically on mobile */
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    /* Better mobile hero spacing */
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Mobile CTA buttons */
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 1rem 0;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
    
    /* Mobile section titles */
    .section-title-main {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.3;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }
    
    /* Mobile content cards */
    .content-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    /* Mobile feature items */
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    
    .feature-icon {
        margin: 0 auto 1rem;
    }
    
    /* Mobile service tabs */
    .service-tab-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .tab-number {
        font-size: 1.25rem;
        width: 35px;
    }
    
    .tab-content-text h3 {
        font-size: 1rem;
    }
    
    .tab-content-text p {
        font-size: 0.85rem;
    }
    
    /* Mobile society cards */
    .society-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .society-logo {
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .society-logo img {
        max-height: 60px;
    }
    
    .society-card h4 {
        font-size: 0.9375rem;
    }
    
    .society-card p {
        font-size: 0.8125rem;
    }
    
    /* Mobile testimonials */
    .testimonial-card-premium {
        padding: 2rem 1.25rem;
        margin: 0.75rem 0.25rem;
        border-radius: 16px;
    }
    
    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .quote-icon {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .testimonial-author {
        padding-top: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-title {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .testimonial-card-premium {
        padding: 1.5rem 1rem;
        margin: 0.5rem 0.125rem;
    }
    
    .rating {
        font-size: 1rem;
        letter-spacing: 0.15rem;
    }
}

/* ================================================
   IMPROVED ABOUT ME SECTION REDESIGN
   ================================================ */

/* Better tab hover states */
.service-tab-item {
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tab-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0) 0%, 
        rgba(180, 123, 24, 0.3) 50%, 
        rgba(180, 123, 24, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.35s;
    pointer-events: none;
}

.service-tab-item:hover::after,
.service-tab-item.active::after {
    opacity: 1;
}

/* Improved image containers in about section */
.service-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.15) 0%, 
        transparent 40%,
        transparent 60%,
        rgba(180, 123, 24, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.service-image-container:hover::before {
    opacity: 1;
}

.service-image-container img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-container:hover img {
    transform: scale(1.08);
}

/* Better societies section styling */
.societies-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.societies-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b47b18, #d4a76a);
    border-radius: 2px;
}

/* ================================================
   ADVANCED ANIMATIONS
   ================================================ */

/* Parallax effect on scroll */
@media (min-width: 769px) {
    .parallax-element {
        transition: transform 0.1s ease-out;
    }
}

/* Shimmer effect on premium elements */
@keyframes shimmerEffect {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-on-hover {
    position: relative;
    overflow: hidden;
}

.shimmer-on-hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.shimmer-on-hover:hover::after {
    opacity: 1;
    animation: shimmerEffect 1.5s ease-in-out;
}

/* Pulse effect for important elements */
@keyframes gentlePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(180, 123, 24, 0.3);
    }
}

.pulse-gentle {
    animation: gentlePulse 3s ease-in-out infinite;
}

/* ================================================
   ENHANCED TESTIMONIAL CAROUSEL
   ================================================ */

/* Better carousel navigation */
#carousel__testimonial__premium .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

#carousel__testimonial__premium .owl-nav button {
    pointer-events: all;
    margin: 0 -25px;
}

#carousel__testimonial__premium .owl-nav button.owl-prev {
    margin-left: -15px;
}

#carousel__testimonial__premium .owl-nav button.owl-next {
    margin-right: -15px;
}

@media (max-width: 768px) {
    #carousel__testimonial__premium .owl-nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    #carousel__testimonial__premium .owl-nav button {
        margin: 0;
    }
}

/* ================================================
   IMPROVED SECTION BACKGROUNDS
   ================================================ */

/* Add subtle texture to dark sections */
.bg-dark-2 {
    position: relative;
}

.bg-dark-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        );
    pointer-events: none;
    opacity: 0.3;
}

/* Section dividers */
section + section {
    position: relative;
}

section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(180, 123, 24, 0.3) 50%,
        transparent 100%
    );
}

/* ================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================ */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
.service-tab-item:focus-visible {
    outline: 2px solid #b47b18;
    outline-offset: 4px;
    border-radius: 8px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ================================================
   PERFORMANCE OPTIMIZATIONS
   ================================================ */

/* Force GPU acceleration */
.glassmorphic-card,
.testimonial-card-premium,
.society-card,
.service-tab-item,
.content-card,
.btn-hero-primary,
.btn-hero-secondary {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize backdrop-filter performance */
@supports (backdrop-filter: blur(10px)) {
    .glassmorphic-card,
    .testimonial-card-premium,
    .content-card {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .glassmorphic-card,
    .testimonial-card-premium,
    .content-card {
        background: rgba(21, 28, 34, 0.9);
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .hero-section,
    .testimonials-section,
    .glassmorphic-card {
        background: white;
        color: black;
        box-shadow: none;
    }
}

/* ================================================
   ULTRA-MODERN BORDER EFFECTS
   ================================================ */

/* Animated border gradient */
.border-gradient-animated {
    position: relative;
    border: none;
}

.border-gradient-animated::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        45deg,
        #b47b18,
        #d4a76a,
        #b47b18,
        #8a5f12
    );
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientRotate 4s linear infinite;
    opacity: 0.5;
}

@keyframes gradientRotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glass reflection effect */
.glass-reflection {
    position: relative;
    overflow: hidden;
}

.glass-reflection::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: transform 0.6s;
}

.glass-reflection:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* ================================================
   REFINED SPACING SYSTEM
   ================================================ */

/* Better vertical rhythm */
.section-rno,
.about-section,
.testimonials-section,
.venue-section {
    padding-top: 6rem;
    padding-bottom: 2rem;
}

@media (max-width: 768px) {
    .section-rno,
    .about-section,
    .testimonials-section,
    .venue-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* Consistent spacing between elements */
.content-card + .content-card {
    margin-top: 0;
}

.glassmorphic-card + .glassmorphic-card {
    margin-top: 0;
}

/* Better list spacing */
.venue-features,
.hero-stats {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .venue-features,
    .hero-stats {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
}
/* ================================================
   REVOLUTIONARY PROGRAM SECTION DESIGN
   ================================================ */

.program-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.program-schedule-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: var(--glass-light, rgba(255, 255, 255, 0.06));
    border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.12));
    border-radius: 50px;
    backdrop-filter: blur(12px);
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.program-schedule-badge svg {
    flex-shrink: 0;
}

/* Module Cards */
.program-module-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(180, 123, 24, 0.05) 100%
    );
    border: 1.5px solid rgba(180, 123, 24, 0.25);
    border-radius: 32px;
    padding: 0;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 
        0 15px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(180, 123, 24, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.program-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(212, 167, 106, 0.5) 50%,
        transparent 100%
    );
}

.program-module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(180, 123, 24, 0.05), transparent 50%);
    pointer-events: none;
}

.program-module-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(180, 123, 24, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(180, 123, 24, 0.4);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(180, 123, 24, 0.08) 100%
    );
}

/* Module Header */
.module-header {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 3rem 2.5rem;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.12) 0%, 
        rgba(180, 123, 24, 0.03) 100%
    );
    border-bottom: 1px solid rgba(180, 123, 24, 0.15);
}

.module-number {
    font-size: 5.5rem;
    font-weight: 950;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 40%, #d4a76a 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    line-height: 1;
    flex-shrink: 0;
    position: relative;
    opacity: 0.85;
    transition: all 0.6s;
}

.program-module-card:hover .module-number {
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(212, 167, 106, 0.4));
}

.module-title-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.module-title {
    font-size: 2.25rem;
    font-weight: 950;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.015em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(212, 167, 106, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.6s;
}

.program-module-card:hover .module-title {
    filter: drop-shadow(0 0 8px rgba(212, 167, 106, 0.3));
}

.module-date {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(180, 123, 24, 0.08);
    border: 1px solid rgba(180, 123, 24, 0.25);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #d4a76a;
    width: fit-content;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
}

.program-module-card:hover .module-date {
    background: rgba(180, 123, 24, 0.15);
    border-color: rgba(180, 123, 24, 0.4);
    box-shadow: 0 0 16px rgba(180, 123, 24, 0.15);
}

/* Module Content */
.module-content {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.content-section {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(180, 123, 24, 0.02) 100%
    );
    border: 1px solid rgba(180, 123, 24, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(180, 123, 24, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.content-section:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%,
        rgba(180, 123, 24, 0.05) 100%
    );
    border-color: rgba(180, 123, 24, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(180, 123, 24, 0.12);
}

.content-section:hover::before {
    opacity: 1;
}

.content-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 850;
    color: #ffffff;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(180, 123, 24, 0.25);
    transition: all 0.4s;
}

.content-section-title svg {
    flex-shrink: 0;
    opacity: 0.9;
    transition: all 0.4s;
}

.content-section:hover .content-section-title {
    border-bottom-color: rgba(180, 123, 24, 0.5);
    color: rgba(255, 255, 255, 1);
}

.content-section:hover .content-section-title svg {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(212, 167, 106, 0.4));
}

/* Modern List Styling */
.modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.modern-list li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #d4a76a, #b47b18);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(212, 167, 106, 0.5);
    transition: all 0.4s;
    transform-origin: center;
}

.modern-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0.95em;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #b47b18, transparent);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-list li:hover {
    color: rgba(255, 255, 255, 0.98);
    padding-left: 2.75rem;
    transform: translateX(4px);
}

.modern-list li:hover::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 16px rgba(212, 167, 106, 0.7);
    transform: scale(1.2);
}

.modern-list li:hover::after {
    width: 12px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .program-section {
        padding: 3rem 0;
    }
    
    .program-schedule-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .program-schedule-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .program-module-card {
        border-radius: 16px;
        margin-bottom: 2rem;
    }
    
    .module-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1.75rem 1.5rem 1.5rem;
    }
    
    .module-number {
        font-size: 2rem;
    }
    
    .module-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .module-date {
        font-size: 0.875rem;
        padding: 0.4rem 0.875rem;
    }
    
    .module-date svg {
        width: 14px;
        height: 14px;
    }
    
    .module-content {
        padding: 1.5rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .content-section-title {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .content-section-title svg {
        width: 18px;
        height: 18px;
    }
    
    .modern-list {
        gap: 0.875rem;
    }
    
    .modern-list li {
        font-size: 0.875rem;
        padding-left: 1.75rem;
    }
}

@media (max-width: 480px) {
    .module-header {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .module-number {
        font-size: 1.75rem;
    }
    
    .module-title {
        font-size: 1.25rem;
    }
    
    .module-content {
        padding: 1.25rem;
    }
    
    .content-section {
        padding: 1.25rem;
    }
    
    .modern-list li {
        font-size: 0.8125rem;
        padding-left: 1.5rem;
    }
}

/* ================================================
   PROGRAM SECTION ANIMATIONS
   ================================================ */

.program-module-card {
    opacity: 0;
    animation: moduleAppear 0.6s ease forwards;
}

@keyframes moduleAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for modules */
.program-module-card:nth-child(1) {
    animation-delay: 0.1s;
}

.program-module-card:nth-child(2) {
    animation-delay: 0.2s;
}

.program-module-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* List item stagger animation */
.modern-list li {
    opacity: 0;
    animation: listItemAppear 0.4s ease forwards;
}

@keyframes listItemAppear {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.modern-list li:nth-child(1) { animation-delay: 0.05s; }
.modern-list li:nth-child(2) { animation-delay: 0.1s; }
.modern-list li:nth-child(3) { animation-delay: 0.15s; }
.modern-list li:nth-child(4) { animation-delay: 0.2s; }
.modern-list li:nth-child(5) { animation-delay: 0.25s; }
.modern-list li:nth-child(6) { animation-delay: 0.3s; }
.modern-list li:nth-child(7) { animation-delay: 0.35s; }
.modern-list li:nth-child(8) { animation-delay: 0.4s; }
.modern-list li:nth-child(9) { animation-delay: 0.45s; }
.modern-list li:nth-child(10) { animation-delay: 0.5s; }

/* Disable animations on mobile for performance */
@media (max-width: 768px) {
    .program-module-card,
    .modern-list li {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ================================================
   GLASS REFLECTION EFFECT (from ultimate-enhancements.css)
   ================================================ */
.glass-reflection {
    position: relative;
    overflow: hidden;
}

.glass-reflection::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: transform 0.6s;
    pointer-events: none;
}

.glass-reflection:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
}

/* Performance Optimization */
.program-module-card,
.content-section,
.modern-list li {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ================================================
   PRICING SECTION - ULTRA PREMIUM
   ================================================ */

.pricing-section-premium {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 15, 20, 0.95) 0%, rgba(15, 20, 26, 0.98) 100%);
    position: relative;
}

.gold-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gold-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Urgent Notice Card */
.urgent-notice-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(212, 167, 106, 0.1) 0%, rgba(180, 123, 24, 0.05) 100%);
    border: 2px solid rgba(212, 167, 106, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.urgent-icon {
    font-size: 3rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.urgent-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.urgent-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Pricing Cards */
.pricing-card-premium {
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(var(--blur-subtle));
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-smooth);
}

.pricing-card-premium:hover::before,
.pricing-card-premium.featured::before {
    transform: scaleX(1);
}

.pricing-card-premium:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(180, 123, 24, 0.2);
}

.pricing-card-premium.featured {
    background: linear-gradient(135deg, rgba(212, 167, 106, 0.08) 0%, rgba(180, 123, 24, 0.04) 100%);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 40px rgba(180, 123, 24, 0.15);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--gold-light);
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: 0.5rem;
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-primary) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.pricing-features {
    flex: 1;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-feature span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-reservation {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(212, 167, 106, 0.1);
}

.reservation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.reservation-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
}

.reservation-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.reservation-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* Info Cards */
.info-card-premium {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--glass-ultra);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(var(--blur-subtle));
    height: 100%;
    transition: all 0.3s var(--ease-smooth);
}

.info-card-premium:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(180, 123, 24, 0.1);
    border-radius: 12px;
}

.info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.info-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Cancellation Policy Card */
.cancellation-policy-card {
    background: var(--glass-light);
    border: 2px solid rgba(212, 167, 106, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(var(--blur-strong));
}

.cancellation-policy-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.policy-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-badge {
    font-size: 2.5rem;
    font-weight: 900;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.policy-badge.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: #66bb6a;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.policy-badge.warning {
    background: linear-gradient(135deg, rgba(255, 167, 38, 0.2) 0%, rgba(245, 124, 0, 0.1) 100%);
    color: #ffa726;
    border: 2px solid rgba(255, 167, 38, 0.3);
}

.policy-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.policy-details p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Payment Buttons */
.btn-payment-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: var(--glass-ultra);
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    width: 100%;
    backdrop-filter: blur(var(--blur-subtle));
}

.btn-payment-premium:hover {
    background: var(--glass-light);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(180, 123, 24, 0.2);
    color: #ffffff;
}

.btn-payment-premium.full {
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    border-color: var(--gold-primary);
}

.btn-payment-premium svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card-premium.featured {
        transform: scale(1);
    }
    
    .urgent-notice-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pricing-section-premium {
        padding: 60px 0;
    }
    
    .pricing-card-premium {
        padding: 2rem;
    }
    
    .pricing-price .amount {
        font-size: 3rem;
    }
    
    .cancellation-policy-card {
        padding: 2rem;
    }
    
    .policy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-payment-premium {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ============================================
   INSCRIPTION PAGE STYLES
   Modern dedicated inscription page with glassmorphism
   ============================================ */

.inscription-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
    padding: 0;
    overflow-x: hidden;
}

/* Back Button */
.back-button-premium {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-button-premium:hover {
    background: rgba(180, 123, 24, 0.15);
    border-color: rgba(180, 123, 24, 0.5);
    color: #d4a76a;
    transform: translateX(-5px);
    box-shadow: 0 6px 25px rgba(180, 123, 24, 0.3);
}

.back-button-premium svg {
    transition: transform 0.3s ease;
}

.back-button-premium:hover svg {
    transform: translateX(-3px);
}

/* Inscription Container */
.inscription-container {
    padding-top: 6rem;
    padding-bottom: 4rem;
}

/* Hero Section */
.inscription-hero {
    padding: 3rem 0 4rem;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.75rem;
    background: rgba(180, 123, 24, 0.1);
    border: 1px solid rgba(180, 123, 24, 0.3);
    border-radius: 50px;
    color: #d4a76a;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #b47b18;
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #b47b18;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.inscription-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.inscription-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Pricing Selector Card */
.pricing-selector-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(180, 123, 24, 0.05) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 32px;
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.selector-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.selector-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* Pricing Options */
.pricing-options {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-option-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    flex: 1;
    min-width: 280px;
}

.pricing-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(180, 123, 24, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.pricing-option-card:hover::before,
.pricing-option-card.active::before {
    opacity: 1;
}

.pricing-option-card:hover {
    border-color: rgba(180, 123, 24, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 123, 24, 0.15);
}

.pricing-option-card.active {
    border-color: #b47b18;
    background: rgba(180, 123, 24, 0.08);
    box-shadow: 0 10px 30px rgba(180, 123, 24, 0.2);
}

.pricing-option-card.featured {
    border-color: rgba(180, 123, 24, 0.4);
}

.pricing-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-radius: 50px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-content {
    position: relative;
    z-index: 1;
}

.option-header {
    margin-bottom: 1rem;
}

.option-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.option-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.option-price {
    margin-bottom: 1.25rem;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 950;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.option-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.25rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.option-features svg {
    flex-shrink: 0;
    stroke: #b47b18;
}

.option-payment-breakdown {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.breakdown-row strong {
    color: #d4a76a;
    font-weight: 700;
}

.option-checkmark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-option-card.active .option-checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Discount Notice */
.discount-notice {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(180, 123, 24, 0.08);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.discount-notice svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.discount-content {
    flex: 1;
}

.discount-content strong {
    display: block;
    color: #d4a76a;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.discount-content a {
    color: #d4a76a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.discount-content a:hover {
    color: #fff;
}

/* Payment Form Card */
.payment-form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(180, 123, 24, 0.05) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 32px;
    padding: 2.5rem;
    backdrop-filter: blur(30px);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
}

.section-label {
    font-size: 1.125rem;
    font-weight: 800;
    color: #d4a76a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(180, 123, 24, 0.2);
}

/* Form Group */
.form-group-premium {
    margin-bottom: 1.25rem;
}

.form-group-premium label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.form-group-premium input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-premium input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #b47b18;
    box-shadow: 0 0 0 3px rgba(180, 123, 24, 0.1);
}

.form-group-premium input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Payment Method Selector */
.payment-method-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-method-option:hover {
    border-color: rgba(180, 123, 24, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.payment-method-option.active {
    border-color: #b47b18;
    background: rgba(180, 123, 24, 0.08);
    box-shadow: 0 4px 15px rgba(180, 123, 24, 0.15);
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.method-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(180, 123, 24, 0.1);
    border-radius: 12px;
    color: #d4a76a;
    transition: all 0.3s ease;
}

.payment-method-option.active .method-icon {
    background: rgba(180, 123, 24, 0.2);
}

.method-details h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.method-details p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.method-checkmark {
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.payment-method-option.active .method-checkmark {
    opacity: 1;
    transform: scale(1);
}

/* Edition Selector Styles */
.edition-selector {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.edition-option-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    flex: 1;
    min-width: 280px;
}

.edition-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(180, 123, 24, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.edition-option-card:hover::before,
.edition-option-card.active::before {
    opacity: 1;
}

.edition-option-card:hover {
    border-color: rgba(180, 123, 24, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(180, 123, 24, 0.15);
}

.edition-option-card.active {
    border-color: #b47b18;
    background: rgba(180, 123, 24, 0.08);
    box-shadow: 0 10px 30px rgba(180, 123, 24, 0.2);
}

.edition-option-card.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.edition-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.edition-dropdown {
    animation: slideDown 0.4s ease;
}

.dropdown-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
}

.edition-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(180, 123, 24, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23b47b18' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.edition-select:hover {
    border-color: rgba(180, 123, 24, 0.4);
    background-color: rgba(255, 255, 255, 0.08);
}

.edition-select:focus {
    outline: none;
    border-color: #b47b18;
    box-shadow: 0 0 0 3px rgba(180, 123, 24, 0.1);
}

.edition-select option {
    background: #1a1f26;
    color: #fff;
    padding: 0.75rem;
}

/* Module Distribution Modal */
.module-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.module-modal-content {
    background: linear-gradient(135deg, rgba(20, 25, 30, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 2px solid rgba(180, 123, 24, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 100000;
    animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.module-modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.module-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.module-modal-header p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.module-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-toggle-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.module-toggle-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(180, 123, 24, 0.3);
}

.module-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-toggle-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.module-toggle-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.edition-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    min-width: 80px;
    text-align: center;
    transition: color 0.3s ease;
}

.edition-label.active {
    color: #d4a76a;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(180, 123, 24, 0.2);
}

.toggle-switch.active {
    background: rgba(180, 123, 24, 0.3);
    border-color: #b47b18;
}

.toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(180, 123, 24, 0.4);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(28px);
}

.module-toggle-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.module-modal-footer {
    margin-top: 2rem;
    text-align: center;
}

.btn-modal-confirm {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(180, 123, 24, 0.3);
}

.btn-modal-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 123, 24, 0.4);
}

.btn-modal-confirm:active {
    transform: translateY(0);
}

/* Edition Choice Container */
.edition-choice-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1rem 0;
}

.edition-choice-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(180, 123, 24, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.edition-choice-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(180, 123, 24, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.edition-choice-btn:hover {
    border-color: rgba(180, 123, 24, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(180, 123, 24, 0.2);
}

.edition-choice-btn:hover::before {
    opacity: 1;
}

.edition-choice-btn:active {
    transform: translateY(-2px);
}

.edition-choice-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(180, 123, 24, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.edition-choice-icon svg {
    color: #d4a76a;
    transition: all 0.3s ease;
}

.edition-choice-btn:hover .edition-choice-icon {
    background: rgba(180, 123, 24, 0.2);
    transform: scale(1.1);
}

.edition-choice-btn:hover .edition-choice-icon svg {
    color: #b47b18;
}

.edition-choice-btn h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

.edition-choice-btn p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    transition: color 0.3s ease;
}

.edition-choice-btn:hover h4 {
    color: #d4a76a;
}

.edition-choice-btn:hover p {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Module Selector Styles */
.module-selector-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 1.5rem;
    animation: slideDown 0.3s ease-out;
}

.module-selector-card {
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.05) 0%, rgba(212, 167, 106, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(180, 123, 24, 0.1), transparent);
    transition: left 0.6s ease;
}

.module-selector-card:hover::before {
    left: 100%;
}

.module-selector-card:hover {
    border-color: rgba(180, 123, 24, 0.5);
    transform: translateX(8px);
    box-shadow: -8px 8px 24px rgba(180, 123, 24, 0.15);
}

.module-selector-card.selected {
    border-color: #b47b18;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    box-shadow: 0 8px 32px rgba(180, 123, 24, 0.25), 
                inset 0 0 20px rgba(180, 123, 24, 0.1);
    transform: translateX(8px) scale(1.02);
}

.module-selector-card.selected:hover {
    transform: translateX(10px) scale(1.02);
}

.module-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.module-number-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    border: 1px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4a76a;
    transition: all 0.3s ease;
}

.module-selector-card.selected .module-number-badge {
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    color: #1a1a1a;
    transform: rotate(360deg);
}

.module-selector-card h4 {
    color: #d4a76a;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.module-selector-card.selected h4 {
    color: #f0d9a8;
    transform: translateX(4px);
}

.module-selector-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.module-selector-card.selected p {
    color: rgba(255, 255, 255, 0.85);
}

.module-selector-checkmark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(180, 123, 24, 0.15);
    border: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
}

.module-selector-card.selected .module-selector-checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
    box-shadow: 0 4px 12px rgba(180, 123, 24, 0.4);
}

.module-selector-checkmark::after {
    content: '✓';
    color: transparent;
    font-size: 22px;
    font-weight: bold;
    transition: color 0.3s ease 0.2s;
}

.module-selector-card.selected .module-selector-checkmark::after {
    color: #1a1a1a;
}

.temp-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.98) 0%, rgba(212, 167, 106, 0.98) 100%);
    backdrop-filter: blur(15px);
    color: #1a1a1a;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    z-index: 999999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: tempMessageFade 0.3s ease-out;
}

@keyframes tempMessageFade {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Edition Confirmation Tag */
.edition-confirmation-tag {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    border: 2px solid rgba(180, 123, 24, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(180, 123, 24, 0.15);
}

.edition-confirmation-tag.visible {
    opacity: 1;
    transform: translateY(0);
}

.confirmation-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-icon svg {
    width: 20px;
    height: 20px;
}

.confirmation-text {
    color: #d4a76a;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .edition-confirmation-tag {
        padding: 1rem 1.2rem;
        margin-top: 1.2rem;
    }
    
    .confirmation-icon {
        width: 36px;
        height: 36px;
    }
    
    .confirmation-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .confirmation-text {
        font-size: 0.95rem;
    }
}

/* Responsive adjustments for module selector */
@media (max-width: 768px) {
    .module-selector-container {
        gap: 1rem;
    }
    
    .module-selector-card {
        padding: 1.5rem;
    }
    
    .module-selector-card:hover {
        transform: translateY(-4px);
    }
    
    .module-selector-card.selected {
        transform: translateY(-4px) scale(1.01);
    }
    
    .module-selector-card.selected:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .module-number-badge {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .module-selector-card h4 {
        font-size: 1.15rem;
    }
    
    .module-selector-card p {
        font-size: 0.95rem;
    }
    
    .module-selector-checkmark {
        width: 36px;
        height: 36px;
    }
    
    .module-selector-checkmark::after {
        font-size: 20px;
    }
    
    .temp-message {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        max-width: 85%;
        text-align: center;
        border-radius: 15px;
    }
}

/* Checkbox Group */
.checkbox-group-premium {
    margin-bottom: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.checkbox-label:hover .checkbox-custom {
    border-color: rgba(180, 123, 24, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #b47b18;
    border-color: #b47b18;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-text a {
    color: #d4a76a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: #fff;
}

/* Submit Button */
.btn-submit-premium {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(180, 123, 24, 0.3);
}

.btn-submit-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(180, 123, 24, 0.4);
}

.btn-submit-premium:active {
    transform: translateY(-1px);
}

.btn-submit-premium svg {
    transition: transform 0.3s ease;
}

.btn-submit-premium:hover svg {
    transform: translateX(3px);
}

/* Info Cards Minimal */
.info-card-minimal {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.info-card-minimal:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(180, 123, 24, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(180, 123, 24, 0.1);
}

.info-card-minimal .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(180, 123, 24, 0.12);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.info-card-minimal:hover .info-icon {
    background: rgba(180, 123, 24, 0.2);
    transform: scale(1.08);
}

.info-card-minimal h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.info-card-minimal p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
    .inscription-container {
        padding-top: 5rem;
    }
    
    .inscription-title {
        font-size: 2.5rem;
    }
    
    .pricing-selector-card,
    .payment-form-card {
        margin-bottom: 2rem;
    }
    
    .back-button-premium {
        top: 1.5rem;
        left: 1.5rem;
    }
}

@media (max-width: 767px) {
    .inscription-container {
        padding-top: 4rem;
    }
    
    .back-button-premium {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .inscription-title {
        font-size: 2rem;
    }
    
    .inscription-subtitle {
        font-size: 1.05rem;
    }
    
    .pricing-selector-card,
    .payment-form-card {
        padding: 1.75rem;
    }
    
    .selector-title,
    .form-title {
        font-size: 1.5rem;
    }
    
    .pricing-option-card {
        padding: 1.5rem;
    }
    
    .option-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

/* ============================================
   INSCRIPTION CTA SECTION
   Attractive call-to-action for inscription page
   ============================================ */

/* ============================================
   INSCRIPTION CTA SECTION - REBUILT
   Modern glassmorphic two-column layout
   ============================================ */

.inscription-cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1413 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(180, 123, 24, 0.15);
}

/* Background accent shapes */
.inscription-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 123, 24, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 12s ease-in-out infinite;
    pointer-events: none;
}

.inscription-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 123, 24, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-glow 15s ease-in-out infinite reverse;
    pointer-events: none;
}

/* Left Column: Text Content */
.cta-content-box {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cta-preheading {
    margin-bottom: 1.5rem;
}

.cta-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: rgba(180, 123, 24, 0.12);
    border: 1px solid rgba(180, 123, 24, 0.35);
    border-radius: 50px;
    color: #d4a76a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.1);
    transition: all 0.4s ease;
}

.cta-badge-modern:hover {
    background: rgba(180, 123, 24, 0.18);
    border-color: rgba(180, 123, 24, 0.5);
    box-shadow: 0 6px 30px rgba(180, 123, 24, 0.15);
}

.badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #b47b18;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.cta-title-hero {
    font-size: 4.2rem;
    font-weight: 950;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1rem 0;
    letter-spacing: -1px;
    text-align: left;
}

.cta-subtitle-box {
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    line-height: 1.15;
}

.gradient-accent {
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 50%, #d4a76a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 950;
}

.cta-location {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #b47b18 0%, #d4a76a 50%, #b47b18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    animation: shimmer-soft 3s ease-in-out infinite;
}

@keyframes shimmer-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.cta-description-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 2rem 0 2.5rem 0;
    max-width: 420px;
    font-weight: 500;
}

/* Stats Display */
.cta-stats-mini {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 0;
    margin-bottom: 2rem;
    border-top: 1px solid rgba(180, 123, 24, 0.2);
    border-bottom: 1px solid rgba(180, 123, 24, 0.2);
}

.stat-item {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 950;
    color: #d4a76a;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(180, 123, 24, 0.3);
}

/* CTA Button */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 35px rgba(180, 123, 24, 0.3),
        0 0 20px rgba(212, 167, 106, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    transition: left 0.4s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(180, 123, 24, 0.4),
        0 0 30px rgba(212, 167, 106, 0.25);
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover svg {
    transform: translateX(4px);
}

/* Right Column: Features */
.cta-features-box {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 2;
}

.features-glow-bg {
    position: absolute;
    top: 50%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 123, 24, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    animation: float-glow 10s ease-in-out infinite;
}

.feature-card {
    display: flex;
    gap: 1.2rem;
    padding: 1.6rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(180, 123, 24, 0.04) 100%);
    border: 1px solid rgba(180, 123, 24, 0.28);
    border-radius: 24px;
    backdrop-filter: blur(28px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4a76a 0%, #b47b18 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateX(8px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13) 0%, rgba(180, 123, 24, 0.09) 100%);
    border-color: rgba(180, 123, 24, 0.45);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(212, 167, 106, 0.18);
    border: 1.5px solid rgba(212, 167, 106, 0.4);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-circle {
    background: rgba(212, 167, 106, 0.28);
    border-color: rgba(212, 167, 106, 0.65);
    transform: scale(1.1);
}

/* Premium Feature Content - Enhanced for readability */
.feature-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.85rem;
}

.feature-content-header {
    position: relative;
    padding-bottom: 0.9rem;
    border-bottom: 1.5px solid rgba(212, 167, 106, 0.25);
}

.feature-content-header::after {
    content: '';
    position: absolute;
    bottom: -1.5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a76a 0%, #b47b18 100%);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover .feature-content-header::after {
    width: 100%;
}

.feature-title-premium {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e8d4a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.feature-card:hover .feature-title-premium {
    letter-spacing: 0.7px;
}

.feature-content-body {
    padding-top: 0.35rem;
}

.feature-desc-premium {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.65;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-desc-premium {
    color: rgba(255, 255, 255, 0.95);
}

/* Fallback for old classes - ONLY in inscription cards */
.cta-features-box .feature-content { display: none !important; }
.cta-features-box .feature-title { display: none !important; }
.cta-features-box .feature-desc { display: none !important; }

/* Info Note */
.info-note-cta {
    display: flex;
    gap: 1.1rem;
    padding: 1.4rem 1.5rem;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(180, 123, 24, 0.08) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.35);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    margin-top: 0.8rem;
    transition: all 0.3s ease;
}

.info-note-cta:hover {
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(180, 123, 24, 0.12) 100%);
    border-color: rgba(180, 123, 24, 0.45);
}

.info-note-cta svg {
    flex-shrink: 0;
    margin-top: 0.3rem;
    opacity: 0.95;
}

.info-note-cta p {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ================================================
   PREMIUM INSCRIPTION SECTION - COMPLETE REDESIGN
   ================================================ */

.inscription-premium-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1413 50%, #0f0d0b 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.inscription-premium-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180, 123, 24, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.inscription-premium-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 123, 24, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.inscription-premium-section > .container {
    position: relative;
    z-index: 1;
}

/* Benefits Container */
.inscription-benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual Benefit Card */
.inscription-benefit-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inscription-benefit-card:hover {
    transform: translateX(8px);
    border-color: rgba(180, 123, 24, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 123, 24, 0.1);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    background: rgba(180, 123, 24, 0.12);
    border: 1px solid rgba(180, 123, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inscription-benefit-card:hover .benefit-icon {
    background: rgba(180, 123, 24, 0.2);
    border-color: rgba(180, 123, 24, 0.4);
    transform: scale(1.1);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.benefit-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Stats Box */
.inscription-stats-box {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.08) 0%, 
        rgba(180, 123, 24, 0.04) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    margin-top: 0.5rem;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
}

.stat-row.border-top {
    border-top: 1px solid rgba(180, 123, 24, 0.15);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 0 0.8rem;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e8d4a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.stat-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stat-divider-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(180, 123, 24, 0.3) 50%, 
        transparent 100%);
}

/* CTA Box */
.inscription-cta-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Premium CTA Card */
.cta-premium-card {
    padding: 2.5rem;
}

.cta-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #d4a76a;
    background: rgba(212, 167, 106, 0.1);
    border: 1px solid rgba(212, 167, 106, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4a76a;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.cta-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.location-highlight {
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

/* Features List */
.cta-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.5;
}

.cta-features-list svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    flex-shrink: 0;
}

/* Premium Main Button */
.btn-premium-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.2rem;
    background: linear-gradient(135deg, #d4a76a 0%, #b47b18 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 800;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(180, 123, 24, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-premium-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-premium-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(180, 123, 24, 0.4);
}

.btn-premium-main:hover::before {
    left: 100%;
}

.btn-text {
    font-weight: 800;
}

.btn-arrow {
    display: inline-flex;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-premium-main:hover .btn-arrow {
    transform: translateX(4px);
}

/* Student Portal Access Styles */
.student-portal-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0 1.5rem;
    overflow: hidden;
}

.student-portal-divider::before,
.student-portal-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(180, 123, 24, 0.3) 50%, 
        transparent 100%);
}

.student-portal-divider::before {
    left: 0;
}

.student-portal-divider::after {
    right: 0;
}

.student-portal-divider span {
    display: inline-block;
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: #151c22;
}

.student-portal-access {
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.05) 0%, 
        rgba(180, 123, 24, 0.02) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.student-portal-access:hover {
    border-color: rgba(180, 123, 24, 0.35);
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.08) 0%, 
        rgba(180, 123, 24, 0.04) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(180, 123, 24, 0.05);
}

.portal-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
}

.portal-label svg {
    flex-shrink: 0;
}

.btn-portal-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(180, 123, 24, 0.1);
    border: 2px solid rgba(180, 123, 24, 0.3);
    border-radius: 12px;
    color: #d4a76a;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.btn-portal-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(180, 123, 24, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.btn-portal-secondary:hover {
    background: rgba(180, 123, 24, 0.15);
    border-color: rgba(180, 123, 24, 0.5);
    color: #e8c48e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 123, 24, 0.15);
}

.btn-portal-secondary:hover::before {
    left: 100%;
}

.btn-portal-secondary svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-portal-secondary:hover svg {
    transform: translateX(4px);
}

/* Student Quick Access Button */
.student-quick-access {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.quick-access-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.15) 0%, 
        rgba(180, 123, 24, 0.08) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.3);
    border-radius: 50px;
    color: #d4a76a;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quick-access-link svg {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-access-link:hover {
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.25) 0%, 
        rgba(180, 123, 24, 0.15) 100%);
    border-color: rgba(180, 123, 24, 0.5);
    color: #e8c48e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 123, 24, 0.2);
}

.quick-access-link:hover svg {
    transform: scale(1.1);
}

/* Navbar Portal Link Styling */
.nav-portal-link {
    position: relative;
}

.nav-portal-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #b47b18 0%, #d49832 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-portal-link:hover::before {
    opacity: 1;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}

/* Info Box */
.inscription-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.08) 0%, 
        rgba(180, 123, 24, 0.04) 100%);
    border: 1.5px solid rgba(180, 123, 24, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inscription-info-box:hover {
    border-color: rgba(180, 123, 24, 0.4);
    background: linear-gradient(135deg, 
        rgba(180, 123, 24, 0.12) 0%, 
        rgba(180, 123, 24, 0.06) 100%);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(180, 123, 24, 0.08);
}

.info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: rgba(180, 123, 24, 0.1);
    border: 1px solid rgba(180, 123, 24, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.inscription-info-box:hover .info-icon {
    background: rgba(180, 123, 24, 0.15);
    border-color: rgba(180, 123, 24, 0.35);
    transform: scale(1.08);
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.info-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.info-link {
    color: #d4a76a;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.info-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #d4a76a;
    transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-link:hover {
    color: #e8d4a8;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .inscription-premium-section {
        padding: 4rem 0;
    }

    .cta-main-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-premium-card {
        padding: 2rem;
    }

    .inscription-stats-box {
        padding: 1.5rem 1.2rem;
    }

    .stat-value {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .inscription-premium-section {
        padding: 3rem 0;
    }

    .inscription-premium-section::before,
    .inscription-premium-section::after {
        opacity: 0.5;
        width: 300px;
        height: 300px;
    }

    .cta-main-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-features-list {
        margin: 0 0 1.5rem 0;
        gap: 0.8rem;
    }

    .cta-features-list li {
        font-size: 0.9rem;
    }

    .btn-premium-main {
        padding: 0.95rem 1.8rem;
        font-size: 0.95rem;
    }

    .student-portal-access {
        padding: 1.25rem;
    }

    .portal-label {
        font-size: 0.85rem;
    }

    .btn-portal-secondary {
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
    }

    .student-quick-access {
        top: 15px;
        right: 15px;
    }

    .quick-access-link {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }

    .quick-access-link span {
        display: none;
    }

    .quick-access-link svg {
        width: 20px;
        height: 20px;
    }

    .cta-premium-card {
        padding: 1.5rem;
    }

    .inscription-benefit-card {
        padding: 1.2rem;
        gap: 1rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .inscription-stats-box {
        padding: 1.2rem 1rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-name {
        font-size: 0.8rem;
    }

    .stat-divider-line {
        height: 35px;
    }
}

.info-note-cta a {
    color: #d4a76a;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
}

.info-note-cta a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .inscription-cta-section {
        padding: 7rem 0;
    }
    
    .cta-title-hero {
        font-size: 3.8rem;
    }
    
    .cta-subtitle {
        font-size: 2rem;
    }
    
    .cta-location {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .inscription-cta-section {
        padding: 6rem 0;
    }
    
    .cta-content-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .cta-title-hero {
        font-size: 3.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.8rem;
    }
    
    .cta-location {
        font-size: 1.4rem;
    }
    
    .cta-description-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .cta-features-box {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .feature-icon-circle {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
}

@media (max-width: 767px) {
    .inscription-cta-section {
        padding: 4rem 0;
    }
    
    .cta-content-box {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-title-hero {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.3rem;
    }
    
    .cta-location {
        font-size: 1.1rem;
    }
    
    .cta-description-text {
        font-size: 0.95rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .cta-stats-mini {
        gap: 1rem;
        padding: 1.25rem 0;
        margin-bottom: 1.5rem;
    }
    
    .stat-divider {
        height: 40px;
    }
    
    .btn-cta-primary {
        padding: 1rem 2.2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-features-box {
        padding: 1rem;
        gap: 1.1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .feature-title-premium {
        font-size: 1.05rem;
        letter-spacing: 0.4px;
    }
    
    .feature-desc-premium {
        font-size: 0.95rem;
    }
    
    .info-note-cta {
        padding: 1.2rem;
        font-size: 0.92rem;
    }
    
    .feature-desc-premium {
        font-size: 0.9rem;
    }
    
    .feature-icon-circle {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .feature-title {
        font-size: 0.95rem;
    }
    
    .feature-desc {
        font-size: 0.85rem;
    }
    
    .info-note-cta {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .inscription-cta-section {
        padding: 3rem 0;
    }
    
    .cta-title-hero {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-location {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* Old CSS cleanup - removing deprecated classes */
.cta-background-glow { display: none !important; }
.cta-features-grid { display: none !important; }
.cta-feature-item { display: none !important; }
.cta-feature-text-premium { display: none !important; }
.btn-inscription-cta { display: none !important; }
.cta-discount-notice { display: none !important; }
.inscription-cta-card { display: none !important; }
.cta-title { display: none !important; }
.cta-title-modern { display: none !important; }
.gradient-text-huge { display: none !important; }
.location-highlight { display: none !important; }

.feature-icon-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(180, 123, 24, 0.15);
    border: 1px solid rgba(180, 123, 24, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cta-feature-item:hover .feature-icon-premium {
    background: rgba(180, 123, 24, 0.25);
    border-color: rgba(180, 123, 24, 0.5);
    transform: scale(1.1);
}

.feature-text-premium {
    text-align: center;
}

.feature-text-premium h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.375rem;
}

.feature-text-premium p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.btn-inscription-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border: none;
    border-radius: 16px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 30px rgba(180, 123, 24, 0.4),
        0 0 40px rgba(180, 123, 24, 0.2);
    margin-bottom: 2rem;
}

.btn-inscription-cta:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(180, 123, 24, 0.5),
        0 0 60px rgba(180, 123, 24, 0.3);
}

.btn-inscription-cta:active {
    transform: translateY(-3px) scale(1.01);
}

.btn-inscription-cta svg {
    transition: transform 0.3s ease;
}

.btn-inscription-cta:hover svg {
    transform: translateX(5px);
}

.cta-discount-notice {
    display: inline-flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(180, 123, 24, 0.08);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    max-width: 700px;
    text-align: left;
}

.cta-discount-notice svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.cta-discount-notice p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-discount-notice strong {
    color: #d4a76a;
    font-weight: 700;
}

.cta-discount-notice a {
    color: #d4a76a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cta-discount-notice a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cta-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-title {
        font-size: 2.75rem;
    }
    
    .cta-title-modern {
        font-size: 3.5rem;
    }
    
    .gradient-text-huge {
        font-size: 4rem;
    }
    
    .location-highlight {
        font-size: 3.5rem;
    }
    
    .inscription-cta-card {
        padding: 3rem 2rem;
    }
}

@media (max-width: 767px) {
    .inscription-cta-section {
        padding: 4rem 0;
    }
    
    .inscription-cta-card {
        padding: 2.5rem 1.5rem;
        border-radius: 30px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-title-modern {
        font-size: 2.5rem;
    }
    
    .gradient-text-huge {
        font-size: 3rem;
    }
    
    .location-highlight {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
    
    .cta-features-grid {
        gap: 1rem;
    }
    
    .cta-feature-item {
        padding: 1.5rem 1rem;
    }
    
    .btn-inscription-cta {
        padding: 1.25rem 2rem;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-discount-notice {
        padding: 1.25rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   MODERN COMPACT INFO BADGES
   Elegant inline badges for quick information
   ============================================ */

.modern-info-badge-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-badge-compact:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(180, 123, 24, 0.3);
    transform: translateY(-2px);
}

.info-badge-compact.highlight {
    background: rgba(180, 123, 24, 0.12);
    border-color: rgba(180, 123, 24, 0.35);
}

.info-badge-compact.highlight:hover {
    background: rgba(180, 123, 24, 0.18);
    border-color: rgba(180, 123, 24, 0.5);
}

.info-badge-compact svg {
    flex-shrink: 0;
}

.info-badge-compact span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.info-badge-compact.highlight span {
    color: #d4a76a;
}

/* ============================================
   MODERN CONTENT GRID
   Compact, elegant card layout
   ============================================ */

.modern-content-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.content-card-modern {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.content-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #b47b18 0%, #d4a76a 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.content-card-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(180, 123, 24, 0.2);
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.content-card-modern:hover::before {
    opacity: 1;
}

.card-icon-modern {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: rgba(180, 123, 24, 0.1);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.content-card-modern:hover .card-icon-modern {
    background: rgba(180, 123, 24, 0.15);
    border-color: rgba(180, 123, 24, 0.35);
    transform: scale(1.05) rotate(5deg);
}

.content-card-modern h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.625rem;
    line-height: 1.3;
}

.content-card-modern p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.content-card-modern strong {
    color: #d4a76a;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-info-badge-group {
        gap: 0.75rem;
    }
    
    .info-badge-compact {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .info-badge-compact svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 767px) {
    .modern-info-badge-group {
        gap: 0.5rem;
    }
    
    .info-badge-compact span {
        font-size: 0.75rem;
    }
    
    .content-card-modern {
        flex-direction: row;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .card-icon-modern {
        width: 44px;
        height: 44px;
    }
    
    .card-icon-modern svg {
        width: 22px;
        height: 22px;
    }
    
    .content-card-modern h3 {
        font-size: 1.05rem;
    }
    
    .content-card-modern p {
        font-size: 0.9rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   🎯 WIZARD STYLES - Multi-Step Inscription Process
   ═══════════════════════════════════════════════════════════════ */

.wizard-container {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 123, 24, 0.2);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
}

/* Progress Indicator */
.wizard-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
    color: #1a1a1a;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(180, 123, 24, 0.4);
}

.progress-step.active .step-label {
    color: #d4a76a;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: rgba(180, 123, 24, 0.2);
    border-color: #b47b18;
    color: #b47b18;
}

.progress-step.completed .step-label {
    color: rgba(255, 255, 255, 0.7);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(180, 123, 24, 0.2);
    margin: 0 1rem;
    position: relative;
    top: -28px;
    transition: all 0.4s ease;
}

.progress-line.completed {
    background: linear-gradient(90deg, #b47b18 0%, #d4a76a 100%);
}

/* Wizard Content */
.wizard-content {
    min-height: 400px;
    padding: 2rem 0;
}

.wizard-step-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step-content.active {
    opacity: 1;
    transform: translateY(0);
}

.wizard-step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #d4a76a;
    margin-bottom: 0.75rem;
    text-align: center;
}

.wizard-step-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(180, 123, 24, 0.2);
}

.btn-wizard-back,
.btn-wizard-next {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-wizard-back {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-wizard-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateX(-4px);
}

.btn-wizard-next {
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    color: #1a1a1a;
    margin-left: auto;
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.3);
}

.btn-wizard-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(180, 123, 24, 0.5);
}

.btn-wizard-next:disabled {
    background: rgba(100, 100, 100, 0.3);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-wizard-next:disabled:hover {
    transform: none;
}

/* Notification */
.wizard-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.98) 0%, rgba(212, 167, 106, 0.98) 100%);
    backdrop-filter: blur(15px);
    color: #1a1a1a;
    padding: 1.5rem 3rem;
    border-radius: 20px;
    font-size: 1.15rem;
    font-weight: 600;
    z-index: 999999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wizard-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media (max-width: 768px) {
    .wizard-container {
        padding: 2rem 1.5rem;
    }
    
    .wizard-progress {
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .progress-line {
        margin: 0 0.5rem;
    }
    
    .wizard-step-title {
        font-size: 1.5rem;
    }
    
    .wizard-step-subtitle {
        font-size: 1rem;
    }
    
    .wizard-navigation {
        flex-direction: column;
    }
    
    .btn-wizard-next {
        margin-left: 0;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MODULE SELECTION GRID (Step 2)
   ═══════════════════════════════════════════════════════════════ */

.module-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.module-choice-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(180, 123, 24, 0.1), transparent);
    transition: left 0.6s ease;
}

.module-choice-card:hover::before {
    left: 100%;
}

.module-choice-card:hover {
    border-color: rgba(180, 123, 24, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.2);
}

.module-choice-card.selected {
    border-color: #b47b18;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    box-shadow: 0 8px 32px rgba(180, 123, 24, 0.3), 
                inset 0 0 20px rgba(180, 123, 24, 0.1);
    transform: translateY(-8px) scale(1.02);
}

.module-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.module-number-badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    border: 1px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4a76a;
    transition: all 0.3s ease;
}

.module-choice-card.selected .module-number-badge {
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    color: #1a1a1a;
    transform: rotate(360deg);
}

.module-checkmark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(180, 123, 24, 0.15);
    border: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.module-choice-card.selected .module-checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
}

.module-checkmark::after {
    content: '✓';
    color: transparent;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease 0.2s;
}

.module-choice-card.selected .module-checkmark::after {
    color: #1a1a1a;
}

.module-choice-card h4 {
    color: #d4a76a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.module-choice-card.selected h4 {
    color: #f0d9a8;
}

.module-choice-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.module-choice-card.selected p {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .module-selection-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .module-choice-card {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EDITION TYPE SELECTOR (Step 3)
   ═══════════════════════════════════════════════════════════════ */

.edition-type-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.edition-type-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
}

.edition-type-card:hover {
    border-color: rgba(180, 123, 24, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.2);
}

.edition-type-card.selected {
    border-color: #b47b18;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    box-shadow: 0 12px 40px rgba(180, 123, 24, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.edition-type-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: rgba(180, 123, 24, 0.6);
    transition: all 0.3s ease;
}

.edition-type-card.selected .edition-type-icon {
    color: #d4a76a;
    transform: scale(1.1);
}

.edition-type-card h4 {
    color: #d4a76a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.edition-type-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .edition-type-selector {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .edition-type-card {
        padding: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   EDITION CHOICE GRID (Step 3.5)
   ═══════════════════════════════════════════════════════════════ */

.edition-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.edition-choice-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 24px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.edition-choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(180, 123, 24, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.edition-choice-card:hover::before {
    opacity: 1;
}

.edition-choice-card:hover {
    border-color: rgba(180, 123, 24, 0.6);
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(180, 123, 24, 0.25);
}

.edition-choice-card.selected {
    border-color: #b47b18;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    box-shadow: 0 16px 48px rgba(180, 123, 24, 0.4);
    transform: translateY(-10px) scale(1.02);
}

.edition-choice-card.selected::before {
    opacity: 1;
}

.edition-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: rgba(180, 123, 24, 0.5);
    transition: all 0.3s ease;
}

.edition-choice-card.selected .edition-icon {
    color: #d4a76a;
    transform: scale(1.15);
}

.edition-choice-card h3 {
    color: #d4a76a;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.edition-year {
    color: #b47b18;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.edition-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.edition-modules-preview {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.module-mini-badge {
    background: rgba(180, 123, 24, 0.2);
    color: #d4a76a;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.edition-choice-card.selected .module-mini-badge {
    background: rgba(180, 123, 24, 0.3);
    color: #f0d9a8;
}

.edition-checkmark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(180, 123, 24, 0.15);
    border: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.edition-choice-card.selected .edition-checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
}

.edition-checkmark::after {
    content: '✓';
    color: transparent;
    font-size: 22px;
    font-weight: bold;
    transition: color 0.3s ease 0.2s;
}

.edition-choice-card.selected .edition-checkmark::after {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .edition-choice-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .edition-choice-card {
        padding: 2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   MODULE DISTRIBUTION (Step 3.6)
   ═══════════════════════════════════════════════════════════════ */

.module-distribution-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.module-distribution-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
}

.module-distribution-item:hover {
    border-color: rgba(180, 123, 24, 0.4);
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.15);
}

.module-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.module-dist-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    border: 1px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4a76a;
    flex-shrink: 0;
}

.module-info h4 {
    color: #d4a76a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.module-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.edition-toggle {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.edition-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(180, 123, 24, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.edition-toggle-label {
    font-size: 0.95rem;
}

.edition-toggle-year {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.edition-toggle-btn:hover {
    background: rgba(180, 123, 24, 0.1);
    border-color: rgba(180, 123, 24, 0.5);
    transform: translateY(-2px);
}

.edition-toggle-btn.active {
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(180, 123, 24, 0.4);
}

.edition-toggle-btn.active .edition-toggle-year {
    color: rgba(26, 26, 26, 0.7);
}

@media (max-width: 768px) {
    .module-distribution-item {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .module-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edition-toggle {
        width: 100%;
    }
    
    .edition-toggle-btn {
        flex: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PAYMENT METHOD GRID (Step 4)
   ═══════════════════════════════════════════════════════════════ */

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.payment-choice-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.payment-choice-card input[type="radio"] {
    display: none;
}

.payment-choice-card:hover {
    border-color: rgba(180, 123, 24, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.2);
}

.payment-choice-card.selected {
    border-color: #b47b18;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    box-shadow: 0 12px 40px rgba(180, 123, 24, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.payment-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: rgba(180, 123, 24, 0.5);
    transition: all 0.3s ease;
}

.payment-choice-card.selected .payment-icon {
    color: #d4a76a;
    transform: scale(1.1);
}

.payment-choice-card h4 {
    color: #d4a76a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.payment-price {
    color: #b47b18;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.75rem 0;
}

.payment-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.payment-checkmark {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(180, 123, 24, 0.15);
    border: 2px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.payment-choice-card.selected .payment-checkmark {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    border-color: #d4a76a;
}

.payment-checkmark::after {
    content: '✓';
    color: transparent;
    font-size: 20px;
    font-weight: bold;
    transition: color 0.3s ease 0.2s;
}

.payment-choice-card.selected .payment-checkmark::after {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .payment-method-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SUMMARY (Step 5)
   ═══════════════════════════════════════════════════════════════ */

.summary-container {
    max-width: 700px;
    margin: 0 auto;
}

.summary-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(180, 123, 24, 0.25);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.summary-section:hover {
    border-color: rgba(180, 123, 24, 0.4);
    box-shadow: 0 4px 20px rgba(180, 123, 24, 0.15);
}

.summary-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: #d4a76a;
}

.summary-section-header svg {
    width: 28px;
    height: 28px;
    color: #b47b18;
}

.summary-section-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: #d4a76a;
}

.summary-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.summary-modules-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(180, 123, 24, 0.2);
    transition: all 0.3s ease;
}

.summary-module-item:hover {
    background: rgba(180, 123, 24, 0.05);
    border-color: rgba(180, 123, 24, 0.3);
}

.summary-module-badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.2) 0%, rgba(212, 167, 106, 0.1) 100%);
    border: 1px solid rgba(180, 123, 24, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: #d4a76a;
    flex-shrink: 0;
}

.summary-module-info {
    flex: 1;
}

.summary-module-info h5 {
    color: #d4a76a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.summary-module-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.summary-module-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.summary-total {
    background: linear-gradient(135deg, rgba(180, 123, 24, 0.15) 0%, rgba(212, 167, 106, 0.08) 100%);
    border: 2px solid rgba(180, 123, 24, 0.4);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
}

.summary-total-label h3 {
    color: #d4a76a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.summary-total-label p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

.summary-total-amount {
    color: #b47b18;
    font-size: 2.5rem;
    font-weight: 700;
}

.btn-complete-inscription {
    width: 100%;
    background: linear-gradient(135deg, #b47b18 0%, #d4a76a 100%);
    color: #1a1a1a;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(180, 123, 24, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-complete-inscription::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-complete-inscription:hover::before {
    left: 100%;
}

.btn-complete-inscription:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(180, 123, 24, 0.6);
}

.btn-complete-inscription svg {
    width: 28px;
    height: 28px;
}

.summary-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    text-align: center;
}

.summary-note svg {
    color: #b47b18;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .summary-section {
        padding: 1.5rem;
    }
    
    .summary-total {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .summary-total-amount {
        font-size: 2rem;
    }
    
    .btn-complete-inscription {
        padding: 1.2rem 2rem;
        font-size: 1.05rem;
    }
}

