:root {
    --bg-color: #030014;
    --bg-gradient:
        repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px),
        repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.03) 79px, rgba(255, 255, 255, 0.03) 80px),
        radial-gradient(ellipse at 50% -20%, rgba(128, 20, 78, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse at 90% 30%, rgba(166, 24, 88, 0.32) 0%, transparent 60%),
        #030014;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --nav-height: 65px;
    --container-max-width: 1200px;
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

img, video {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}

h1,
h2,
h3 {
    font-family: 'ABeeZee', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 1100px;
    height: var(--nav-height);
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 8px rgba(255, 255, 255, 0.16), 0 0 18px rgba(255, 255, 255, 0.06);
}

.nav-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    display: inline-block;
}

.logo span {
    color: var(--accent-color);
}

.logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.86rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    opacity: 0.85;
    display: inline-block;
    position: relative;
    padding: 4px 0;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #bf00ff, #7b2fff);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.is-active {
    opacity: 1;
    transform: none;
}

.cta-button.nav-cta.is-active {
    background-color: transparent;
    color: var(--text-primary);
}

.nav-links a.is-active::after {
    width: 100%;
}

.cta-button {
    background-color: var(--text-primary);
    color: var(--bg-color);
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid var(--text-primary);
    display: inline-block;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--text-primary);
    transform: scale(1.05);
}

.cta-button.large {
    padding: 1.2rem 2.8rem;
    font-size: 1rem;
}

/* Theme Toggle */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    text-align: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'ABeeZee', sans-serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-weight: 300;
    text-transform: none;
    color: #d2d2d2;
}

.hero-line {
    color: inherit;
    font-weight: 400;
    white-space: nowrap;
}

.hero-highlight {
    color: #d97aa5;
    text-shadow: 0 0 8px rgba(217, 122, 165, 0.45), 0 0 16px rgba(217, 122, 165, 0.2);
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 1.3rem;
    font-weight: 300;
}

.hero-prompt {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: #f1d4e1;
    margin: 0 auto 1.3rem;
    font-weight: 400;
}

.hero-actions .cta-button.large {
    padding: 1rem 2.3rem;
    font-size: 0.95rem;
}



/* Abstract Design Elements */
.bg-blob {
    display: none;
}

.blob-1 {
    top: -5%;
    right: 15%;
}

.blob-2 {
    bottom: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 204, 170, 0.12) 0%, transparent 70%);
}

.blob-3 {
    top: 30%;
    left: 40%;
    width: 400px;
    height: 400px;
}

/* Global Section Styling */
.section {
    padding: 6rem 0;
    position: relative;
}

.page-title-section {
    padding-top: 8.5rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
    line-height: 1;
}

.section-title-garet {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    letter-spacing: -0.01em;
    font-weight: 700;
    text-align: center;
}

.section-title span {
    color: var(--text-primary);
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 3rem;
    align-items: center;
}

.workflow-steps {
    position: relative;
    display: grid;
    gap: 1.4rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(217, 122, 165, 0.18);
    border-radius: 28px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(130, 24, 78, 0.14);
    overflow: hidden;
}

.workflow-steps::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    bottom: 2.4rem;
    left: 2.45rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(217, 122, 165, 0.65) 0%, rgba(217, 122, 165, 0.08) 100%);
}

.workflow-step {
    position: relative;
    padding: 0.35rem 0 0.35rem 3.6rem;
}

.workflow-step::before {
    content: '';
    position: absolute;
    left: 1.78rem;
    top: 0.7rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d97aa5;
    box-shadow: 0 0 0 6px rgba(217, 122, 165, 0.12), 0 0 16px rgba(217, 122, 165, 0.35);
}

.workflow-step-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    color: #d97aa5;
    font-weight: 700;
}

.workflow-step h3 {
    font-family: 'ABeeZee', sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 2rem);
    text-transform: none;
    letter-spacing: -0.02em;
    margin-bottom: 0.55rem;
    color: #ffffff;
}

.workflow-step p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 36rem;
}

