/* ============================================
   MPA COURSE PAGE STYLES
   ============================================ */

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

:root {
    --orange: #ff6b35;
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
    --dark-gray: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* ============================================
   MENU OVERLAY & SIDEBAR - EXACT FROM INDEX.HTML
   ============================================ */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-sidebar {
    position: fixed;
    top: 0;
    left: -600px;
    width: 600px;
    height: 100vh;
    background: #1a1a1a;
    z-index: 1000;
    padding: 40px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: none;
}

.menu-sidebar.active {
    left: 0;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.menu-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg);
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 1px;
}

.menu-logo-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-nav-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-nav-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--white);
    transition: left 0.3s ease;
    z-index: 2;
}

.menu-nav-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--orange);
    transition: width 0.4s ease;
    z-index: -1;
}

.menu-nav-item:hover {
    color: #000000;
    padding-left: 30px;
}

.menu-nav-item:hover::before {
    left: 10px;
    background: #000000;
}

.menu-nav-item:hover::after {
    width: 100%;
}

.menu-nav-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-nav-item:nth-child(1)::after { background: #FFD700; }
.menu-nav-item:nth-child(2)::after { background: #00D9FF; }
.menu-nav-item:nth-child(3)::after { background: #00FF88; }
.menu-nav-item:nth-child(4)::after { background: #FF10F0; }
.menu-nav-item:nth-child(5)::after { background: #FF6B35; }
.menu-nav-item:nth-child(6)::after { background: #8B5CF6; }

.menu-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-contact {
    margin-bottom: 20px;
}

.menu-contact-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.menu-contact-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 400;
}

@media (max-width: 768px) {
    .menu-sidebar {
        width: 100%;
        left: -100%;
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.logo {
    position: fixed;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 100;
    color: var(--white);
    text-decoration: none;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
}

.menu-btn {
    position: fixed;
    top: 30px;
    right: 40px;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
}

.menu-btn:hover {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */

.course-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 140px 40px 80px;
    position: relative;
    background: 
        radial-gradient(circle at 15% 30%, rgba(255, 107, 53, 0.06), transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(139, 92, 246, 0.05), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(0, 217, 255, 0.04), transparent 40%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
    font-weight: 300;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

.course-code {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 900;
}

.course-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 7vw, 85px);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 900;
}

.course-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 900px;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.course-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
}

.meta-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.meta-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.meta-item:hover::before {
    transform: scaleX(1);
}

/* Colorful meta items */
.meta-item:nth-child(1)::before {
    background: #ff6b35; /* Orange */
}

.meta-item:nth-child(2)::before {
    background: #00d9ff; /* Cyan */
}

.meta-item:nth-child(3)::before {
    background: #8b5cf6; /* Purple */
}

.meta-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

.meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Colorful meta labels */
.meta-item:nth-child(1) .meta-label {
    color: #ff6b35; /* Orange */
}

.meta-item:nth-child(2) .meta-label {
    color: #00d9ff; /* Cyan */
}

.meta-item:nth-child(3) .meta-label {
    color: #8b5cf6; /* Purple */
}

.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   SECTION STYLING
   ============================================ */

.section-wrapper {
    width: 100%;
}

.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-light {
    background: rgba(26, 26, 26, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    margin-bottom: 60px;
}

.section-number {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Colorful section numbers */
.section:nth-of-type(1) .section-number {
    color: #ff6b35; /* Orange */
}

.section:nth-of-type(2) .section-number {
    color: #00d9ff; /* Cyan */
}

.section:nth-of-type(3) .section-number {
    color: #8b5cf6; /* Purple */
}

.section:nth-of-type(4) .section-number {
    color: #00ff88; /* Green */
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 900;
}

.section-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 800px;
    font-weight: 300;
}

/* ============================================
   CURRICULUM SECTION
   ============================================ */

.curriculum-grid {
    display: grid;
    gap: 30px;
}

.semester-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.semester-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Colorful semester borders */
.semester-card:nth-child(1)::before {
    background: #ff6b35; /* Orange */
}

.semester-card:nth-child(2)::before {
    background: #00d9ff; /* Cyan */
}

.semester-card:nth-child(3)::before {
    background: #8b5cf6; /* Purple */
}

.semester-card:nth-child(4)::before {
    background: #00ff88; /* Green */
}

.semester-card:nth-child(5)::before {
    background: #ffd700; /* Gold */
}

.semester-card:hover::before {
    transform: scaleX(1);
}

.semester-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.semester-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.semester-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
    font-weight: 900;
    opacity: 0.08;
}

/* Colorful semester numbers */
.semester-card:nth-child(1) .semester-number {
    color: #ff6b35; /* Orange */
}

.semester-card:nth-child(2) .semester-number {
    color: #00d9ff; /* Cyan */
}

.semester-card:nth-child(3) .semester-number {
    color: #8b5cf6; /* Purple */
}

.semester-card:nth-child(4) .semester-number {
    color: #00ff88; /* Green */
}

.semester-card:nth-child(5) .semester-number {
    color: #ffd700; /* Gold */
}

.semester-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    font-weight: 900;
}

/* Colorful semester titles */
.semester-card:nth-child(1) .semester-title {
    color: #ff6b35; /* Orange */
}

.semester-card:nth-child(2) .semester-title {
    color: #00d9ff; /* Cyan */
}

.semester-card:nth-child(3) .semester-title {
    color: #8b5cf6; /* Purple */
}

.semester-card:nth-child(4) .semester-title {
    color: #00ff88; /* Green */
}

.semester-card:nth-child(5) .semester-title {
    color: #ffd700; /* Gold */
}

.semester-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.semester-content {
    padding: 30px;
}

.topic-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.topic-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 400;
    border-left: 2px solid;
}

/* Colorful topic borders matching semester */
.semester-card:nth-child(1) .topic-list li {
    border-left-color: #ff6b35; /* Orange */
}

.semester-card:nth-child(2) .topic-list li {
    border-left-color: #00d9ff; /* Cyan */
}

.semester-card:nth-child(3) .topic-list li {
    border-left-color: #8b5cf6; /* Purple */
}

.semester-card:nth-child(4) .topic-list li {
    border-left-color: #00ff88; /* Green */
}

.semester-card:nth-child(5) .topic-list li {
    border-left-color: #ffd700; /* Gold */
}

.topic-list li:hover {
    transform: translateX(5px);
    color: var(--white);
}

/* Colorful topic hover backgrounds */
.semester-card:nth-child(1) .topic-list li:hover {
    background: rgba(255, 107, 53, 0.05);
}

.semester-card:nth-child(2) .topic-list li:hover {
    background: rgba(0, 217, 255, 0.05);
}

.semester-card:nth-child(3) .topic-list li:hover {
    background: rgba(139, 92, 246, 0.05);
}

.semester-card:nth-child(4) .topic-list li:hover {
    background: rgba(0, 255, 136, 0.05);
}

.semester-card:nth-child(5) .topic-list li:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* ============================================
   CAREER OPPORTUNITIES
   ============================================ */

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.career-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Alternating career card colors */
.career-card:nth-child(4n+1)::before {
    background: #ff6b35; /* Orange */
}

.career-card:nth-child(4n+2)::before {
    background: #00d9ff; /* Cyan */
}

.career-card:nth-child(4n+3)::before {
    background: #8b5cf6; /* Purple */
}

.career-card:nth-child(4n+4)::before {
    background: #00ff88; /* Green */
}

.career-card:hover::before {
    transform: scaleX(1);
}

.career-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Colorful career hover backgrounds */
.career-card:nth-child(4n+1):hover {
    background: rgba(255, 107, 53, 0.05);
}

.career-card:nth-child(4n+2):hover {
    background: rgba(0, 217, 255, 0.05);
}

.career-card:nth-child(4n+3):hover {
    background: rgba(139, 92, 246, 0.05);
}

.career-card:nth-child(4n+4):hover {
    background: rgba(0, 255, 136, 0.05);
}

.career-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    border: 1px solid;
}

/* Colorful career icons */
.career-card:nth-child(4n+1) .career-icon {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    color: #ff6b35;
}

.career-card:nth-child(4n+2) .career-icon {
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
    color: #00d9ff;
}

.career-card:nth-child(4n+3) .career-icon {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.career-card:nth-child(4n+4) .career-icon {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.career-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
}

/* ============================================
   SOFTWARE SECTION
   ============================================ */

.software-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.software-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

/* Alternating software item hover colors */
.software-item:nth-child(6n+1):hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
}

.software-item:nth-child(6n+2):hover {
    background: rgba(0, 217, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
}

.software-item:nth-child(6n+3):hover {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.software-item:nth-child(6n+4):hover {
    background: rgba(0, 255, 136, 0.08);
    border-color: rgba(0, 255, 136, 0.3);
}

.software-item:nth-child(6n+5):hover {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
}

.software-item:nth-child(6n+6):hover {
    background: rgba(255, 16, 240, 0.08);
    border-color: rgba(255, 16, 240, 0.3);
}

.software-item:hover {
    transform: translateY(-3px);
}

.software-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* ============================================
   CERTIFICATION SECTION
   ============================================ */

.certification-box {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 60px 50px;
    margin-top: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certification-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #8b5cf6; /* Purple */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.certification-box:hover::before {
    transform: scaleX(1);
}

.certification-box:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.certification-icon-wrapper {
    margin-bottom: 30px;
}

.certification-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    letter-spacing: 2px;
    color: #8b5cf6;
    font-weight: 900;
}

.certification-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 900;
}

.certification-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.04), transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.03), transparent 50%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-label {
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 65px);
    letter-spacing: 2px;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 18px 50px;
    background: var(--orange);
    border: none;
    border-radius: 30px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #ff8c5a;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 50px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background: transparent;
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .logo {
        left: 20px;
        top: 20px;
        font-size: 16px;
    }

    .logo-dot {
        width: 10px;
        height: 10px;
    }

    .menu-btn {
        right: 20px;
        top: 20px;
        padding: 10px 18px;
        font-size: 11px;
    }

    .course-hero {
        padding: 120px 20px 60px;
    }

    .course-title {
        font-size: 45px;
    }

    .section {
        padding: 60px 20px;
    }

    .course-meta-grid {
        grid-template-columns: 1fr;
    }

    .topic-list {
        grid-template-columns: 1fr;
    }

    .career-grid {
        grid-template-columns: 1fr;
    }

    .software-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .certification-box {
        padding: 40px 30px;
    }

    .cta-section {
        padding: 80px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary {
        width: 100%;
    }
}
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.menu-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}


