/* ============================================
   EDVOLUTION Website - Style Sheet
   Pixel-perfect reproduction of original edvhk.com
   Extracted from computed styles of Bitrix24 theme
   ============================================ */

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

:root {
    /* === ORIGINAL SITE COLOR SYSTEM === */
    /* Primary: hot pink-red (#E6125D) — nav active, CTAs, links */
    --primary: #E6125D;
    --primary-hover: #C20F50;
    --primary-80: rgba(230, 18, 93, 0.8);         /* carousel caption overlay */
    --primary-10: rgba(230, 18, 93, 0.1);          /* light bg tint (gallery bg) */

    /* Teal: #18BA9B — drama labels, sub-headings */
    --teal: #18BA9B;

    /* Footer background */
    --footer-bg: #2d3436;

    /* Deep Orange: #FE541E — TV/Video section heading */
    --deep-orange: #FE541E;

    /* Blue: #3398DC — another accent on site */
    --blue: #3398DC;

    /* Text colors */
    --text-black: #000000;
    --text-dark: #222222;
    --text-main: #444444;
    --text-main-darker: #333333;
    --text-gray: #616161;
    --text-light: #999999;
    --text-lighter: #BBBBBB;
    --text-white: #FFFFFF;
    --text-white-80: rgba(255, 255, 255, 0.8);

    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-gray: #EEEEEE;
    --bg-dark: #555555;
    --bg-form: rgba(0, 0, 0, 0.07);
    --border-form: rgba(0, 0, 0, 0.09);
    --bg-form-focus: #FFFFFF;

    /* Typography */
    --font-body: 'Open Sans', Helvetica, Arial, sans-serif;
    --font-heading: 'Open Sans', Helvetica, Arial, sans-serif;  /* site uses Open Sans for headings too */
    --font-display: 'Cormorant Infant', serif;                   /* only for "聯絡 我們" h2 */

    /* Layout */
    --container-max: 1140px;
    --container-narrow: 800px;
    --nav-height: 70px;
}

html {
    font-size: 14px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--primary); transition: color 0.2s; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.4;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   NAVIGATION — white bg, pink active, uppercase, 14px/700
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    /* EXACT gradient from original: linear-gradient(#FFB3C8 0%, #FF6164 100%) */
    background: linear-gradient(#FFB3C8 0%, #FF6164 100%);
    transition: box-shadow 0.3s;
    /* No border-bottom on original — the gradient is the background */
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: var(--nav-height);
}

.nav-logo { margin-right: auto; }
.nav-logo img { height: 35px; width: auto; max-width: 180px; }

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-link {
    display: block;
    padding: 7px;
    font-size: 14px;
    font-weight: 700;
    color: #444444;                          /* original: #444 on pink gradient */
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active { color: #E6125D; }
/* Highlight nav link (pink) */
.nav-link-highlight {
    color: #18BA9B !important;
    font-weight: 700;
}
         /* original: active is #E6125D */

/* On pink gradient, links need to be visible — original uses #444 dark */
.nav-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 16px;
    color: #444444;
    transition: color 0.2s;
}

.nav-social:hover { color: #E6125D; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    z-index: 1100;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #444;                       /* dark on pink gradient */
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   SECTION 1: ABOUT — bg #FAFAFA, 2-col layout (text left, image right)
   ============================================ */
.section-about {
    padding-top: calc(var(--nav-height) + 10px);
    background-color: var(--bg-light);   /* #FAFAFA */
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;     /* col-md-6 / col-md-6 — 50/50 split */
    gap: 0;
    align-items: stretch;
}

.about-text-col {
    padding: 50px 30px;                  /* g-py-50 from original */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-image-col {
    position: relative;
    min-height: 300px;                   /* g-min-height-300 */
    background-image: url('../images/about_hero.jpg');
    background-size: cover;              /* original: cover */
    background-position: 50% 50%;       /* original: 50% 50% */
    background-repeat: no-repeat;
}

.section-about .btn-primary {
    display: inline-block;
    width: fit-content;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 13px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    letter-spacing: normal;
}

.section-about .btn-primary:hover { opacity: 0.85; }

.section-about .section-title {
    font-family: var(--font-heading);
    font-size: 27px;
    font-weight: 700;
    color: rgba(230, 18, 93, 0.8);
    line-height: 37.8px;
    margin-bottom: 15px;
}

.about-text {
    font-size: 14px;
    line-height: 22.4px;
    color: #333333;
    margin-bottom: 25px;
}

/* ============================================
   SECTION 2: DRAMA — 3-col layout: left=bg-image, center=text(bluegray bg,30px pad), right=text(bluegray bg)
   Original Bitrix24: col-lg-4 each, left has order-3 (visually right), center order-1, right order-2
   ============================================ */
.section-drama {
    background: var(--bg-white);
    padding: 0;
}

.drama-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;              /* 3 equal cols (col-lg-4 each) */
    align-items: stretch;                             /* ensure all columns same height */
}

.drama-image-col {
    display: flex;                                    /* img container */
    align-items: stretch;
    order: 1;                                         /* visually on the left */
    overflow: hidden;
}

/* Drama hero image — fit column width, fill column height */
.drama-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;                                /* fill column, crop excess */
    display: block;
}

/* Center column — rgba(88,95,105,0.3) bluegray bg, 30px padding */
.drama-text-center {
    background: rgba(88, 95, 105, 0.3);             /* exact: g-bg-blue / bluegray */
    padding: 30px;                                   /* exact: 30px */
    order: 2;                                        /* original order-2: center column */
}

/* Right column — rgba(88,95,105,0.3) bluegray bg */
.drama-text-right {
    background: rgba(88, 95, 105, 0.3);             /* exact: g-bg-bluegray-opacity-0_3 */
    padding: 30px;
    order: 3;                                        /* original order-3: right column */
}

/* H4 label: "應用戲劇培訓" — teal, 30px, 800 weight */
.drama-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--teal);                    /* #18BA9B */
    line-height: 42px;
    margin-bottom: 10px;
}

