/* Workshop Landing Page Styles */

/* Import main styles if needed */
:root {
    --primary-red: #DC143C;
    --dark-red: #B8001E;
    --light-red: #FF4444;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --gray-light: #E5E5E5;
    --gray: #999999;
    --gray-dark: #333333;
    --black: #1A1A1A;
    
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(220, 20, 60, 0.1);
    --shadow-hover: 0 20px 60px rgba(220, 20, 60, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================
   NEWS TICKER (FIXED TOP)
   ========================================== */
.news-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    z-index: 2000;
    overflow: hidden;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 20s linear infinite;
    padding-left: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 25s linear infinite;
    padding-left: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 50px; /* Extra spacing for full readability */
}

.ticker-link {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.ticker-link:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.ticker-link:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: var(--white);
    opacity: 0.6;
}

.ticker-link:active {
    transform: translateY(0);
}

.ticker-item i {
    font-size: 16px;
    animation: ticker-icon-pulse 2s ease-in-out infinite;
}

.ticker-item strong {
    font-weight: 700;
    margin-right: 5px;
}

.ticker-separator {
    display: inline-block;
    margin: 0 50px; /* Extra spacing between headlines */
    font-size: 18px;
    opacity: 0.7;
}

/* Pause animation on hover */
.news-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Ticker scroll animation */
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Icon pulse animation */
@keyframes ticker-icon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 48px; /* Adjusted for ticker */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-cta {
    padding: 12px 30px !important;
}

/* Workshop Hero */
.workshop-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px; /* Adjusted for ticker + navbar */
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 140px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(var(--primary-red) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-red) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.hero-title-top {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title-main {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gray-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.workshop-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.detail-item i {
    font-size: 32px;
    color: var(--primary-red);
    margin-top: 5px;
}

.detail-item strong {
    display: block;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 5px;
}

.detail-item span {
    display: block;
    font-size: 14px;
    color: var(--gray);
}

.pricing-preview {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.price-box {
    background: var(--white);
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    min-width: 250px;
}

.price-box.early-bird {
    border: 3px solid var(--primary-red);
    position: relative;
    transform: scale(1.05);
}

.price-label {
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.price-original {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    margin-top: 10px;
}

.price-save {
    font-size: 16px;
    color: var(--primary-red);
    font-weight: 700;
    margin-top: 5px;
}

.price-note {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 50px 0;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-dark);
}

.badge-item i {
    color: var(--primary-red);
    font-size: 18px;
}

/* Facilitator Section */
.facilitator {
    padding: 100px 0;
    background: var(--off-white);
}

.facilitator-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
    font-family: var(--font-display);
}

.facilitator-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 10px;
}

.facilitator-title {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.facilitator-bio {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.facilitator-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--gray-dark);
}

.credential-item i {
    color: var(--primary-red);
    font-size: 20px;
}

/* Curriculum Section */
.curriculum {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.curriculum-day {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.curriculum-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-red);
}

.curriculum-day.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, var(--white) 0%, #fff5f7 100%);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.day-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-red);
    font-family: var(--font-display);
}

.day-date {
    font-size: 14px;
    color: var(--gray);
    text-align: right;
}

.day-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.day-description {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.day-topics {
    list-style: none;
    margin-bottom: 25px;
}

.day-topics li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-dark);
}

.day-topics i {
    color: var(--primary-red);
    margin-top: 3px;
}

.day-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.day-download:hover {
    gap: 12px;
}

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

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--light-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 36px;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.pricing-card.best-value {
    border-color: var(--primary-red);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.currency {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 10px;
}

.price {
    font-size: 72px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.pricing-original {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.pricing-save {
    font-size: 20px;
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 30px;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--gray-dark);
}

.pricing-features i {
    color: var(--primary-red);
    font-size: 18px;
}

.pricing-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 20px;
}

/* Registration Section */
.registration {
    padding: 100px 0;
    background: var(--off-white);
}

.registration-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.registration-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.registration-form h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-dark);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-red);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: var(--off-white);
    border-radius: 15px;
    margin: 30px 0;
}

.total-label {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
}

.total-amount {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-red);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray);
    margin-top: 20px;
    padding: 15px;
    background: var(--off-white);
    border-radius: 10px;
}

.form-note i {
    color: var(--primary-red);
}

/* Registration Info Cards */
.registration-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h4 i {
    color: var(--primary-red);
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray-dark);
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item strong {
    display: block;
    color: var(--black);
    margin-bottom: 8px;
}

.faq-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-description {
    color: var(--gray);
    line-height: 1.8;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* Promo Popup */
.promo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.promo-popup.active {
    display: flex;
}

.popup-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: popupSlideIn 0.5s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-light);
    color: var(--gray-dark);
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.popup-close:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(90deg);
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 30px;
    line-height: 1.3;
}

.popup-price {
    margin: 30px 0;
}

.popup-price-old {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.popup-price-new {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.popup-price-label {
    font-size: 16px;
    color: var(--gray);
    margin-top: 10px;
}

.popup-highlights {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.popup-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-dark);
}

.popup-highlights i {
    color: var(--primary-red);
    font-size: 18px;
}

.popup-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    /* News Ticker Mobile */
    .news-ticker {
        padding: 10px 0;
    }
    
    .ticker-content {
        animation: ticker-scroll 18s linear infinite;
    }
    
    .ticker-item {
        font-size: 13px;
        padding: 0 35px;
    }
    
    .ticker-item i {
        font-size: 14px;
    }
    
    .ticker-separator {
        margin: 0 35px;
        font-size: 16px;
    }
    
    .navbar {
        top: 44px;
    }
    
    /* Logo stays on LEFT in mobile */
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        order: 1; /* Logo first (left side) */
        flex-shrink: 0;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .nav-cta {
        order: 2; /* Register button on right */
    }
    
    .hero-title-main {
        font-size: 48px;
    }
    
    .workshop-details {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-preview {
        flex-direction: column;
        align-items: center;
    }
    
    .price-box.early-bird {
        transform: scale(1);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .registration-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    /* News Ticker Small Mobile */
    .news-ticker {
        padding: 8px 0;
        overflow-x: hidden;
    }
    
    .ticker-content {
        animation: ticker-scroll 25s linear infinite;
        width: max-content;
        min-width: 200%;
    }
    
    .ticker-item {
        font-size: 11px;
        padding: 0 40px;
        min-width: max-content;
        white-space: nowrap;
    }
    
    .ticker-item i {
        font-size: 11px;
        flex-shrink: 0;
    }
    
    .ticker-separator {
        margin: 0 40px;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .navbar {
        top: 40px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .workshop-hero {
        padding: 140px 0 60px; /* Adjusted for ticker */
    }
    
    .hero-title-top {
        font-size: 16px;
    }
    
    .hero-title-main {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .day-number {
        font-size: 36px;
    }
    
    .registration-form-container {
        padding: 30px;
    }
    
    .popup-content {
        padding: 30px;
    }
    
    .popup-content h2 {
        font-size: 24px;
    }
    
    .popup-price-new {
        font-size: 48px;
    }
}