/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #0770e3;
    --primary-dark: #042759;
    --primary-light: #e0f0ff;
    --accent: #FFD700;
    --accent-dark: #c5a200;
    --success: #00a698;
    --warning: #ff6b00;
    --danger: #d13333;
    --bg: #f1f2f8;
    --bg-alt: #e8eaf0;
    --surface: #ffffff;
    --text: #111236;
    --text-secondary: #5a5d7a;
    --text-light: #8b8ea8;
    --border: #dfe1ec;
    --shadow-sm: 0 2px 8px rgba(4,39,89,0.06);
    --shadow-md: 0 8px 30px rgba(4,39,89,0.10);
    --shadow-lg: 0 20px 60px rgba(4,39,89,0.15);
    --shadow-glow: 0 0 30px rgba(7,112,227,0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --glass: rgba(255,255,255,0.75);
    --glass-border: rgba(255,255,255,0.3);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; }
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 8px;
    color: var(--primary-dark);
}
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(7,112,227,0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7,112,227,0.4);
}
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.btn-book {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(7,112,227,0.3);
    border-radius: var(--radius-md);
}
.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo { color: var(--primary-dark); }
.nav-heart { color: var(--accent); font-size: 1.2rem; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { background: rgba(7,112,227,0.1); color: var(--primary); }
.nav-cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 10px 24px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}
.navbar.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 6px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #042759 0%, #0a3d6b 30%, #0770e3 60%, #3a9bdc 100%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(4,39,89,0.4) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 24px;
}
.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
    font-weight: 300;
}
.hero-names {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-ampersand {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--accent);
    margin: 8px 0;
    font-style: italic;
}
.hero-date {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-top: 16px;
    font-weight: 400;
    opacity: 0.9;
}
.hero-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 48px;
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(255,215,0,0.3);
}
.hero-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255,215,0,0.5);
}

/* Countdown */
.countdown-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.countdown-item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
}
.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-top: 6px;
    display: block;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}
.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    margin: 8px auto 0;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideRight { from { width: 0; } to { width: 100%; } }
@keyframes recording-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(213,0,0,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(213,0,0,0); }
}

.animate-fade-up { animation: fadeUp 0.8s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== TIMELINE ===== */
.section-story { background: var(--surface); }
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    transform: translateX(-50%);
    border-radius: 3px;
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background: var(--accent);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
}
.timeline-item.left::after { right: -8px; }
.timeline-item.right::after { left: -8px; }
.timeline-content {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}
.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.timeline-icon { font-size: 2rem; margin-bottom: 8px; }
.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}
.timeline-date {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.timeline-content p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== EVENT CARDS (Nikah / Waleema) ===== */
.section-nikah { background: var(--bg); }
.section-waleema { background: var(--surface); }
.event-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 24px;
    text-align: center;
}
.waleema-header {
    background: linear-gradient(135deg, var(--success), #006d63);
}
.event-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}
.event-card-body { padding: 32px; }
.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.event-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.event-detail-icon { font-size: 1.5rem; }
.event-detail h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 2px;
}
.event-detail p { font-weight: 500; font-size: 0.95rem; }
.event-countdown { text-align: center; margin: 20px 0; }
.countdown-mini {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    background: var(--bg);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
}
.cd-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.cd-lbl { font-size: 0.7rem; color: var(--text-light); margin-right: 4px; }
.cd-sep { color: var(--text-light); font-size: 1.2rem; margin: 0 2px; }
.event-map { margin: 20px 0; border-radius: var(--radius-md); overflow: hidden; }
.event-card-body .btn { width: 100%; justify-content: center; }

/* ===== BUS SEAT BOOKING ===== */
.section-bus {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0a3d6b 50%, var(--primary) 100%);
    color: #fff;
}
.section-bus .section-title { color: #fff; }
.section-bus .section-subtitle { color: rgba(255,255,255,0.7); }
.bus-booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}
.bus-map-wrapper { display: flex; flex-direction: column; align-items: center; }
.bus-shell {
    background: rgba(255,255,255,0.06);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 40px 40px 20px 20px;
    padding: 24px 20px;
    width: 100%;
    max-width: 320px;
    backdrop-filter: blur(10px);
}
.bus-front {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px dashed rgba(255,255,255,0.2);
}
.bus-driver {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}
.driver-icon { font-size: 1.5rem; }
.bus-door {
    background: rgba(255,255,255,0.1);
    padding: 4px 16px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px dashed rgba(255,255,255,0.3);
}