/* ============================================
   FOOTER - RELIANCE ANIMATION ACADEMY
   ============================================ */
.site-footer {
    position: relative;
    z-index: 2;
}

/* CTA STRIP */
.footer-cta-strip {
    background: var(--orange);
    padding: 48px 80px;
}

.footer-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-bottom: 8px;
}

.footer-cta-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 400;
    color: var(--black);
    letter-spacing: 1px;
    line-height: 1;
}

.footer-cta-heading span {
    color: var(--white);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    cursor: none;
}

.footer-cta-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-cta-btn svg {
    transition: transform 0.2s;
}

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

/* MAIN FOOTER BODY */
.footer-body {
    background: #f5f4f0;
    padding: 80px 80px 60px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 14vw, 180px);
    letter-spacing: 10px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0,0,0,0.06);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* BRAND COL */
.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 28px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: #aaa;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: none;
}

.footer-social-link:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: rgba(255,107,53,0.06);
}

/* NAV COLS */
.footer-col-heading {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list li a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
    cursor: none;
}

.footer-nav-list li a:hover {
    color: #111;
}

.footer-hours {
    font-size: 12px;
    color: #bbb;
    margin-top: 4px;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 18px;
}

.footer-location-name {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.footer-location-detail {
    font-size: 11px;
    color: #444;
    letter-spacing: 0.3px;
    line-height: 1.7;
}

.footer-map-link {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--orange);
    text-decoration: none;
    margin-top: 6px;
    transition: opacity 0.2s;
}