.workflow-heading {
    text-align: right;
}

.workflow-layout-reverse {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.workflow-heading-left {
    text-align: left;
}

.workflow-heading-left p:last-child {
    margin-left: 0;
    margin-right: auto;
}

.workflow-heading-left p {
    margin-left: 0;
    margin-right: auto;
}

.workflow-cta-copy {
    margin-bottom: 1rem;
    color: #f7edf2;
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.45;
    max-width: none;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.workflow-cta-button {
    margin-top: 0.4rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    min-width: 220px;
    border-radius: 16px;
}

.workflow-cta-section {
    padding-top: 1rem;
}

.workflow-cta-panel {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(217, 122, 165, 0.22);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), 0 0 28px rgba(130, 24, 78, 0.12);
    position: relative;
    overflow: hidden;
}

.workflow-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(217, 122, 165, 0.16), transparent 55%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .workflow-cta-copy {
        white-space: normal;
    }
}

.workflow-kicker {
    margin-bottom: 1rem;
    color: #d97aa5;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    font-weight: 700;
}

.workflow-heading h2 {
    font-family: 'ABeeZee', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.25rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: -0.05em;
    color: #f3edf1;
    margin-bottom: 1.1rem;
}

.workflow-heading p:last-child {
    margin-left: auto;
    max-width: 23rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 0.98rem;
}

.workflow-heading.workflow-heading-left p:last-child {
    margin-left: 0;
    margin-right: auto;
    max-width: 23rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(162, 0, 255, 0.5);
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.2), inset 0 0 10px rgba(162, 0, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(162, 0, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(162, 0, 255, 0.5), inset 0 0 20px rgba(162, 0, 255, 0.3);
}

.service-icon,
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.service-card h3 {
    margin-bottom: 1rem;
    letter-spacing: 1px;
    min-height: 2.5em;
    display: flex;
    align-items: start;
    color: #ffffff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.social-mini {
    display: flex;
    gap: 1.5rem;
}

.social-mini a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.social-mini a:hover {
    color: #ffffff;
}

.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: 4px;
}

.service-card-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #f7dfe9;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.service-card-clickable:hover .service-card-hint {
    transform: translateX(4px);
}

/* Startup Launch Framework */
.launch-page {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}

.launch-page h1,
.launch-page h2,
.launch-page h3,
.launch-page p,
.launch-page span,
.launch-page a,
.launch-page li {
    font-family: Arial, Helvetica, sans-serif;
}

.launch-home-hero {
    min-height: 92vh;
}

.launch-home-style-page .hero-title,
.launch-home-style-page .hero-tagline,
.launch-home-style-page .hero-prompt,
.launch-home-style-page .workflow-step h3,
.launch-home-style-page .workflow-step p,
.launch-home-style-page .workflow-step-label,
.launch-home-style-page .workflow-heading h2,
.launch-home-style-page .workflow-heading p,
.launch-home-style-page .workflow-cta-copy {
    font-family: Arial, Helvetica, sans-serif;
}

.launch-home-style-page .hero-title {
    font-weight: 700;
    letter-spacing: -0.04em;
}

.launch-intro-section {
    padding-top: 11rem !important;
    padding-bottom: 1.5rem;
}