/* H2 body text: black 13px 600 */
.drama-headline {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-black);
    line-height: 18.2px;
    margin-bottom: 15px;
}

.drama-body {
    font-size: 14px;
    line-height: 22.4px;
    color: #111111;
    margin-bottom: 15px;
}

/* Sub-heading "應用戲劇好處/特質" — teal 20px 700 */
.section-label {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    line-height: 28px;
    margin-bottom: 8px;
}

.drama-text {
    font-size: 14px;
    line-height: 22.4px;
    color: var(--text-main);
}

/* Trait pills: teal bg, white text */
.trait-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin-top: 12px;
    flex-wrap: wrap;
}

.trait-item {
    background: var(--teal);
    color: var(--text-white);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
}

/* Drama slider */
.drama-slider { position: relative; margin: 15px 0; overflow: hidden; width: 100%; }
.drama-slides { display: flex; width: 100%; transition: transform 0.6s ease; }
.drama-slide { flex: 0 0 100%; width: 100%; }
.drama-slide img { width: 100%; height: auto; display: block; min-height: 300px; object-fit: cover; }

.drama-dots { text-align: center; padding: 10px 0; }
.drama-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.drama-dots .dot.active { background: var(--primary); }

/* Drama slide captions — below image, teal title + body text */
.drama-slide { position: relative; }
.drama-slide-caption {
    padding: 15px 0;
    font-family: var(--font-heading);
}
.drama-slide-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--teal);
    line-height: 28px;
    margin-bottom: 5px;
}
.drama-slide-text {
    font-size: 14px;
    line-height: 22.4px;
    color: #111111;
    margin-bottom: 0;
}

/* ============================================
   SECTION 3: VIDEO / SCHOOL TV — H1 orange 30px/700, problem cards with orange titles
   ============================================ */
.section-video {
    padding: 20px 0;
    background: var(--bg-white);
}

.video-heading {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--deep-orange);              /* #FE541E */
    line-height: 42px;
    margin-bottom: 15px;
}

.video-intro {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);                /* #222222 */
    line-height: 22.4px;
    margin-bottom: 15px;
}

.video-bridge {
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Problem cards — 4-col layout (col-lg-3 each) */
.video-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* exact: 4 cols (col-lg-3 each) */
    gap: 5px;                              /* exact gap from Bitrix: 4.99996px */
    margin-top: 15px;
}

.video-card {
    background: var(--bg-white);
    overflow: hidden;
    transition: transform 0.3s;
    border-radius: 0;                      /* exact: 0px */
    border: none;
    padding: 5px;
}

.video-card:hover { transform: translateY(-2px); }

