/* ============================================
   VORTEXA EVENTS - CSS VARIABLES & RESET
   ============================================ */
:root {
    --bg-dark: #1a1525;
    --bg-darker: #0a0815;
    --primary-cyan: #5abcd5;
    --secondary-teal: #0388a6;
    --accent-pink: #ed1b98;
    --text-white: #ffffff;
    --text-muted: #b0b0b0;
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-secondary-light {
    color: var(--text-muted);
}

.ls-2 {
    letter-spacing: 2px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    transition: all 0.3s ease;
    padding: 1.5rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: rgba(21, 18, 38, 0.98);
    border-bottom: 1px solid var(--secondary-teal);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-white) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-pink);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--accent-pink) !important;
    text-shadow: 0 0 10px rgba(237, 27, 152, 0.5);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-custom {
    background-color: transparent;
    border: 2px solid var(--accent-pink);
    color: var(--text-white);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-custom:hover {
    background-color: var(--accent-pink);
    color: var(--text-white);
    box-shadow: 0 0 20px var(--accent-pink);
    transform: translateY(-2px);
}

.btn-explore-custom {
    background-color: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-explore-custom:hover {
    background-color: var(--primary-cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-cyan);
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-teal));
    border: none;
    color: var(--text-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-primary-custom:hover {
    background: linear-gradient(90deg, var(--secondary-teal), var(--primary-cyan));
    box-shadow: 0 0 30px rgba(90, 188, 213, 0.6);
    transform: translateY(-2px);
}

.glow-effect {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 10px var(--primary-cyan);
    }
    50% {
        box-shadow: 0 0 25px var(--primary-cyan), 0 0 40px rgba(90, 188, 213, 0.5);
    }
}

/* ============================================
   HERO SECTION WITH CANVAS VORTEX
   ============================================ */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

#vortexCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.z-index-2 {
    z-index: 2;
}

.cross-text {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-cyan);
    text-shadow: 0 0 30px rgba(90, 188, 213, 0.6);
    letter-spacing: 0px;
}

.the-line-text {
    font-size: 6rem;
    font-weight: 900;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    letter-spacing: 0px;
}