.launch-page-intro {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.launch-page-intro .section-title-garet {
    margin-bottom: 0.85rem;
}

.launch-page-intro p {
    color: rgba(255, 255, 255, 0.64);
    font-size: 1rem;
    line-height: 1.75;
    font-weight: 300;
}

.launch-home-style-page .section {
    padding: 1.5rem 0;
}

.launch-home-style-page .hero-tagline,
.launch-home-style-page .workflow-step p,
.launch-home-style-page .workflow-heading p {
    font-weight: 300;
}

.launch-home-style-page .hero-prompt,
.launch-home-style-page .workflow-step h3,
.launch-home-style-page .workflow-heading h2,
.launch-home-style-page .workflow-cta-copy {
    font-weight: 700;
}

.launch-home-style-page .workflow-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.launch-home-style-page .workflow-layout.workflow-layout-reverse {
    grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.launch-structured-section {
    padding-top: 1.75rem;
}

.launch-home-style-page .workflow-heading h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
    margin-bottom: 0.8rem;
}

.launch-home-style-page .workflow-heading p {
    max-width: 20rem;
    font-size: 0.94rem;
    line-height: 1.65;
}

.launch-home-style-page .workflow-steps {
    gap: 1rem;
    padding: 1.4rem 1.35rem;
    border-radius: 22px;
}

.launch-home-style-page .workflow-steps::before {
    left: 1.95rem;
    top: 1.85rem;
    bottom: 1.85rem;
}

.launch-home-style-page .workflow-step {
    padding: 0.2rem 0 0.2rem 3rem;
}

.launch-home-style-page .workflow-step::before {
    left: 1.3rem;
    top: 0.65rem;
    width: 12px;
    height: 12px;
}

.launch-home-style-page .workflow-step-label {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
}

.launch-home-style-page .workflow-step h3 {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    margin-bottom: 0.35rem;
}

.launch-home-style-page .workflow-step p {
    font-size: 0.92rem;
    line-height: 1.6;
}

.launch-home-style-page .workflow-cta-panel {
    max-width: 720px;
    padding: 1.7rem 1.4rem;
    border-radius: 22px;
}

.launch-home-style-page .workflow-cta-copy {
    font-size: clamp(1.05rem, 1.8vw, 1.5rem);
    line-height: 1.35;
    font-weight: 300;
}

.launch-home-style-page .workflow-cta-button {
    padding: 0.8rem 1.6rem;
    min-width: 190px;
    font-size: 0.88rem;
}

.launch-message-section {
    padding-top: 1rem;
}

.launch-message-panel {
    max-width: 760px;
}





/* Work Section */
.work-category-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto 3rem;
}

.work-category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 12.5rem;
    padding: 1rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.work-category-pill.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.42);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.work-category-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.work-content {
    min-height: 2rem;
    transition: opacity 0.25s ease;
}

.work-content.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.work-block {
    scroll-margin-top: 110px;
}

.work-block + .work-block {
    margin-top: 5rem;
}

.work-block-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.6rem;
}

.work-block-title {
    margin: 0;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    letter-spacing: 0.04em;
}

.work-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
    margin-top: 2rem;
}

.work-choice-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 260px;
    padding: 1.8rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.work-choice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(162, 0, 255, 0.38);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.work-choice-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(162, 0, 255, 0.24), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-choice-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.work-choice-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

.work-choice-link {
    margin-top: auto;
    color: #f1d4e1;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-intro {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    text-align: center;
}

.portfolio-intro p {
    color: var(--text-secondary);
}

.portfolio-stack {
    display: grid;
    gap: 1.35rem;
}

.portfolio-card {
    padding: 1.6rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.portfolio-card h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
}

.portfolio-card p {
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
}

.portfolio-card ul {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.portfolio-card li {
    color: rgba(255, 255, 255, 0.82);
    padding-left: 1rem;
    position: relative;
}

.portfolio-card li::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: rgba(217, 122, 165, 0.85);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 3rem;
}

.work-item {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.work-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.vimeo-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    filter: grayscale(0.5) contrast(1.1);
    transition: var(--transition-smooth);
}

.work-item:hover .vimeo-wrapper {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05);
}

.vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graphics-showcase {
    position: relative;
}

.graphics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.35rem;
}

.graphics-card {
    margin: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.graphics-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
}

.graphics-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.graphics-card-wide {
    grid-column: span 2;
    max-height: 520px;
}

.graphics-card-wide img {
    object-fit: cover;
    object-position: center top;
}

.work-placeholder {
    padding: 1.3rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.work-placeholder p {
    margin: 0;
}

/* Courses */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 2rem;
}