.card-img {
    width: 100%;
    height: 236px;                         /* exact computed height */
    object-fit: fill;                      /* original uses fill, not cover */
    border-radius: 0;
    transition: transform 0.5s;
}

.video-card:hover .card-img { transform: scale(1.05); }

.card-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 5px 5px;
    line-height: 1.4;
}

/* Problem card titles — orange */
.card-title-orange {
    color: var(--deep-orange);
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
}

.card-text {
    font-size: 12px;
    line-height: 19.2px;
    color: #222222;                          /* dark text for readability on white cards */
    padding: 5px 5px 10px;
}

/* Solution card — orange-yellow gradient bg + green border-left (#A0BE47) */
.card-solution {
    border-left: 4px solid #A0BE47;        /* exact: border-left #A0BE47 */
    background: linear-gradient(225deg, rgb(245,155,0), rgb(245,212,0));  /* exact gradient from computed styles */
    padding: 5px;
}

.card-solution .card-title {
    color: rgba(255,255,255,0.8);           /* original: white-80 opacity */
    font-size: 18px;
    font-weight: 700;
    line-height: 25.2px;
}

.card-solution .card-text {
    color: #EEEEEE;
    font-size: 12px;
    line-height: 19.2px;
}

/* ============================================
   SECTION 4: CAROUSEL + SEN — 2-col layout (left=carousel col-lg-8, right=SEN text col-lg-4)
   ============================================ */
.section-sen {
    background: var(--bg-white);
    padding: 0;
}

.sen-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;        /* exact: col-lg-8 + col-lg-4 = 2:1 ratio */
}

/* LEFT: Carousel column (col-lg-8) */
.sen-carousel-col {
    height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RIGHT: SEN text column (col-lg-4) */
.sen-text-col {
    background: rgba(88, 95, 105, 0.3);   /* bluegray bg matching original */
    padding: 30px;
}
.sen-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: #64B5F6;
    line-height: 42px;
    margin-bottom: 15px;
}
.sen-text-col .section-title,
.sen-text-col h2 {
    color: #64B5F6 !important;
}

/* Contact Section */
.section-contact-heading {
    background: var(--footer-bg, #2d3436);
    padding: 50px 0 30px;
    text-align: center;
}

.section-contact-heading .section-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.section-contact-form {
    background: rgba(255, 0, 0, 0.1);
    padding: 30px 0 50px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 40px;
    overflow: hidden;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--teal, #18BA9B);
}

.form-header-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark, #2d3436);
    margin-bottom: 5px;
}

.form-header-subtitle {
    display: block;
    font-size: 14px;
    color: #666;
}

.contact-form {
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark, #2d3436);
    margin-bottom: 5px;
}

.form-group .required {
    color: var(--primary, #E6125D);
}

.form-group input,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal, #18BA9B);
    box-shadow: 0 0 0 3px rgba(24, 186, 155, 0.1);
}
.form-group select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--teal, #18BA9B);
    box-shadow: 0 0 0 3px rgba(24, 186, 155, 0.1);
}



.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-consent {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--teal, #18BA9B);
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn-primary {
    background-color: var(--primary, #E6125D);
    color: #fff;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
    width: fit-content;
}

.form-submit .btn-primary:hover {
    opacity: 0.9;
}

.form-message.success {
    display: inline-block;
    border: 2px solid var(--primary, #E6125D);
    color: var(--primary, #E6125D);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}

.form-message.error {
    display: inline-block;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}





@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: var(--nav-height, 70px);
        left: 0;
        right: 0;
        background: var(--nav-gradient, #2d3436);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
        pointer-events: none;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-link { padding: 12px 20px; }

    .form-grid { grid-template-columns: 1fr; }
    .section-contact-heading .section-title { font-size: 36px; line-height: 1.3; }
    .form-submit button[type="submit"] { max-width: 100%; }
    .form-container {
        border-radius: 0;
        box-shadow: none;
        padding: 20px;
    }
}

/* Gallery — 過往工作 */
.section-gallery {
    background: rgba(255, 0, 0, 0.1);
    padding: 50px 0 50px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.gallery-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(230, 18, 93, 0.8);
    color: #fff;
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--font-heading);
}

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

.container-narrow {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* SEN sliding carousel: viewport shows 2 cols (4 images), track has 3 cols, slide 1 col */
.sen-carousel {
    position: relative;
}

.sen-carousel-viewport {
    overflow: hidden;
}

.sen-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 150%;  /* 3 cols / 2 visible = 150% */
}

.sen-col {
    width: 33.3333%;  /* each column = 1/3 of track = 50% of viewport */
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 4px;
    box-sizing: border-box;
}

.sen-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sen-grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.sen-grid-item:hover img {
    transform: scale(1.05);
}

.sen-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 18, 93, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: var(--font-heading);
}

.sen-grid-item:hover .sen-grid-overlay {
    opacity: 1;
}

.sen-carousel-prev,
.sen-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 15px 12px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.sen-carousel-prev:hover,
.sen-carousel-next:hover { background: rgba(0, 0, 0, 0.8); }
.sen-carousel-prev { left: 0; }
.sen-carousel-next { right: 0; }

.sen-carousel-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 992px) {
    .sen-grid-item img { height: 160px; }
}

@media (max-width: 576px) {
    .sen-grid-item img { height: 180px; }
}

.lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    z-index: 10001;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.4);
}