.enter-vortex-text {
    font-family: var(--font-heading);
    letter-spacing: 6px;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.about-subtitle {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(21, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(90, 188, 213, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    scroll-margin-top: 80px;
}

.section-title {
    color: var(--primary-cyan);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background-color: var(--accent-pink);
    margin-top: 15px;
}

.section-title-large {
    color: var(--text-white);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 3rem;
    font-family: var(--font-heading);
}

/* ============================================
   BORDERS & FRAMES
   ============================================ */
.glow-border {
    border: 1px solid var(--secondary-teal);
    box-shadow: 0 0 15px rgba(3, 136, 166, 0.3);
    padding: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}

.glow-border:hover {
    box-shadow: 0 0 25px rgba(90, 188, 213, 0.5);
    border-color: var(--primary-cyan);
}

.image-frame {
    position: relative;
    overflow: hidden;
}

.image-frame img {
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* ============================================
   EVENT CALENDAR SECTION
   ============================================ */
.takvim-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 50%, var(--bg-darker) 100%);
}

.event-date-card {
    background: rgba(21, 18, 38, 0.4);
    border: 2px solid rgba(90, 188, 213, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 188, 213, 0.1), rgba(3, 136, 166, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-date-card:hover::before {
    opacity: 1;
}

.event-date-card.active-event {
    border-color: var(--accent-pink);
    background: rgba(237, 27, 152, 0.1);
    box-shadow: 0 0 30px rgba(237, 27, 152, 0.3);
}

.event-date-card.active-event::before {
    background: linear-gradient(135deg, rgba(237, 27, 152, 0.2), rgba(237, 27, 152, 0.05));
    opacity: 1;
}

.event-year {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.event-month {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-cyan);
    font-weight: 700;
    letter-spacing: 3px;
    margin: 0.5rem 0;
}

.active-event .event-month {
    color: var(--accent-pink);
}

.event-days {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.main-event-card {
    background: linear-gradient(135deg, rgba(21, 18, 38, 0.9), rgba(10, 8, 21, 0.9));
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.event-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-event-card:hover .event-image-container img {
    transform: scale(1.05);
}

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(21, 18, 38, 0.9) 0%, transparent 100%);
}

.event-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-pink), #ff1493);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.event-location {
    color: var(--text-white);
    font-size: 1rem;
}

/* ============================================
   LINEUP SECTION
   ============================================ */
.bg-gradient-dark {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.dj-card {
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.dj-card:hover {
    transform: translateY(-10px);
}

.dj-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 5;
}

.dj-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dj-card:hover .dj-image-container img {
    transform: scale(1.1);
}

.dj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(21, 18, 38, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dj-card:hover .dj-overlay {
    opacity: 1;
}

.dj-social {
    display: flex;
    gap: 1rem;
}

.dj-social a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.dj-social a:hover {
    color: var(--primary-cyan);
    transform: scale(1.2);
}

.dj-info {
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(21, 18, 38, 0.6);
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(90, 188, 213, 0.2);
    border-top: none;
}

.dj-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.dj-genre {
    color: var(--primary-cyan);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   FAQ SECTION - FULLSCREEN DROPDOWN
   ============================================ */
.faq-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.faq-container {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(90, 188, 213, 0.2);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 5%;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: rgba(90, 188, 213, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(90, 188, 213, 0.1);
}

.faq-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-cyan);
    min-width: 80px;
}

.faq-item.active .faq-number {
    color: var(--accent-pink);
}

.faq-text {
    flex: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
    margin-right: 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-pink);
}

.faq-answer {
    padding: 0 5%;
    padding-left: calc(5% + 80px + 2rem);
    padding-right: calc(5% + 3.5rem);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
}

.faq-item.active .faq-answer {
    padding-top: 0;
    padding-bottom: 3rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--secondary-teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    flex-shrink: 0;
}

.contact-text h5 {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-text a,
.contact-text p {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
}

.contact-text a:hover {
    color: var(--accent-pink);
}

.social-media-contact h5 {
    color: var(--text-white);
    font-family: var(--font-heading);
}

.contact-form-container {
    background: rgba(21, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem;
}

.form-label {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(90, 188, 213, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-cyan);
    box-shadow: 0 0 15px rgba(90, 188, 213, 0.3);
    color: var(--text-white);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.map-container {
    overflow: hidden;
    border-radius: 10px;
}

.map-container iframe {
    filter: grayscale(30%) contrast(120%) brightness(90%);
}

/* ============================================
   FOOTER - KURUMSAL
   ============================================ */
.footer {
    background: linear-gradient(180deg, #0a0815 0%, #050308 100%);
    border-top: 2px solid rgba(90, 188, 213, 0.2);
    color: var(--text-white);
}

/* Footer Brand */
.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer Ticket Button */
.btn-footer-ticket {
    background: linear-gradient(90deg, var(--accent-pink), #ff1493);
    border: none;
    color: var(--text-white);
    padding: 12px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
}

.btn-footer-ticket:hover {
    background: linear-gradient(90deg, #ff1493, var(--accent-pink));
    box-shadow: 0 0 30px rgba(237, 27, 152, 0.6);
    transform: translateY(-2px);
    color: var(--text-white);
}

/* TURSAB Area */
.tursab-area {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tursab-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.tursab-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(90, 188, 213, 0.2);
}

.tursab-logo {
    height: 40px;
    width: auto;
    filter: brightness(0.9);
}

.tursab-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-cyan);
    letter-spacing: 1px;
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-pink);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.footer-menu a:hover::before {
    width: 100%;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    width: 25px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-detail {
    flex: 1;
}

.contact-detail strong {
    display: block;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.contact-detail p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-cyan);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-copyright strong {
    color: var(--primary-cyan);
}

.footer-legal {
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-cyan);
}

/* Footer Social */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(90, 188, 213, 0.1);
    border: 1px solid rgba(90, 188, 213, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    border-color: var(--primary-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(90, 188, 213, 0.4);
}

/* Trust Badges */
.trust-badges {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(90, 188, 213, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(90, 188, 213, 0.2);
}

.trust-badge i {
    color: var(--primary-cyan);
    font-size: 1.2rem;
}

.trust-badge span {
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   RESPONSIVE - FOOTER
   ============================================ */
@media (max-width: 992px) {
    .footer-social {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .trust-badges .row {
        gap: 0.75rem;
    }
    
    .trust-badge {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-label {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 0.75rem;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
    
    .trust-badges .row {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .btn-footer-ticket {
        width: 100%;
        text-align: center;
    }
    
    .tursab-logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact li {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact i {
        margin: 0 auto 0.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .cross-text, .the-line-text {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .event-image-container {
        min-height: 300px;
    }
    
    .faq-question {
        font-size: 1.2rem;
        padding: 1.5rem 3%;
        gap: 1rem;
    }
    
    .faq-number {
        font-size: 2.5rem;
        min-width: 60px;
    }
    
    .faq-answer {
        padding-left: calc(3% + 60px + 1rem);
        padding-right: calc(3% + 2rem);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cross-text, .the-line-text {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .enter-vortex-text {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-large {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .event-days {
        font-size: 2.5rem;
    }
    
    .main-event-card .row {
        flex-direction: column-reverse;
    }
    
    .main-event-card .col-lg-6 {
        padding: 2rem !important;
    }
    
    .event-image-container {
        min-height: 250px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.5rem 2%;
        gap: 1rem;
    }
    
    .faq-number {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .faq-answer {
        padding-left: calc(2% + 50px + 1rem);
        padding-right: 2%;
        padding-bottom: 2rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-custom {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .cross-text, .the-line-text {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .event-date-card {
        padding: 1.5rem;
    }
    
    .event-days {
        font-size: 2rem;
    }
    
    .dj-name {
        font-size: 1.1rem;
    }
    
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .faq-icon {
        position: absolute;
        right: 2%;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }
    
    .faq-answer {
        padding-left: 2%;
        padding-right: 2%;
    }
}





/* ============================================
   EVENT PROGRAM SECTION
   ============================================ */
.program-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.program-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-cyan);
    letter-spacing: 3px;
    margin-top: 1rem;
}

.program-dates {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-white);
    margin-top: 0.5rem;
}

.program-location {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Program Days */
.program-days {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.program-day {
    background: rgba(21, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    padding: 0;
    overflow: hidden;
}

/* Day Header */
.day-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(90, 188, 213, 0.1), rgba(3, 136, 166, 0.1));
    border-bottom: 2px solid rgba(90, 188, 213, 0.3);
}

.day-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-cyan);
    line-height: 1;
    min-width: 100px;
    text-align: center;
}

.day-info {
    flex: 1;
}

.day-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-white);
    margin: 0;
    letter-spacing: 2px;
}

.main-day-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--accent-pink), #ff1493);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-top: 0.5rem;
}

/* Day Schedule */
.day-schedule {
    padding: 2rem;
}

.schedule-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.schedule-time-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-cyan), var(--secondary-teal));
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.schedule-time-badge.gunduz {
    background: linear-gradient(90deg, #ffa500, #ff8c00);
}

.schedule-time-badge.secret {
    background: linear-gradient(90deg, #8b00ff, #4b0082);
}

.schedule-time-badge.sunrise {
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
}

.schedule-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.exclusive-badge {
    display: inline-block;
    background: rgba(139, 0, 255, 0.3);
    border: 1px solid #8b00ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #8b00ff;
}

.extra-badge {
    display: inline-block;
    background: rgba(255, 165, 0, 0.2);
    border: 1px solid #ffa500;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffa500;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    color: var(--text-muted);
    position: relative;
}

.schedule-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
}

/* Highlight Blocks */
.highlight-block {
    background: linear-gradient(135deg, rgba(90, 188, 213, 0.05), rgba(237, 27, 152, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-cyan);
}

.secret-block {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.05), rgba(75, 0, 130, 0.05));
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8b00ff;
}

.secret-block .schedule-list li::before {
    background: #8b00ff;
}

/* Rules Section */
.rules-section {
    margin-top: 3rem;
}

.rules-container {
    background: rgba(21, 18, 38, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
}

.rules-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-pink);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-align: center;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 0.75rem 0;
    color: var(--text-white);
    font-size: 1rem;
}

.rules-list li i {
    color: var(--primary-cyan);
}

/* Closing Message */
.program-closing {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(90, 188, 213, 0.05), rgba(237, 27, 152, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(90, 188, 213, 0.2);
}

.closing-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   RESPONSIVE - PROGRAM SECTION
   ============================================ */
@media (max-width: 992px) {
    .day-header {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .day-number {
        font-size: 3rem;
        min-width: 80px;
    }
    
    .day-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .program-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .program-dates {
        font-size: 0.95rem;
    }
    
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .day-number {
        font-size: 2.5rem;
        min-width: auto;
    }
    
    .day-title {
        font-size: 1.1rem;
    }
    
    .day-schedule {
        padding: 1.5rem;
    }
    
    .schedule-title {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rules-container {
        padding: 1.5rem;
    }
    
    .rules-list li {
        font-size: 0.9rem;
    }
    
    .closing-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .schedule-time-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .schedule-list li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}