/* ============================================
   WORKSHOP PAGE — Matches Contact Page Design
============================================ */

:root {
    --brand: #0174BB;
    --brand-dark: #015d96;
    --brand-light: #e8f4fd;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --border: #daeaf7;
    --text: #1a2535;
    --text2: #3d5166;
    --surface: #ffffff;
    --shadow: rgba(1, 116, 187, 0.12);
}

/* ---- HERO ---- */
.workshop-hero {
    position: relative;
    padding: 120px 20px 80px;
    background: #011627 url('/image/workshop-bg.jpg') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: white;
}

.workshop-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(1, 116, 187, 0.85), rgba(8, 15, 28, 0.95));
    z-index: 1;
}

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

.workshop-hero .breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.workshop-hero .breadcrumb a {
    color: white;
    text-decoration: none;
}

.workshop-hero .breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
}

.workshop-hero h1 {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.workshop-hero h1 span {
    color: #4db8ff;
}

.workshop-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- STRIP ---- */
.workshop-strip {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding: 0 20px;
}

.workshop-strip .strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--surface);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.workshop-strip .strip-item {
    display: flex;
    align-items: center;
    padding: 30px;
    gap: 20px;
    border-right: 1px solid var(--border);
    transition: all 0.3s ease;
    color: inherit;
}

.workshop-strip .strip-item:last-child {
    border-right: 0;
}

.workshop-strip .strip-item i {
    font-size: 28px;
    color: var(--brand);
}

.workshop-strip .strip-text span {
    display: block;
    font-size: 13px;
    color: var(--text2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-strip .strip-text strong {
    font-size: 18px;
    color: var(--text);
    display: block;
    margin-top: 2px;
}

.workshop-strip .strip-item:hover {
    background: var(--brand-light);
    transform: translateY(-5px);
}

/* ---- SHARED UTILITIES ---- */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    border-radius: 99px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-head h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 15px;
}

.section-head h2 span {
    color: var(--brand);
}

.section-head p {
    font-size: 16px;
    color: var(--text2);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* ---- GALLERY SECTION ---- */
.workshop-gallery-section {
    padding: 100px 20px;
    background: #f8fbff;
}

/* ---- TAB NAV ---- */
.tab-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text2);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-btn i {
    font-size: 14px;
}

.tab-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

.tab-btn.active {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
    box-shadow: 0 8px 20px var(--shadow);
}

/* ---- TAB CONTENT ---- */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ---- GALLERY GRID ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.gallery-item {
    cursor: pointer;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--brand);
    box-shadow: 0 15px 35px var(--shadow);
}

.gallery-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--brand-light);
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 116, 187, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 22px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---- COMING SOON ---- */
.coming-soon-box {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    margin-top: 50px;
}

.coming-soon-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-light);
    color: var(--brand);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.coming-soon-box h3 {
    font-family: var(--font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.coming-soon-box p {
    font-size: 15px;
    color: var(--text2);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 7, 18, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
}

.lb-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.lb-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lb-counter {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    letter-spacing: 1px;
}

.lb-close {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lb-close:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lb-nav:hover {
    background: var(--brand);
    border-color: var(--brand);
}

.lb-prev {
    left: 20px;
}

.lb-next {
    right: 20px;
}

/* ---- COLLEGES ---- */
.colleges-section {
    padding: 100px 20px;
    background: white;
}

.colleges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.college-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
    background: #f8fbff;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    transition: all 0.3s ease;
}

.college-badge i {
    color: var(--brand);
    font-size: 16px;
    flex-shrink: 0;
}

.college-badge:hover {
    background: var(--brand);
    color: white;
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--shadow);
}

.college-badge:hover i {
    color: white;
}

/* ---- BUTTON ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(1, 116, 187, 0.2);
}

/* ---- CTA ---- */
.cta-section {
    padding: 60px 20px 100px;
    background: #f8fbff;
}

.cta-box {
    background: linear-gradient(135deg, #011627 0%, #013d6e 100%);
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: rgba(1, 116, 187, 0.2);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(77, 184, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: #4db8ff;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--brand);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #4db8ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(1, 116, 187, 0.35);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 992px) {
    .workshop-strip .strip-inner {
        grid-template-columns: 1fr;
    }

    .workshop-strip .strip-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .workshop-strip .strip-item:last-child {
        border-bottom: 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .workshop-hero h1 {
        font-size: 32px;
    }

    .section-head h2 {
        font-size: 28px;
    }

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

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .lb-nav {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .lb-prev {
        left: 10px;
    }

    .lb-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .colleges-grid {
        grid-template-columns: 1fr;
    }
    
}