.footer-map-link:hover {
    opacity: 0.7;
}

/* BOTTOM BAR */
.footer-bottom-bar {
    background: #eeede9;
    border-top: 1px solid #e0dfd9;
    padding: 20px 80px;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-copy {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

.footer-bottom-divider {
    flex: 1;
    height: 1px;
    background: #ddd;
}

.footer-made {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 1px;
}

/* RESPONSIVE */

/* Tablet — 1024px */
@media (max-width: 1024px) {
    .footer-cta-strip { padding: 44px 40px; }
    .footer-cta-heading { font-size: 36px; }
    .footer-body { padding: 60px 40px; }
    .footer-bottom-bar { padding: 20px 40px; }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .footer-brand-col { grid-column: span 2; }
}

/* Large mobile — 600px */
@media (max-width: 600px) {
    /* CTA strip */
    .footer-cta-strip { padding: 32px 20px; }
    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .footer-cta-label { font-size: 9px; }
    .footer-cta-heading { font-size: 28px; }
    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    /* Footer body */
    .footer-body { padding: 44px 20px 36px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-brand-col { grid-column: span 1; }
    .footer-logo { width: 130px; }
    .footer-tagline { max-width: 100%; }

    /* Nav cols — tighter spacing */
    .footer-col-heading { margin-bottom: 16px; }
    .footer-nav-list { gap: 10px; }
    .footer-nav-list li a,
    .footer-location-name { font-size: 14px; }

    /* Socials */
    .footer-socials { gap: 8px; }
    .footer-social-link { width: 40px; height: 40px; }

    /* Watermark */
    .footer-watermark { font-size: 48px; letter-spacing: 4px; }

    /* Bottom bar */
    .footer-bottom-bar { padding: 16px 20px; }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .footer-bottom-divider { display: none; }
    .footer-copy,
    .footer-made { font-size: 11px; letter-spacing: 0.5px; }
}