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

:root {
    /* Brand Colors (Intertek Professional Palette + Golden Ticket) */
    --brand-yellow: #FFC600;    /* Intertek Yellow */
    --brand-yellow-dark: #E6B200;
    --brand-dark: #121212;      /* Intertek Deep Charcoal/Black */
    --brand-dark-alt: #1F1F1F;
    --brand-gold: #D4AF37;      /* Premium muted gold for subtle accents */
    
    /* UI Colors */
    --primary-black: #111827;
    --text-main: #374151;
    --text-muted: #6B7280;
    --bg-main: #F4F6F9;
    --bg-card: #FFFFFF;
    
    /* UI Elements */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(255, 198, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fonts */
    --font-heading: 'Neo Sans Std', 'Montserrat', sans-serif;
    --font-body: 'Neo Sans Std', 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none !important;
}

/* Hide Powered By Badge */
#wbx-powered-by-slot {
    display: none !important;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Floating Badge */
.floating-badge {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #FFC700;
    backdrop-filter: blur(10px);
    color: var(--brand-dark);
    padding: 12px 24px;
    border-radius: 100px;
    border: none;
    box-shadow: var(--shadow-glow);
    z-index: 1000;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: slideInTopRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.floating-badge .badge-icon {
    font-size: 1.2rem;
}

@keyframes slideInTopRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .floating-badge {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: center;
        animation: slideInBottom 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes slideInBottom {
    from { transform: translateY(120%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 24px 0;
    position: relative;
    z-index: 100;
}

/* Intertek Yellow Top Bar */
.site-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--brand-yellow);
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.85;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 120px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Premium dark gradient overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(18, 18, 18, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0;
}

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-title-main {
    color: #fff;
}

.gold-accent-text {
    background: linear-gradient(to right, #D4AF37, #FDF7B4, #C69320, #FDF7B4, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 8px; /* prevents clipping */
}

.hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

.exclusive-line {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--brand-yellow);
    margin-bottom: 40px;
    font-weight: 700;
}

/* Countdown */
.countdown-wrapper {
    margin-bottom: 40px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--brand-yellow);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-align: left;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 30px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.countdown-item .cd-label {
    font-size: 0.7rem;
    color: var(--brand-yellow);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 6px;
    letter-spacing: 1px;
}

/* Main Content & Layout */
.main-content {
    padding: 80px 0;
}

.two-col-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

@media (min-width: 900px) {
    .two-col-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: 50px;
    }
    .details-column {
        flex: 1;
    }
    .form-column {
        flex: 0 0 460px;
    }
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px;
    margin-bottom: 30px;
}

.info-card {
    border-top: 4px solid var(--brand-dark);
}

.why-attend-card {
    border-top: 4px solid var(--brand-gold);
}

.card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--brand-dark);
    margin-bottom: 12px;
    font-weight: 800;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Links */
.text-link {
    color: var(--brand-dark);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--brand-yellow-dark);
}

/* Agenda Display */
.agenda-container {
    margin-bottom: 40px;
}

.agenda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E7EB;
}

.agenda-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin: 0;
    font-weight: 700;
}