.course-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(162, 0, 255, 0.5);
    box-shadow: 0 0 15px rgba(162, 0, 255, 0.2), inset 0 0 10px rgba(162, 0, 255, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.course-card:not(.disabled) {
    cursor: pointer;
}

.share-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
    padding: 0;
}

.share-btn:hover {
    transform: scale(1.2);
    background: transparent;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(162, 0, 255, 0.5);
}

.course-cta {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Push button to right */
    width: 100%;
}

.course-card:hover:not(.disabled) {
    transform: translateY(-10px);
    border-color: rgba(162, 0, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 30px rgba(162, 0, 255, 0.5), inset 0 0 20px rgba(162, 0, 255, 0.3);
}

.course-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.course-badge-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.course-badge-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    height: 60px;
    /* height to contain the image */
    display: flex;
    align-items: center;
}

.course-icon img {
    height: 100%;
    width: auto;
    display: block;
}

.course-card h3 {
    font-size: 1.6rem;
    /* Decreased from 2rem */
    margin-bottom: 1rem;
    line-height: 1.3;
    min-height: 2.6em;
    /* Adjusted for new font size to accommodate ~2 lines */
    display: flex;
    align-items: start;
}

.course-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.course-cta {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-card.disabled {
    opacity: 0.5;
    cursor: default;
}



/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
}

.step-num {
    font-family: 'ABeeZee', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-secondary);
    max-width: 500px;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
}

.footer-main-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    color: #000;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 6px;
    border: none;
}

.footer-socials a:hover {
    background: #e0e0e0;
    color: #000;
    transform: translateY(-3px) scale(1.1);
}

.footer-right-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 300;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.18);
}

.footer-right-links a:hover {
    color: #ffffff;
    transform: translateX(-2px);
}

.footer-right-links a:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-main-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-right-links {
        text-align: center;
    }
}

/* Contact / Question Page */
.contact-page .section {
    padding: 8.5rem 0 4rem;
}

.contact-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.4rem;
}

.contact-intro p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.booking-page .contact-intro {
    margin: 0 auto 0.75rem;
}

.booking-page-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.7rem, 3.2vw, 2.45rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-layout {
    max-width: 760px;
    margin: 0 auto;
}

.contact-info-column,
.contact-form-column {
    display: grid;
    gap: 1.5rem;
}

.contact-card,
.contact-form-shell {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.06);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.2rem;
}

.contact-card-value {
    display: block;
    font-size: 1.02rem;
    color: var(--text-primary);
    word-break: break-word;
}

.contact-form-shell {
    padding: 1.5rem;
}

.question-form {
    display: grid;
    gap: 1rem;
}