.lightbox-content { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; }
.lightbox-caption { color: var(--text-white); padding: 12px 0; font-size: 14px; max-width: 700px; margin: 0 auto; }

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html { scroll-behavior: smooth; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .video-cards { grid-template-columns: repeat(2, 1fr); }
    .drama-layout { grid-template-columns: 1fr; }
    .drama-image-col { order: -1; min-height: 250px; }
    .drama-text-center,
    .drama-text-right { order: unset; }
    .sen-layout { grid-template-columns: 1fr; }

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

/* Footer */
.footer {
    background: var(--footer-bg, #2d3436);
    color: #fff;
    padding: 0;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-card {
    text-align: center;
    padding: 15px 10px;
    border-left: 3px solid var(--teal, #18BA9B);
}

.footer-card-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-card-link:hover {
    color: var(--teal, #18BA9B);
}

.footer-card-link strong {
    font-size: 16px;
    display: inline-block;
    margin-bottom: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--teal, #18BA9B);
}

@media (max-width: 768px) {
    .footer-contact-grid { grid-template-columns: 1fr; gap: 0; }
    .footer-contact-card { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 768px) {
    .section-contact-heading .section-title { font-size: 36px; line-height: 1.3; }
    .form-submit button[type="submit"] { max-width: 100%; }
    :root { --nav-height: 60px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: linear-gradient(#FFB3C8 0%, #FF6164 100%);
        flex-direction: column;
        padding: 10px 0;
        gap: 0;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .nav-menu.active { transform: translateY(0); }

    .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 13px;
    }

    .section { padding: 35px 0; }
    .section-about { padding-top: calc(var(--nav-height) + 15px); }

    .drama-label { font-size: 24px; line-height: 1.4; }
    .video-heading { font-size: 24px; line-height: 1.4; }
    .video-intro { font-size: 14px; }

    .sen-layout { grid-template-columns: 1fr; }
    .sen-text-col { padding: 20px 15px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .section-gallery .gallery-title { font-size: 30px; line-height: 1.3; }
    .section-contact-heading .section-title { font-size: 32px; line-height: 1.3; }
    .form-grid { grid-template-columns: 1fr; }
    .card-img { height: 180px; }
    .carousel-slide img { height: 45vh; min-height: 250px; }
    .carousel-caption { font-size: 13px; padding: 15px 20px 10px; }

    .trait-list { gap: 8px; }
    .trait-item { padding: 5px 14px; font-size: 12px; }

    /* About section: stack to single column on mobile */
    .about-layout { grid-template-columns: 1fr; }
    .about-image-col { min-height: 250px; order: -1; }
    .about-text-col { padding: 25px 15px; }

    .footer-contact-grid { grid-template-columns: 1fr 1fr; }
    .footer-contact-card { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .trait-list { flex-direction: column; align-items: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
    .gallery-overlay { opacity: 1; padding: 6px 8px; font-size: 10px; }
    .video-cards { grid-template-columns: 1fr; }
    .footer-contact-grid { grid-template-columns: 1fr; }
    .container { padding: 0 10px; }
    .sen-block-title { font-size: 14px; }
    .sen-block p { font-size: 11px; }
}

@media print {
    .navbar, .carousel-prev, .carousel-next, .carousel-dots, .drama-dots,
    .nav-toggle, .btn-primary, .lightbox, .footer-contact-grid { display: none !important; }
    .section { padding: 20px 0; }
}