/* Seat Grid */
.bus-seats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.seat-row .aisle {
    width: 32px;
    text-align: center;
    font-size: 0.6rem;
    color: rgba(255,255,255,0.3);
}
.seat {
    width: 52px;
    height: 46px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.seat.available {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    border-color: rgba(255,255,255,0.4);
}
.seat.available:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
    border-color: var(--primary);
}
.seat.selected {
    background: var(--primary);
    color: #fff;
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
    animation: pulse 1.5s infinite;
}
.seat.pending {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent-dark);
    cursor: default;
}
.seat.booked {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.4);
    border-color: rgba(255,255,255,0.1);
    cursor: default;
}
.seat.yours {
    background: var(--success);
    color: #fff;
    border-color: #00d4c3;
    cursor: default;
}

/* Seat Tooltip */
.seat[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
}

/* Seat Legend */
.seat-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    justify-content: center;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}
.legend-color {
    width: 20px;
    height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.3);
}
.legend-available { background: rgba(255,255,255,0.9); }
.legend-selected { background: var(--primary); border-color: var(--accent); }
.legend-pending { background: var(--accent); }
.legend-booked { background: rgba(255,255,255,0.15); }
.legend-yours { background: var(--success); }

/* Booking Panel */
.booking-panel {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.booking-panel-empty { text-align: center; }
.booking-empty-icon { font-size: 4rem; margin-bottom: 16px; filter: saturate(0.6); }
.booking-panel-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.booking-panel-empty p { opacity: 0.7; }
.selected-seat-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.selected-seat-label { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.selected-seat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(255,215,0,0.15);
}

/* Admin */
.admin-bar { text-align: center; margin-top: 32px; }
.admin-toggle-btn {
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}
.admin-toggle-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ===== ADMIN MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: scaleIn 0.3s ease;
}
.modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.trello-modal {
    max-width: 960px;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}
.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
}
.modal-close {
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-secondary);
}
.modal-close:hover { background: var(--bg); color: var(--text); }
.admin-login { padding: 32px; text-align: center; }
.admin-login p { color: var(--text-secondary); margin-bottom: 20px; }
.admin-login .form-group input {
    background: var(--bg);
    color: var(--text);
    border-color: var(--border);
    text-align: center;
}
.admin-login .form-group input:focus { border-color: var(--primary); }
.admin-dashboard { padding: 24px; }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.stat-card {
    text-align: center;
    padding: 14px 8px;
    background: var(--bg);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition);
}
.stat-card.stat-available { border-color: var(--primary-light); }
.stat-card.stat-pending { border-color: #fff3cd; }
.stat-card.stat-booked { border-color: #d1fae5; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.stat-label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* Trello Quick Add */
.trello-quick-add {
    background: linear-gradient(135deg, var(--primary-light), #eef6ff);
    border: 1px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}
.trello-quick-add h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-dark);
    margin: 0 0 12px;
}
.quick-add-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.quick-input {
    flex: 1;
    min-width: 100px;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
    font-family: var(--font-body);
}
.quick-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7,112,227,0.1);
}
select.quick-input { flex: 0.7; cursor: pointer; }
.quick-add-btn {
    padding: 10px 20px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(7,112,227,0.3);
}
.quick-add-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7,112,227,0.4);
}