.question-form input,
.question-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 1rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.question-form input::placeholder,
.question-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.question-form input:focus,
.question-form textarea:focus {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.question-form textarea {
    min-height: 160px;
    resize: vertical;
}

.question-submit {
    justify-self: start;
    min-width: 220px;
    border-radius: 14px;
    padding: 1rem 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.question-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.booking-layout {
    max-width: 760px;
    margin: 0 auto;
}

.booking-page-form {
    display: grid;
    gap: 1.25rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.booking-page-form .form-group {
    margin-bottom: 0;
}

.booking-page-form .form-group label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.booking-page-form .form-group input,
.booking-page-form .form-group textarea,
.booking-page-form .form-group select {
    width: 100%;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: var(--text-primary);
    padding: 1rem 1.1rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.booking-page-form .form-group input::placeholder,
.booking-page-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.booking-page-form .form-group input:focus,
.booking-page-form .form-group textarea:focus,
.booking-page-form .form-group select:focus {
    outline: none;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.booking-page-form .form-group select {
    color: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.booking-page-form .form-group select option {
    color: #000;
    background: #fff;
}

.booking-picker-field {
    display: grid;
    gap: 0.7rem;
    min-width: 0;
}

.booking-picker-card {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border: 1px solid rgba(217, 122, 165, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 36px rgba(20, 4, 18, 0.16);
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.booking-picker-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.95rem;
}

.booking-picker-kicker {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.48);
}

.booking-picker-value {
    font-size: 0.92rem;
    color: #f3dce6;
    font-weight: 700;
    text-align: right;
}

.booking-date-options {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
    width: 100%;
    min-width: 0;
}

.booking-date-button,
.booking-slot-button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: #fff;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.booking-date-button {
    padding: 0.8rem 0.55rem;
    border-radius: 16px;
    display: grid;
    justify-items: center;
    gap: 0.22rem;
}

.booking-date-weekday {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.55);
}

.booking-date-day {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.booking-date-month {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.68);
}

.booking-time-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    width: 100%;
    min-width: 0;
}

.booking-slot-button {
    width: 100%;
    min-width: 0;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.booking-date-button:hover,
.booking-slot-button:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 122, 165, 0.45);
    background: rgba(255, 255, 255, 0.065);
}

.booking-date-button.active,
.booking-slot-button.active {
    background: linear-gradient(135deg, rgba(217, 122, 165, 0.28) 0%, rgba(123, 47, 255, 0.2) 100%);
    border-color: rgba(217, 122, 165, 0.72);
    box-shadow: 0 0 0 3px rgba(217, 122, 165, 0.12);
}

.booking-page-form .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.booking-notes-group {
    grid-column: 1 / -1;
}

.booking-date-group {
    grid-column: 2;
    grid-row: 2;
}

.booking-time-group {
    grid-column: 1;
    grid-row: 3;
    margin-top: -7.5rem;
}

.booking-success-message {
    border-radius: 18px;
    background: transparent;
    padding: 3.5rem 2rem;
}

.enroll-page-payment-box {
    grid-column: 1 / -1;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page .section {
        padding: 7.5rem 0 3rem;
    }

    .contact-form-shell,
    .contact-card {
        padding: 1.15rem;
    }

    .question-submit {
        width: 100%;
        justify-self: stretch;
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-notes-group {
        grid-column: auto;
    }

    .booking-date-group,
    .booking-time-group {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }

    .booking-page-form .form-group:not(.booking-date-group):not(.booking-time-group):not(.booking-notes-group) {
        order: 0;
    }

    .booking-page-form .booking-date-group {
        order: 1;
    }

    .booking-page-form .booking-time-group {
        order: 2;
    }

    .booking-page-form .booking-notes-group {
        order: 3;
    }

    .booking-date-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .booking-picker-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-picker-value {
        text-align: left;
    }

    .booking-date-options,
    .booking-time-options {
        grid-template-columns: 1fr 1fr;
    }

    .booking-time-options {
        grid-template-columns: 1fr;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    min-height: 450px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.6s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.03);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    background: white;
    color: black;
}

.modal-body-scroll {
    padding: 1rem 3rem 3rem;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-header {
    margin-bottom: 2.5rem;
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-header h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.modal-header h2 span {
    color: var(--text-primary);
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.schedule-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.schedule-list li {
    font-size: 1.15rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.schedule-list li i {
    color: var(--text-primary);
    width: 20px;
}

.schedule-list li span {
    color: var(--text-primary);
    font-weight: 700;
    white-space: nowrap;
}

.plan-list {
    list-style: none;
}

.plan-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #ccc;
}

.plan-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

.modal-footer {
    padding: 2rem 3rem;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: center;
}

.enroll-btn {
    width: 100%;
    text-align: center;
    padding: 1.2rem;
    background: var(--text-primary);
    color: var(--bg-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.enroll-btn:hover {
    background: transparent;
    color: white;
}

/* Custom Modal Scrollbar */
.modal-body-scroll::-webkit-scrollbar {
    width: 5px;
}

.modal-body-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar {
        width: 85%;
    }
}

@media (max-width: 992px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .graphics-card-wide {
        grid-column: span 1;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .work-category-strip {
        gap: 0.7rem;
        margin: 1.35rem 0 2.25rem;
    }

    .work-category-pill {
        min-width: 0;
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.82rem;
        letter-spacing: 0.04em;
    }

    .work-block + .work-block {
        margin-top: 3.5rem;
    }

    .graphics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .work-choice-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 6rem 0;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .step-num {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 3rem);
    }

    .section {
        padding: 4rem 0;
    }

    .bg-blob {
        width: 150px;
        height: 150px;
    }

    .course-card,
    .process-step {
        padding: 1.5rem;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    text-align: left;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Image Carousel Section */
.carousel-section {
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    /* transition: transform 0.5s ease-in-out; REMOVED for JS animation */
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 auto;
    width: 180px;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .carousel-slide {
        width: 230px;
    }
}

@media (min-width: 1200px) {
    .carousel-slide {
        width: 320px;
    }
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

@media (max-width: 1300px) {
    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

/* Enrollment Modal Styles */
.enroll-modal-content {
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 850px;
    width: 95%;
    padding: 0;
    overflow: visible;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.required {
    color: #ff4d4d;
    margin-left: 2px;
}

.enroll-modal-content .modal-header {
    background: transparent;
    padding: 1.25rem 1.5rem 0.25rem;
    margin-bottom: 0;
    border-bottom: none;
    text-align: center;
}

.enroll-modal-content .modal-header h2 {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: none;
}

.enroll-course-name {
    color: var(--text-primary);
    /* Gold/Orange */
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.enroll-form {
    padding: 1rem 2.5rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2.5rem;
}

.form-group {
    margin-bottom: 0.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.form-group select {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1em;
}

.form-group select option {
    color: #000;
    background: #fff;
}


.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Date and Time Color Correction */
input[type="date"] {
    color-scheme: light;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.submit-btn {
    width: auto;
    min-width: 200px;
    margin: 1rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.7rem 2.5rem;
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

@media (max-width: 600px) {
    .enroll-form {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        grid-column: span 1;
    }
}

/* Payment Info Box */
.payment-info-box {
    grid-column: span 2;
    margin-bottom: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.payment-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.payment-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.payment-number {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'ABeeZee', sans-serif;
    color: #fff;
    letter-spacing: 1px;
}

.payment-copy-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.payment-copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

@media (max-width: 600px) {
    .payment-info-box {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
    }
    .payment-copy-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enrollment Success Message */
.enroll-success-message {
    padding: 4rem 2rem;
    text-align: center;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    animation: fadeInSuccess 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.success-icon {
    font-size: 4.5rem;
    color: #4CAF50;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 15px rgba(76, 175, 80, 0.3));
}

.enroll-success-message h3 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
}

.enroll-success-message p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.enroll-success-message .cta-button {
    padding: 1rem 3rem;
    font-size: 1rem;
    display: inline-block;
    cursor: pointer;
    border: 1px solid var(--text-primary);
}

@keyframes fadeInSuccess {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
    }
}

/* Remove scroll for booking modal specifically */
.enroll-modal-content .modal-body-scroll {
    overflow-y: auto;
    flex: 1;
    padding: 0;
}

/* Booking modal compact form overrides (does NOT affect course enrollment form) */
#bookingModal .enroll-form {
    padding: 0.75rem 2rem 1rem;
    gap: 0.75rem 2rem;
}

#bookingModal .form-group {
    margin-bottom: 0;
}

#bookingModal .form-group label {
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
}

#bookingModal .form-group input,
#bookingModal .form-group textarea,
#bookingModal .form-group select {
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
}

#bookingModal .form-group textarea {
    min-height: 60px;
}

#bookingModal .submit-btn {
    margin: 0.5rem auto 0;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 0.5rem;
    padding: 5px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .navbar {
        width: 92%;
        top: 15px;
        padding: 0 1rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 110%;
        left: 0;
        right: auto;
        width: 100%;
        height: auto;
        background: rgba(3, 0, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease;
        z-index: 2000;
        gap: 1.5rem;
        padding: 2rem 0;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .nav-links li {
        width: 100%;
        padding: 0 1.25rem;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 300;
        opacity: 0.8;
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.35rem 0;
    }

    .nav-links a.is-active {
        padding: 0.35rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .nav-cta {
        display: none;
        /* Hide original CTA on mobile */
    }

    .mobile-cta-link {
        display: inline-block;
        padding: 0.8rem 2rem;
        background: var(--text-primary);
        color: var(--bg-color) !important;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem !important;
        opacity: 1 !important;
        margin-top: 0.5rem;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding-top: 110px !important;
        padding-bottom: 2.5rem;
    }

    .hero-content {
        width: min(100%, 36rem);
    }

    .hero-line {
        white-space: normal;
    }

    main section:first-of-type,
    .course-detail-section {
        padding-top: 110px !important;
    }

    .hero-title {
        font-size: clamp(1.85rem, 7vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }

    .hero-prompt {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        padding: 0 1rem;
    }

    .hero-actions {
        width: 100%;
        padding: 0 1rem;
    }

    .hero-actions .cta-button.large {
        width: 100%;
        max-width: 20rem;
    }

    .section {
        padding: 3rem 0;
    }

    .page-title-section {
        padding-top: 7.5rem;
    }

    .section-title,
    .section-title-garet {
        margin-bottom: 1.25rem;
        text-align: center;
    }

    .carousel-section {
        padding: 2rem 0 3rem;
    }

    .carousel-wrapper {
        padding: 0 0.25rem;
    }

    .carousel-track {
        gap: 12px;
    }

    .carousel-slide {
        width: min(78vw, 240px);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .workflow-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .launch-home-hero {
        min-height: auto;
    }

    .launch-home-style-page .section {
        padding: 1.5rem 0;
    }

    .launch-intro-section {
        padding-top: 140px !important;
        padding-bottom: 1rem;
    }

    .launch-home-style-page .workflow-layout {
        gap: 1.25rem;
    }

    .launch-home-style-page .workflow-heading h2 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .launch-home-style-page .workflow-heading p {
        max-width: none;
        font-size: 0.92rem;
    }

    .launch-home-style-page .workflow-steps {
        padding: 1.1rem;
    }

    .launch-home-style-page .workflow-steps::before {
        left: 1.55rem;
        top: 1.5rem;
        bottom: 1.5rem;
    }

    .launch-home-style-page .workflow-step {
        padding-left: 2.5rem;
    }

    .launch-home-style-page .workflow-step::before {
        left: 0.95rem;
    }

    .launch-home-style-page .workflow-step h3 {
        font-size: 1.1rem;
    }

    .launch-home-style-page .workflow-step p {
        font-size: 0.9rem;
    }

    .launch-home-style-page .workflow-cta-panel {
        padding: 1.35rem 1rem;
        border-radius: 18px;
    }

    .launch-home-style-page .workflow-cta-button {
        width: 100%;
        min-width: 0;
    }

    .workflow-heading {
        order: -1;
        text-align: left;
    }

    .workflow-heading h2 {
        font-size: clamp(2.2rem, 11vw, 3.4rem);
    }

    .workflow-heading p:last-child {
        margin-left: 0;
        max-width: none;
    }

    .workflow-steps {
        padding: 1.35rem;
        border-radius: 22px;
    }

    .workflow-steps::before {
        left: 1.75rem;
        top: 2rem;
        bottom: 2rem;
    }

    .workflow-step {
        padding-left: 2.9rem;
    }

    .workflow-step::before {
        left: 1.12rem;
    }

    .workflow-step h3 {
        font-size: 1.25rem;
    }

    .workflow-cta-panel {
        padding: 1.75rem 1.25rem;
        border-radius: 22px;
    }

    .workflow-cta-button {
        width: 100%;
        min-width: 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
    }

    .features-grid,
    .services-grid,
    .work-grid,
    .courses-grid {
        gap: 1rem;
    }

    .feature-card,
    .course-card,
    .service-card {
        padding: 1.5rem 1.1rem;
    }

    .feature-card h3,
    .service-card h3,
    .course-card h3 {
        min-height: 0;
    }

    .course-card p,
    .service-card p,
    .feature-card p {
        margin-bottom: 1.25rem;
    }

    .course-badge,
    .course-badge-btn {
        top: 1rem;
        right: 1rem;
    }

    .course-icon {
        margin-bottom: 1.25rem;
    }

    .course-cta {
        font-size: 1.1rem;
        align-items: center;
    }

    .work-item {
        border-radius: 16px;
    }

    .footer {
        padding: 2.5rem 0 2rem;
    }

    .footer-main-row {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-right-links {
        width: 100%;
        text-align: center;
    }

    .contact-intro {
        margin-bottom: 1.1rem;
    }

    .contact-intro p {
        font-size: 0.96rem;
    }

    .contact-form-shell,
    .contact-card {
        padding: 1.15rem;
    }

    .contact-card {
        align-items: flex-start;
    }

    .question-form input,
    .question-form textarea,
    .booking-page-form .form-group input,
    .booking-page-form .form-group textarea,
    .booking-page-form .form-group select {
        font-size: 16px;
    }

    /* Mobile Booking Form Improvements */
    .modal-content {
        min-height: auto;
        /* Let it shrink on small devices */
        max-height: 95vh;
        width: 95%;
    }

    .enroll-modal-content {
        width: 95%;
        margin: 0 auto;
        max-height: 95vh;
        border-radius: 16px;
    }

    .enroll-modal-content .modal-header {
        padding: 1.5rem 2rem 0.25rem 1rem;
        /* Reduced right padding slightly */
    }

    .enroll-modal-content .modal-header h2 {
        font-size: 1rem;
        padding-right: 1.5rem;
    }

    .modal-body-scroll {
        padding: 0.75rem 1rem 1.25rem;
    }

    .modal-header {
        margin-bottom: 1.25rem;
    }

    .modal-header h2 {
        font-size: 1.15rem;
    }

    .modal-section {
        margin-bottom: 1.5rem;
    }

    .schedule-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .schedule-list li {
        align-items: flex-start;
        font-size: 1rem;
    }

    .enroll-form,
    #bookingModal .enroll-form {
        grid-template-columns: 1fr;
        /* Force fields to stack */
        gap: 0.8rem;
        padding: 0.5rem 1rem 1.5rem;
    }

    .form-group[style*="grid-column"] {
        grid-column: 1 / -1 !important;
        /* Override inline styles if any */
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem 1rem;
        /* Better touch targets */
        font-size: 16px;
        /* Prevents iOS auto-zoom */
    }

    .form-group select {
        background-position: right 1rem center;
        /* Align arrow with date picker */
    }

    #bookingModal .form-group input,
    #bookingModal .form-group textarea,
    #bookingModal .form-group select {
        padding: 0.7rem 1rem;
        font-size: 16px;
        /* Override compact style for mobile */
    }

    .submit-btn,
    #bookingModal .submit-btn {
        width: 100%;
        min-width: unset;
        grid-column: 1 / -1;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        width: calc(100% - 1rem);
        top: 0.5rem;
        border-radius: 14px;
    }

    .logo img {
        height: 34px !important;
    }

    .page-title-section {
        padding-top: 7rem;
    }

    .hero-tagline,
    .hero-prompt {
        padding: 0;
    }

    .feature-card,
    .service-card {
        padding: 1.35rem 1rem;
    }

    .carousel-slide {
        width: min(82vw, 220px);
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .workflow-steps {
        padding: 1.1rem;
    }

    .workflow-step {
        padding-left: 2.5rem;
    }

    .workflow-step::before {
        left: 0.95rem;
    }

    .workflow-steps::before {
        left: 1.5rem;
    }

    .contact-card {
        gap: 0.85rem;
    }

    .contact-card-icon {
        width: 46px;
        height: 46px;
    }

    .booking-picker-card {
        padding: 0.85rem;
        border-radius: 16px;
    }

    .booking-date-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Hide mobile-only links on desktop */
@media (min-width: 769px) {
    .mobile-cta-link {
        display: none;
    }
}