.agenda-duration {
    background: var(--bg-main);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

.agenda-list {
    list-style: none;
}

.agenda-list li {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #F3F4F6;
}

.agenda-list li:last-child {
    border-bottom: none;
}

.agenda-time {
    font-weight: 600;
    font-family: var(--font-heading);
    width: 160px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.agenda-desc {
    flex: 1;
    color: var(--primary-black);
    font-weight: 500;
}

/* Lab Tour Cards */
.tours-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--brand-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.lab-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-card-hover {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card-hover::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-yellow);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.premium-card-hover:hover {
    border-color: #D1D5DB;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.lab-icon {
    color: var(--brand-dark);
    background: #F4F6F9;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.lab-details {
    flex: 1;
}

.lab-details-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.lab-title-group h3 {
    font-family: var(--font-heading);
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    color: var(--brand-dark);
    font-weight: 700;
}

.lab-date {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.lab-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0 0 12px 0;
}

.badge-outline {
    display: inline-block;
    padding: 4px 12px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #D1D5DB;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Why Attend Section */
.why-attend-list {
    list-style: none;
    margin-top: 20px;
}

.why-attend-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.5;
}

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

.check-icon {
    color: var(--brand-dark);
    background-color: var(--brand-yellow);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Policy Card */
.faq-card {
    border-top: none;
    background: var(--bg-main);
    box-shadow: none;
    padding: 30px;
    border-radius: var(--radius-sm);
}

.faq-card h2 {
    font-size: 1.3rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--brand-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    transition: var(--transition);
    text-decoration: underline;
}

.btn-link:hover {
    color: var(--brand-yellow-dark);
}

.btn-link svg {
    transition: transform 0.2s ease;
    text-decoration: none;
}

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

/* Form Styles */
.form-card {
    border-top: 4px solid var(--brand-yellow);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--primary-black);
    transition: var(--transition);
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    background: #fff;
    border-color: var(--brand-yellow);
    box-shadow: 0 0 0 4px rgba(255, 198, 0, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #9CA3AF;
}

.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Buttons */
.btn-primary, .btn-submit {
    display: inline-block;
    width: 100%;
    padding: 18px 24px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 198, 0, 0.3);
}

.btn-primary:hover, .btn-submit:hover:not(:disabled) {
    background: var(--brand-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 198, 0, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: var(--brand-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-outline:hover {
    border-color: var(--brand-dark);
    background: #F9FAFB;
}

.btn-small {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Animated Button Pulse */
.btn-animated {
    animation: premiumPulse 2.5s infinite;
}

@keyframes premiumPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.6); }
    70% { box-shadow: 0 0 0 12px rgba(255, 198, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 198, 0, 0); }
}

/* Form texts */
.privacy-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 24px;
    line-height: 1.6;
}

.privacy-note a {
    color: var(--brand-dark);
    text-decoration: underline;
    font-weight: 600;
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Post Entry / Thank You */
.text-center {
    text-align: center;
}

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.success-msg {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 24px;
}

.success-details {
    background: var(--bg-main);
    padding: 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    margin-bottom: 30px;
    text-align: left;
    color: var(--text-main);
    line-height: 1.6;
}

.notification-box {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
    font-size: 1rem;
    color: var(--brand-dark);
}

/* Share Panel */
.share-panel {
    background: #fff;
    border: 1px solid #E5E7EB;
    padding: 24px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--brand-yellow);
    text-align: left;
    margin-bottom: 24px;
}

.share-panel h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--brand-dark);
}

.share-panel p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bold-highlight {
    font-weight: 700;
    color: var(--brand-dark);
}

.share-controls {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.share-controls input {
    flex: 1;
    margin: 0;
    background: #F9FAFB;
}

/* Footer */
.site-footer {
    background: var(--brand-dark);
    color: rgba(255,255,255,0.6);
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

.separator {
    color: rgba(255,255,255,0.2);
}

/* Modals */
.modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: var(--radius-md);
    padding: 40px;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    border-top: 6px solid var(--brand-dark);
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--brand-dark);
    margin-bottom: 24px;
    padding-right: 30px;
    font-size: 1.5rem;
    font-weight: 800;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #F3F4F6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #E5E7EB;
    color: var(--primary-black);
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    padding-right: 10px;
    text-align: left;
}

.policy-list {
    list-style: none;
    margin-bottom: 20px;
}

.policy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--brand-dark);
    border-radius: 50%;
}

#rules-container {
    white-space: pre-wrap;
    color: var(--text-muted);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

/* --- Subtle Animations for Transitions --- */

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

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

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Load animations */
.hero-content {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.details-column {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    opacity: 0;
}

.form-column {
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

/* State transition animations (triggered when .hidden is removed) */
#entry-view:not(.hidden), 
#thank-you-view:not(.hidden), 
#status-view:not(.hidden) {
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#error-message:not(.hidden) {
    animation: fadeSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#share-panel:not(.hidden) {
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

/* Modal animations */
.modal:not(.hidden) .modal-overlay {
    animation: fadeIn 0.4s ease forwards;
}

.modal:not(.hidden) .modal-content {
    animation: modalScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 20px 0;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .card {
        padding: 30px 24px;
    }
    
    .two-col-layout {
        margin-top: -40px;
    }
    
    .modal-content {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .agenda-list li {
        flex-direction: column;
        gap: 6px;
    }
    
    .agenda-time {
        width: 100%;
        font-size: 0.9rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
}