/* Trello Kanban Board */
.trello-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.trello-column {
    background: var(--bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.trello-col-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
}
.trello-col-pending .trello-col-header { border-bottom-color: var(--warning); background: #fff7ed; color: #9a3412; }
.trello-col-approved .trello-col-header { border-bottom-color: var(--success); background: #ecfdf5; color: #065f46; }
.trello-col-rejected .trello-col-header { border-bottom-color: var(--danger); background: #fef2f2; color: #991b1b; }
.trello-col-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.dot-pending { background: var(--warning); }
.dot-approved { background: var(--success); }
.dot-rejected { background: var(--danger); }
.trello-col-count {
    margin-left: auto;
    background: rgba(0,0,0,0.08);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
}
.trello-col-body {
    padding: 10px;
    min-height: 120px;
    max-height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.trello-col-body::-webkit-scrollbar { width: 4px; }
.trello-col-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* Trello Cards */
.trello-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    cursor: default;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.trello-card:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-1px);
}
.trello-card-seat {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.trello-card-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 2px;
}
.trello-card-phone {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.trello-card-actions {
    display: flex;
    gap: 6px;
}
.trello-card-actions button {
    flex: 1;
    padding: 6px 0;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}
.trello-btn-approve { background: var(--success); color: #fff; }
.trello-btn-approve:hover { background: #008f83; }
.trello-btn-reject { background: var(--danger); color: #fff; }
.trello-btn-reject:hover { background: #b02a2a; }
.trello-btn-restore { background: var(--primary); color: #fff; }
.trello-btn-restore:hover { background: var(--primary-dark); }
.trello-btn-delete { background: #6b7280; color: #fff; }
.trello-btn-delete:hover { background: #4b5563; }
.trello-empty {
    text-align: center;
    padding: 20px 10px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-style: italic;
}

/* ===== GALLERY ===== */
.section-gallery { background: var(--bg); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item.gi-tall { grid-row: span 2; }
.gallery-item.gi-wide { grid-column: span 2; }
.gallery-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4,39,89,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
}
.gallery-overlay span { font-size: 2.5rem; margin-bottom: 8px; }
.gallery-overlay p { font-weight: 600; letter-spacing: 1px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-img { transform: scale(1.1); }

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.3s ease;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.8);
    z-index: 3001;
    transition: var(--transition);
}
.lightbox-close:hover { color: #fff; transform: scale(1.1); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: rgba(255,255,255,0.7);
    z-index: 3001;
    padding: 20px;
    transition: var(--transition);
}
.lightbox-prev-btn { left: 16px; }
.lightbox-next-btn { right: 16px; }
.lightbox-nav:hover { color: #fff; }
.lightbox-content {
    width: 70vw;
    height: 70vh;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.lightbox-caption {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* ===== AUDIO GUESTBOOK ===== */
.section-guestbook { background: var(--surface); }
.guestbook-recorder { display: flex; justify-content: center; margin-bottom: 40px; }
.recorder-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    transition: var(--transition);
}
.recorder-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.recorder-visual {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}
.recorder-timer {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}
.recorder-controls { display: flex; gap: 12px; justify-content: center; margin-bottom: 16px; }
.recorder-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.recorder-start-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(7,112,227,0.3);
}
.recorder-start-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }
.recorder-start-btn.recording {
    background: #d50000;
    animation: recording-pulse 1.5s infinite;
}
.recorder-stop-btn {
    background: var(--danger);
    color: #fff;
}
.recorder-stop-btn:hover { background: #b02a2a; }
.rec-icon { font-size: 1.2rem; }
.recorder-name-input { margin-top: 16px; }
.recorder-name-input .form-group input {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border);
}
.recorder-name-input .form-group input:focus { border-color: var(--primary); }

/* Guestbook Messages */
.guestbook-messages { max-width: 600px; margin: 0 auto; }
.guestbook-messages-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-align: center;
}
.guestbook-messages-title span { color: var(--text-light); font-size: 1rem; }
.wishes-list { display: flex; flex-direction: column; gap: 12px; }
.wish-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}
.wish-item:hover { box-shadow: var(--shadow-sm); }
.wish-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.wish-info { flex: 1; }
.wish-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.wish-audio { width: 100%; height: 32px; }
.wish-play {
    background: var(--primary);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.wish-play:hover { background: var(--primary-dark); transform: scale(1.1); }

/* ===== DRESS CODE ===== */
.section-dresscode { background: var(--bg); }
.dresscode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}
.dresscode-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.dresscode-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.dresscode-icon { font-size: 4rem; margin-bottom: 16px; }
.dresscode-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.dresscode-list {
    text-align: left;
    max-width: 280px;
    margin: 0 auto 20px;
}
.dresscode-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--bg);
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}
.dresscode-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}
.dresscode-colors { display: flex; gap: 8px; justify-content: center; }
.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid var(--bg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: default;
}
.color-swatch:hover { transform: scale(1.2); }

/* ===== FAQ ===== */
.section-faq { background: var(--surface); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.active { border-color: var(--primary); }
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    transition: var(--transition);
    background: var(--surface);
}
.faq-question:hover { background: var(--bg); }
.faq-item.active .faq-question { background: var(--primary-light); color: var(--primary); }
.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--text-light);
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 20px;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}
.faq-answer p { color: var(--text-secondary); line-height: 1.7; }

/* ===== RSVP ===== */
.section-rsvp {
    background: linear-gradient(135deg, #f8faff 0%, #e8f4f8 100%);
}
.rsvp-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--surface);
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.rsvp-icon { font-size: 3.5rem; margin-bottom: 16px; }
.rsvp-text { color: var(--text-secondary); margin-bottom: 24px; font-size: 1.05rem; }

/* Guest Counter */
.guest-counter {
    text-align: center;
    margin-top: 48px;
}
.guest-counter h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.counter-display { display: flex; flex-direction: column; align-items: center; }
.counter-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    transition: all 0.5s ease;
}
.counter-label { color: var(--text-light); font-size: 0.9rem; margin-top: 4px; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 48px 24px;
}
.footer-names {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 8px;
}
.footer-date { margin-bottom: 16px; opacity: 0.7; }
.footer-copy { font-size: 0.85rem; opacity: 0.6; margin-bottom: 4px; }
.footer-credit { font-size: 0.8rem; opacity: 0.5; }
.footer-credit a { color: var(--accent); transition: var(--transition); }
.footer-credit a:hover { opacity: 1; text-decoration: underline; }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-dark);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    z-index: 5000;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { font-size: 1.3rem; }

/* ===== MUSIC PLAYER ===== */
.music-player {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.music-player:hover { box-shadow: var(--shadow-lg); }
.music-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.music-toggle:hover { background: var(--primary-dark); transform: scale(1.05); }
.music-toggle.playing { background: var(--accent); color: var(--primary-dark); }
.music-icon { width: 20px; height: 20px; }
.music-info { display: flex; flex-direction: column; gap: 4px; min-width: 100px; }
.music-title { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.music-progress-bar {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.music-progress {
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 3px;
    transition: width 0.3s;
}
.music-volume {
    width: 60px;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}
.music-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--surface);
        flex-direction: column;
        padding: 80px 24px 24px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text) !important; padding: 14px 20px; width: 100%; border-radius: var(--radius-sm); }
    .nav-links a:hover { background: var(--bg); }

    .hero-names { font-size: clamp(2rem, 10vw, 3.5rem); }
    .countdown-item { padding: 14px 16px; min-width: 70px; }
    .countdown-number { font-size: 1.8rem; }

    .timeline::before { left: 20px; }
    .timeline-item { width: 100%; left: 0 !important; padding-left: 50px; padding-right: 16px; text-align: left !important; }
    .timeline-item::after { left: 12px !important; right: auto !important; }

    .bus-booking-container { grid-template-columns: 1fr; }
    .bus-shell { max-width: 100%; }
    .seat { width: 44px; height: 40px; font-size: 0.65rem; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-item.gi-wide { grid-column: span 2; }
    .gallery-item.gi-tall { grid-row: span 2; }

    .lightbox-content { width: 90vw; height: 50vh; }

    .dresscode-grid { grid-template-columns: 1fr; }

    .admin-stats { grid-template-columns: repeat(2, 1fr); }

    .music-player {
        bottom: 12px;
        right: 12px;
        padding: 8px 12px;
    }
    .music-info { display: none; }
    .music-volume { display: none; }

    .section { padding: 60px 0; }
}

@media (max-width: 480px) {
    .hero-names { font-size: 2rem; }
    .countdown-container { gap: 8px; }
    .countdown-item { padding: 10px 12px; min-width: 60px; }
    .countdown-number { font-size: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
    .seat { width: 38px; height: 34px; font-size: 0.6rem; }
}
