/* ==========================================================================
   DESIGN SYSTEM - VARIABLES & BASE STYLES
   ========================================================================== */

:root {
    --bg-primary: #090a0f;
    --bg-secondary: #11131a;
    --bg-tertiary: #171a24;
    --bg-card: #141720;
    
    --accent-yellow: #0091ff;
    --accent-yellow-hover: #007ce5;
    --accent-yellow-dark: #005cb8;
    --accent-yellow-rgb: 0, 145, 255;
    
    --text-primary: #ffffff;
    --text-secondary: #a3aab8;
    --text-muted: #6b7585;
    
    --border-color: #212633;
    --border-glow: rgba(0, 145, 255, 0.15);
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
    
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 25px rgba(0, 145, 255, 0.15);
    
    --container-max-width: 1200px;
    --header-height: 80px;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

strong {
    color: var(--text-primary);
}

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

a:hover {
    color: var(--text-primary);
}

/* Common Layout Elements */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* ==========================================================================
   UTILITY CLASSES & BUTTONS
   ========================================================================== */

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

.text-gradient-yellow {
    background: linear-gradient(135deg, var(--accent-yellow) 30%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header {
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--accent-yellow);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 1.5rem auto 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000000;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.btn-secondary:hover {
    border-color: var(--accent-yellow);
    background-color: rgba(0, 145, 255, 0.05);
    transform: translateY(-2px);
}

.btn-full-width {
    width: 100%;
}

.btn-arrow {
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-studio {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    font-weight: 500;
}

.logo-name {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.logo:hover .logo-name {
    color: var(--accent-yellow);
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    align-items: center;
    gap: 1.15rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 0.6rem;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background-color: var(--accent-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-contact {
    border: 1.5px solid var(--accent-yellow);
    border-radius: 4px;
    padding: 0.45rem 1rem !important;
    background-color: rgba(0, 145, 255, 0.03);
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background-color: var(--accent-yellow);
    color: #000000 !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    padding-top: calc(var(--header-height) + 4rem);
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
}

.hero-bg-glow {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 145, 255, 0.08) 0%, rgba(9, 10, 15, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 145, 255, 0.08);
    border: 1px solid rgba(0, 145, 255, 0.2);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--accent-yellow);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
    font-size: 3.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Hero Media Display */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.media-glow-frame {
    position: relative;
    border-radius: 8px;
    padding: 6px;
    background: linear-gradient(135deg, rgba(0, 145, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.5) 100%);
    box-shadow: var(--shadow-subtle), 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: visible;
}

.hero-img-showcase {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(17, 19, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.date-badge {
    top: 20px;
    left: -35px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 145, 255, 0.3);
    background: rgba(9, 10, 15, 0.9);
}

.badge-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1;
}

.badge-month {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-primary);
}

.location-badge {
    bottom: 25px;
    right: -30px;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.location-badge svg {
    color: var(--accent-yellow);
    flex-shrink: 0;
}

/* ==========================================================================
   EVENT PRESENTATION
   ========================================================================== */

.event-presentation-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.event-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
}

.event-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.event-card:hover {
    border-color: rgba(0, 145, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.card-corner-top-right {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-yellow);
    transform: rotate(45deg);
}

.card-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.warning-badge {
    background-color: rgba(0, 145, 255, 0.06);
    border-color: rgba(0, 145, 255, 0.15);
    color: var(--accent-yellow);
}

.event-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.event-p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Specs Details Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.spec-item:hover {
    background-color: rgba(0, 145, 255, 0.02);
    border-color: rgba(0, 145, 255, 0.1);
}

.spec-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 145, 255, 0.08);
    border-radius: 4px;
    flex-shrink: 0;
}

.spec-text {
    display: flex;
    flex-direction: column;
}

.spec-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-val {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Rules Section */
.rules-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.rule-icon {
    font-size: 1.25rem;
    background-color: rgba(255, 255, 255, 0.03);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.rule-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rule-desc strong {
    color: var(--text-primary);
}

/* ==========================================================================
   PROGRAM / SCHEDULE TIMELINE
   ========================================================================== */

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

.timeline-container {
    max-width: 850px;
    margin: 0 auto 5rem auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-yellow) 0%, rgba(0, 145, 255, 0.2) 70%, rgba(255, 255, 255, 0.02) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge-circle {
    position: absolute;
    left: 20px;
    top: 0;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background-color: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 5;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-badge-circle {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 12px var(--accent-yellow);
    background-color: var(--bg-secondary);
}

.step-ritrovo .timeline-badge-circle svg {
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.timeline-item:hover.step-ritrovo .timeline-badge-circle svg {
    color: var(--accent-yellow);
}

.timeline-panel {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.75rem 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-panel::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -7px;
    width: 12px;
    height: 12px;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transform: rotate(45deg);
    z-index: 4;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-panel {
    border-color: rgba(0, 145, 255, 0.25);
    background-color: var(--bg-card);
}

.timeline-item:hover .timeline-panel::before {
    border-color: rgba(0, 145, 255, 0.25);
    background-color: var(--bg-card);
}

.time-stamp {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.4rem;
}

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

.timeline-panel h3 {
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}

.timeline-panel p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.category-tag {
    display: inline-block;
    background-color: rgba(0, 145, 255, 0.05);
    border: 1px solid rgba(0, 145, 255, 0.15);
    color: var(--accent-yellow);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Awards Banner Box */
.awards-box {
    max-width: 850px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 145, 255, 0.05) 0%, rgba(18, 20, 29, 0.8) 100%);
    border: 1px solid rgba(0, 145, 255, 0.15);
    border-radius: 6px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
}

.awards-icon {
    font-size: 3.5rem;
    line-height: 1;
    background-color: rgba(0, 145, 255, 0.08);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 145, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 145, 255, 0.1);
    flex-shrink: 0;
}

.awards-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.awards-content p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.awards-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.award-badge-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: rgba(9, 10, 15, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.badge-bullet {
    color: var(--accent-yellow);
    font-weight: bold;
}

/* ==========================================================================
   REGISTRATION & PRICING
   ========================================================================== */

.registration-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.price-cards-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.price-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

#pc-online {
    border: 2px solid var(--accent-yellow);
    box-shadow: var(--shadow-glow);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 22px;
    background-color: var(--accent-yellow);
    color: #000000;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

.price-card h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1.1;
    margin: 0.5rem 0;
}

#pc-ontheday .price-amount {
    color: var(--text-primary);
}

.price-deadline {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Actions Column */
.register-action-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

.register-action-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.register-action-card p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    background-color: rgba(9, 10, 15, 0.4);
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* Simulated Tech QR Code in pure CSS */
.qr-code-placeholder {
    width: 140px;
    height: 140px;
    background-color: #ffffff;
    border-radius: 6px;
    padding: 10px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.qr-mock-square {
    width: 38px;
    height: 38px;
    border: 9px solid #000000;
    background-color: transparent;
}

.qr-mock-dot {
    background-color: #000000;
    border-radius: 2px;
}

.dot-1 { width: 14px; height: 14px; position: absolute; top: 55px; left: 15px; }
.dot-2 { width: 22px; height: 14px; position: absolute; top: 55px; left: 35px; }
.dot-3 { width: 14px; height: 25px; position: absolute; top: 75px; left: 15px; }
.dot-4 { width: 20px; height: 20px; position: absolute; top: 100px; left: 55px; }
.dot-5 { width: 14px; height: 14px; position: absolute; top: 15px; left: 60px; }
.dot-6 { width: 14px; height: 25px; position: absolute; top: 35px; left: 60px; }
.dot-7 { width: 25px; height: 14px; position: absolute; top: 75px; left: 80px; }

.qr-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: var(--accent-yellow);
    color: #000000;
    font-size: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 1px 4px;
    border: 1.5px solid #000000;
}

.qr-caption {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    margin-top: 0.75rem;
    margin-bottom: 0 !important;
}

.event-organizer-contacts {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.event-organizer-contacts h5 {
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.contacts-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contacts-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contacts-links a:hover {
    color: var(--accent-yellow);
}

/* ==========================================================================
   STUDIO PROFILE SECTION
   ========================================================================== */

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

.studio-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.studio-intro-text h3 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.studio-intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.studio-cert-strip {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background-color: rgba(0, 145, 255, 0.04);
    border: 1px solid rgba(0, 145, 255, 0.1);
    padding: 0.9rem 1.25rem;
    border-radius: 4px;
}

.cert-gold-star {
    color: var(--accent-yellow);
    font-size: 1.3rem;
}

.studio-cert-strip p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.studio-cert-strip strong {
    color: var(--text-primary);
}

/* Certification Badge */
.studio-intro-badge-box {
    display: flex;
    justify-content: center;
}

.certification-badge-large {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 380px;
    box-shadow: var(--shadow-subtle);
    position: relative;
    transition: var(--transition-smooth);
}

.certification-badge-large:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 145, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.badge-wheel {
    color: var(--accent-yellow);
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.gear-svg {
    animation: rotateGear 12s linear infinite;
}

@keyframes rotateGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.certification-badge-large h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.certification-badge-large p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Subsection Title */
.subsection-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
    position: relative;
}

.service-card:hover {
    background-color: var(--bg-card);
    border-color: rgba(0, 145, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.service-icon {
    color: var(--accent-yellow);
    margin-bottom: 1.25rem;
    background-color: rgba(0, 145, 255, 0.08);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Offices showcase mock images in CSS */
.studio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.gallery-item-frame {
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.gallery-item-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.gallery-item-frame:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-img-overlay span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.studio-discover-more {
    margin-top: 2rem;
}

.btn-yellow-dynamic {
    background-color: transparent;
    border: 2px solid var(--accent-yellow);
    color: var(--accent-yellow);
}

.btn-yellow-dynamic:hover {
    background-color: var(--accent-yellow);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.contact-bg-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 145, 255, 0.04) 0%, rgba(9, 10, 15, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.contact-info-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.contact-location-item {
    margin-bottom: 2rem;
}

.contact-location-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.contact-location-item p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-link {
    font-size: 0.9rem;
    font-weight: 500;
}

.direct-email-box {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.direct-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.direct-email {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
}

/* Contact Form Panel */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3.5rem;
    border-radius: 6px;
}

.elegant-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Floating Label Inputs */
.floating-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 0.9rem 1rem;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(0, 145, 255, 0.08);
}

textarea.form-control {
    padding-top: 1.25rem;
    resize: vertical;
}

.floating-group label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    pointer-events: none;
}

.floating-group textarea ~ label {
    top: 1.5rem;
    transform: none;
}

/* Float logic based on value/placeholder */
.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent-yellow);
    transform: none;
}

.form-control:focus ~ label {
    color: var(--accent-yellow);
}

/* Error messages */
.error-msg {
    display: none;
    font-size: 0.75rem;
    color: #ff4a4a;
    margin-top: 0.35rem;
}

/* GDPR Checkbox Custom Design */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
}

.custom-checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    user-select: none;
    gap: 0.75rem;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
}

.custom-checkbox-container:hover input ~ .checkmark {
    border-color: rgba(0, 145, 255, 0.4);
}

.custom-checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.checkmark::after {
    content: "";
    display: none;
    width: 5px;
    height: 10px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

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

.checkbox-label-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Security slider verification block */
.anti-spam-card {
    background-color: rgba(9, 10, 15, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
}

.anti-spam-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.spam-icon {
    font-size: 1rem;
}

.spam-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.spam-instructions {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.slider-track {
    position: relative;
    height: 44px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: rgba(0, 145, 255, 0.08);
    transition: var(--transition-fast);
}

.slider-handle {
    position: absolute;
    left: 2px;
    width: 38px;
    height: 38px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    cursor: grab;
    user-select: none;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-handle:active {
    cursor: grabbing;
}

.slider-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    pointer-events: none;
    user-select: none;
    z-index: 5;
}

/* Submit Button State */
.btn-submit {
    background-color: rgba(0, 145, 255, 0.1);
    border: 2px solid var(--border-color);
    color: var(--text-muted);
    cursor: not-allowed;
}

.btn-submit.active {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: #000000;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.btn-submit.active:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 3rem 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.footer-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin: 2rem 0;
}

.footer-credits {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

/* ==========================================================================
   PRIVACY POLICY MODAL
   ========================================================================== */

.privacy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1100;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.privacy-modal-overlay.active {
    display: flex;
}

.privacy-modal-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    width: 100%;
    max-width: 650px;
    max-height: 80vh;
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: modalShow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2.25rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 0.5;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-primary);
}

.modal-body-content {
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar for Modal content */
.modal-body-content::-webkit-scrollbar {
    width: 6px;
}

.modal-body-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.modal-body-content::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.modal-body-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

.privacy-modal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
}

.modal-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 1.25rem 0 1.75rem 0;
}

.privacy-modal-card h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.privacy-modal-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .studio-gallery-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    section {
        padding: 5rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-media {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .date-badge {
        left: -20px;
    }
    
    .location-badge {
        right: -20px;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .studio-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .studio-cert-strip {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    /* Responsive Header & Hamburger Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-primary);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid var(--border-color);
        padding: 3rem 1.5rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-contact {
        width: 80%;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
    }
    
    /* Hamburger Menu Animation */
    .menu-toggle.active .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Timeline adjustments */
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 55px;
    }
    
    .timeline-badge-circle {
        left: 20px;
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .timeline-panel {
        padding: 1.25rem 1.5rem;
    }
    
    .timeline-panel::before {
        left: -5px;
        width: 8px;
        height: 8px;
        top: 12px;
    }
    
    .awards-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .awards-icon {
        margin: 0 auto;
    }
    
    .awards-badges {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .studio-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
    
    .privacy-modal-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .price-amount {
        font-size: 2.75rem;
    }
    
    .qr-code-wrapper {
        padding: 1rem;
    }
    
    .qr-code-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .qr-mock-square {
        width: 32px;
        height: 32px;
        border-width: 7px;
    }
    
    .dot-1 { top: 48px; left: 12px; }
    .dot-2 { top: 48px; left: 28px; }
    .dot-3 { top: 64px; left: 12px; }
    .dot-4 { top: 85px; left: 45px; }
    .dot-5 { top: 12px; left: 50px; }
    .dot-6 { top: 28px; left: 50px; }
    .dot-7 { top: 64px; left: 68px; }
}

/* ==========================================================================
   SAGRA ADDITIONS (TABS, FACEBOOK BUTTON, PROGRAM UPDATES)
   ========================================================================== */

.btn-facebook-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: rgba(24, 119, 242, 0.1);
    border: 1px solid rgba(24, 119, 242, 0.3);
    color: #1877f2;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 1.75rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-facebook-link:hover {
    background-color: #1877f2;
    color: #ffffff;
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.35);
}

.btn-facebook-link svg {
    fill: currentColor;
    transition: var(--transition-fast);
}

/* Day Selector & Tabs */
.tabs-container {
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 1rem;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.program-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0.35rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    width: max-content;
    margin: 0 auto;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.50rem;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.tab-btn:hover {
    color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    color: #000000;
    background-color: var(--accent-yellow);
    box-shadow: 0 0 15px rgba(0, 145, 255, 0.35);
}

/* Program Day Content Toggle */
.day-content {
    display: none;
}

.day-content.active {
    display: block;
    animation: tabFadeIn 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.day-header-info {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid rgba(0, 145, 255, 0.2);
    display: inline-block;
    padding-bottom: 0.5rem;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

.fb-footer-btn:hover {
    background-color: rgba(24, 119, 242, 0.15) !important;
    color: #1877f2 !important;
}

.sport-link:hover {
    color: var(--text-primary) !important;
}

/* ==========================================================================
   CULTURE & EXHIBITIONS SECTION
   ========================================================================== */
.culture-section {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.culture-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 145, 255, 0.03) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.culture-card {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.culture-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 145, 255, 0.25);
    box-shadow: var(--shadow-subtle), 0 10px 30px rgba(0,0,0,0.3);
}

.culture-card-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 145, 255, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.culture-card:hover .culture-card-glow {
    background: radial-gradient(circle, rgba(0, 145, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

.culture-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.25rem;
}

.culture-badge {
    padding: 0.4rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
}

.badge-yellow {
    background-color: rgba(0, 145, 255, 0.1);
    color: var(--accent-yellow);
    border: 1px solid rgba(0, 145, 255, 0.2);
}

.badge-orange {
    background-color: rgba(224, 106, 59, 0.1);
    color: #e06a3b;
    border: 1px solid rgba(224, 106, 59, 0.2);
}

.culture-date-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.culture-card-body h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.culture-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.culture-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.culture-info-box {
    display: flex;
    gap: 1.25rem;
    background-color: rgba(0, 145, 255, 0.03);
    border-left: 3px solid var(--accent-yellow);
    border-radius: 0 8px 8px 0;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.info-box-icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    line-height: 1;
}

.info-box-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.info-box-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.culture-details-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.culture-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 8px;
}

.detail-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.15rem;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.highlight-orange {
    color: #e06a3b;
    font-weight: 700;
}

/* ==========================================================================
   STUDIO AWARDS HIGHLIGHT SECTION
   ========================================================================== */
.studio-awards-highlight-section {
    background-color: var(--bg-primary);
    position: relative;
    border-top: 1px solid var(--border-color);
}

.awards-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.award-highlight-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.25rem;
    display: flex;
    gap: 1.75rem;
    align-items: center;
    transition: var(--transition-smooth);
}

.award-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 145, 255, 0.2);
    box-shadow: var(--shadow-subtle);
}

.award-logo-seal {
    flex-shrink: 0;
    width: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-seal-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.award-highlight-content {
    flex-grow: 1;
}

.award-highlight-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-yellow);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.35rem;
}

.award-highlight-content h3 {
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.award-highlight-years {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.award-highlight-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .culture-grid,
    .awards-highlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .award-highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .award-logo-seal {
        margin-bottom: 1rem;
    }
}

/* Adjustments for laptop and tablet screens to prevent nav wrap */
@media (min-width: 769px) and (max-width: 1250px) {
    .nav-menu ul {
        gap: 0.6rem;
    }
    .nav-link {
        font-size: 0.82rem;
        padding: 0.4rem 0.5rem;
    }
}


