/* ============================================
   RELIANCE ANIMATION ACADEMY - STYLESHEET (MOBILE FIXED)
   ============================================ */

/* ============================================
   FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ============================================
   BASE & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #ff6b35;
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
    --dark-bg: #0a0a0a;
    --light-bg: #f5f5f5;
}

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

/* ============================================
   OPENING SCREEN
   ============================================ */
#opening-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.opening-header {
    position: absolute;
    top: 40px;
    left: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
}

.opening-header div:first-child {
    margin-bottom: 4px;
}

.opening-footer {
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
    text-align: right;
    opacity: 0;
}

.opening-footer div {
    margin-bottom: 4px;
}

.cursor {
    display: inline-block;
    width: 8px;
    height: 12px;
    background: var(--orange);
    margin-left: 4px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.opening-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(60px, 12vw, 160px);
    font-weight: 900;
    letter-spacing: -2px;
    text-align: center;
    line-height: 0.9;
    opacity: 0;
    text-transform: uppercase;
}

.opening-divider {
    width: 80%;
    height: 1px;
    background: var(--orange);
    margin: 40px 0;
    opacity: 0;
    transform: scaleX(0);
}

.opening-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 400;
    letter-spacing: 5px;
    opacity: 0;
    text-transform: uppercase;
}

.opening-number {
    position: absolute;
    bottom: 50px;
    right: 50px;
    font-size: clamp(80px, 10vw, 100px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.10);
    opacity: 0;
}

.skip-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 1001;
    text-transform: uppercase;
}

.skip-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* ============================================
   CURTAIN ANIMATION
   ============================================ */
.curtain {
    position: fixed;
    width: 100vw;
    height: 50vh;
    background: #0a0a0a;
    z-index: 999;
}

.curtain-top {
    top: 0;
    left: 0;
}

.curtain-bottom {
    bottom: 0;
    left: 0;
}

.orange-dot {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    top: 120px;
    right: 80px;
    z-index: 998;
    opacity: 0;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
#main-content {
    min-height: 100vh;
    opacity: 0;
    position: relative;
}

/* ============================================
   VIDEO BACKGROUND
   ============================================ */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* ============================================
   HEADER
   ============================================ */
.logo {
    position: fixed;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    z-index: 100;
    opacity: 0;
}

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

.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: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
}

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

/* ============================================
   MENU OVERLAY & SIDEBAR
   ============================================ */
.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-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.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;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 40px;
}

.hero-blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.hero-tagline {
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 40px;
    font-weight: 600;
    opacity: 0;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.hero-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(70px, 10vw, 130px);
    font-weight: 400;
    line-height: 0.85;
    text-align: center;
    margin-bottom: 10px;
    opacity: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
}

.hero-culture {
    font-family: 'Anton', sans-serif;
    font-size: clamp(70px, 10vw, 130px);
    font-weight: 400;
    line-height: 0.85;
    color: var(--white);
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.hero-subtitle {
    font-size: 13px;
    font-style: italic;
    color: rgba(255, 107, 53, 0.9);
    letter-spacing: 3px;
    opacity: 0;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

.polaroid {
    position: absolute;
    opacity: 0;
}

.polaroid img {
    width: auto;
    height: auto;
    max-width: 280px;
    max-height: 250px;
    object-fit: contain;
    border: 15px solid white;
    border-bottom: 45px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: block;
}

.polaroid-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-5deg);
}

.polaroid-2 {
    bottom: 5%;
    left: 3%;
    transform: rotate(3deg);
}

.polaroid-3 {
    top: 12%;
    right: 6%;
    transform: rotate(5deg);
}

.polaroid-4 {
    bottom: 8%;
    right: 2%;
    transform: rotate(-3deg);
}

.available-badge {
    position: fixed;
    bottom: 50px;
    left: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 2px;
    z-index: 100;
    opacity: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.5s ease;
    background: var(--orange);
    padding: 16px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.available-badge:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.scroll-arrow {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============================================
   SCROLLING BANNER
   ============================================ */
.scrolling-banner {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg, var(--orange) 0%, #ff8555 100%);
    padding: 30px 0;
    position: relative;
    z-index: 10;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    gap: 30px;
}

.scrolling-text span::after {
    content: '•';
    font-size: 24px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   CREDIBILITY SECTION
   ============================================ */
.credibility-section {
    position: relative;
    min-height: 100vh;
    background: var(--light-bg);
    z-index: 2;
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.credibility-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
}

.credibility-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--black);
    margin-bottom: 0;
}

.credibility-left h2 span {
    display: block;
}

.credibility-left h2 span:nth-child(3) {
    color: var(--orange);
}

.credibility-right p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    text-align: justify;
}

.credibility-points {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credibility-points li {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    padding-left: 30px;
    position: relative;
}

.credibility-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
    font-size: 18px;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 20px;
}

.see-more-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.see-more-btn:hover::after {
    width: 100%;
}

.see-more-btn .arrow-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.see-more-btn:hover .arrow-circle {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.see-more-btn .arrow-circle svg {
    width: 16px;
    height: 16px;
    stroke: var(--black);
    transition: stroke 0.3s ease;
}

.see-more-btn:hover .arrow-circle svg {
    stroke: var(--white);
}

.credibility-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.next-section {
    position: relative;
    min-height: 100vh;
    background: var(--dark-bg);
    z-index: 2;
    padding: 100px 0;
    display: flex;
    align-items: center;
}

.programs-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 120px;
    align-items: start;
}

.programs-intro {
    position: sticky;
    top: 150px;
}

.section-number {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.what-we-offer {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 30px;
}

.what-we-offer span {
    display: block;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #888;
}

.domain-categories {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.domain-item {
    position: relative;
    padding: 60px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

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

.domain-item:hover {
    padding-left: 100px;
    background: rgba(255, 255, 255, 0.02);
}

.domain-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.domain-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    transition: all 0.4s ease;
    line-height: 1;
}

.domain-item:hover .domain-title {
    color: var(--orange);
}

.domain-tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    font-style: italic;
}

.domain-item:hover .domain-tagline {
    color: #999;
}

.domain-description {
    font-size: 15px;
    line-height: 1.8;
    color: #777;
    margin-bottom: 25px;
    max-width: 800px;
    text-align: justify;
}

.see-courses-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.see-courses-btn::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.see-courses-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateX(5px);
}

.see-courses-btn:hover::after {
    transform: translateX(5px);
}

.domain-line {
    width: 0;
    height: 3px;
    background: var(--orange);
    transition: width 0.6s ease;
}

.domain-item:hover .domain-line {
    width: 200px;
}

.domain-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.domain-arrow svg {
    width: 32px;
    height: 32px;
}

.domain-item:hover .domain-arrow {
    color: var(--orange);
    transform: translate(10px, -10px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    position: relative;
    min-height: 250vh;
    background: var(--light-bg);
    z-index: 2;
    padding: 120px 0;
}

.why-choose-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 120px;
    align-items: start;
}

.why-choose-intro {
    position: sticky;
    top: 150px;
}

.why-choose-number {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.why-choose-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(50px, 6vw, 80px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--black);
    margin-bottom: 30px;
}

.why-choose-title span {
    display: block;
}

.why-choose-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.why-choose-cards {
    position: relative;
    min-height: 200vh;
}

.why-card {
    position: sticky;
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.why-card:nth-child(1) {
    top: 30px;
}

.why-card:nth-child(2) {
    top: 60px;
}

.why-card:nth-child(3) {
    top: 90px;
}

.why-card:nth-child(4) {
    top: 120px;
}

.why-card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.why-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff8555);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.why-card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), #ff8555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.9;
}

.why-card-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.why-card-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
}

.why-card-image {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.why-card:hover .why-card-image::before {
    top: -30%;
    right: -30%;
}

.why-card-image img {
    width: 90%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.why-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), #ff8555);
    margin: 0 0 20px 0;
    border-radius: 2px;
}

.why-card-description {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: justify;
    margin: 0;
}

.why-card:nth-child(2) .why-card-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.why-card:nth-child(3) .why-card-header {
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
}

.why-card:nth-child(4) .why-card-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    position: relative;
    min-height: 100vh;
    background: #000000;
    z-index: 2;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonials-header {
    position: absolute;
    top: 80px;
    left: 80px;
    z-index: 20;
    max-width: 450px;
}

.testimonials-number {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonials-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 15px;
}

.testimonials-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: none;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.testimonial-fullscreen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial-fullscreen-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.1);
    transition: filter 0.8s ease, transform 0.8s ease;
}

.testimonial-slide.active .testimonial-fullscreen-bg video {
    filter: brightness(0.5) contrast(1.2);
    transform: scale(1.02);
}

.testimonial-fullscreen-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.testimonial-premium-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 80px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.testimonial-slide.active .testimonial-premium-content {
    opacity: 1;
    transform: translateY(0);
}

.premium-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 133, 85, 0.1));
    border: 3px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.premium-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: avatarGlow 3s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.premium-quote {
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.5;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 35px;
    font-style: italic;
    letter-spacing: -0.5px;
    position: relative;
}

.premium-quote::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90px;
    line-height: 1;
    color: rgba(255, 107, 53, 0.2);
    font-family: Georgia, serif;
    font-weight: bold;
}

.premium-student-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.premium-student-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.premium-student-meta span {
    position: relative;
}

.premium-student-meta span:not(:last-child)::after {
    content: '•';
    position: absolute;
    right: -12px;
    color: var(--orange);
}

.premium-company {
    color: var(--orange);
    font-weight: 700;
}

.premium-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 20;
}

.premium-nav:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--orange);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.premium-nav.prev {
    left: 60px;
}

.premium-nav.next {
    right: 60px;
}

.premium-nav svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.premium-nav svg path {
    stroke: var(--white);
    stroke-width: 2;
}

.premium-nav:hover svg {
    transform: scale(1.1);
}

.premium-progress-nav {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 20;
}

.premium-progress-item {
    position: relative;
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.premium-progress-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.premium-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--orange);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.premium-progress-item.active .premium-progress-fill {
    animation: progressFill 6s linear;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.premium-counter {
    position: absolute;
    bottom: 60px;
    right: 80px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    z-index: 20;
    font-weight: 600;
}

.premium-counter .current {
    color: var(--orange);
    font-size: 18px;
}

.testimonial-slide:nth-child(2) .premium-avatar {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(240, 98, 146, 0.15));
    border-color: rgba(233, 30, 99, 0.3);
}

.testimonial-slide:nth-child(3) .premium-avatar {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(157, 107, 255, 0.15));
    border-color: rgba(124, 58, 237, 0.3);
}

.testimonial-slide:nth-child(4) .premium-avatar {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.25), rgba(56, 189, 248, 0.15));
    border-color: rgba(14, 165, 233, 0.3);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    position: relative;
    min-height: 100vh;
    background: #1a1a1a;
    z-index: 2;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-container {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 150px;
    align-items: center;
}

.contact-form-side {
    position: relative;
}

.contact-section-number {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--orange);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.contact-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-title span {
    display: block;
}

.contact-title .outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--white);
    text-stroke: 2px var(--white);
}

.contact-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #888;
    margin-bottom: 50px;
    max-width: 500px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.contact-info-text {
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: break-word;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    flex-shrink: 0;
    transition: stroke 0.3s ease;
}

.contact-info-text:hover {
    color: var(--orange);
}

.contact-info-text:hover .contact-icon {
    stroke: var(--orange);
}

.contact-info-text.contact-phone {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.contact-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: stroke 0.3s ease;
}

.contact-social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.contact-social-link:hover svg {
    stroke: var(--white);
}

.contact-info-side {
    background: transparent;
    padding: 0;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.form-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 0 15px 0;
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--white);
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 12px;
    padding-right: 25px;
    cursor: pointer;
}

.form-select option {
    background: #1a1a1a;
    color: var(--white);
    padding: 10px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #444;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-bottom-color: var(--white);
}

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

.submit-btn-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.submit-btn {
    padding: 20px 50px;
    background: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.submit-btn:hover {
    transform: translateX(5px);
    background: var(--orange);
    color: var(--white);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    background: var(--white);
    color: var(--black);
}

.btn-loading {
    display: none;
}

.form-status {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    display: none;
    animation: slideDown 0.3s ease;
    max-width: 100%;
    word-break: break-word;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   POPUP ENQUIRY MODAL
   ============================================ */
/* ============================================
   POPUP MODAL — SPLIT PANEL REDESIGN
   ============================================ */

.popup-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    cursor: none;
}

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

.popup-modal {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    width: 100%;
    max-width: 860px;
    min-height: 560px;
    max-height: 92vh;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transform: translateY(48px) scale(0.96);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
    cursor: none;
}

.popup-modal-overlay.active .popup-modal {
    transform: translateY(0) scale(1);
}

/* ---- CLOSE BUTTON ---- */
.popup-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    cursor: none;
    transition: background 0.2s, border-color 0.2s, transform 0.3s ease;
}

.popup-modal-close:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: rotate(90deg) scale(1.1);
}

/* ---- LEFT PANEL ---- */
.modal-left-panel {
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 44px 36px;
}

.modal-left-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,107,53,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.modal-left-panel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.modal-left-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.modal-left-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.modal-left-badge::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--orange);
}

.modal-left-title {
    display: flex;
    flex-direction: column;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 58px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.modal-title-line {
    color: var(--white);
    display: block;
}

.modal-title-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.35);
}

.modal-left-sub {
    font-size: 12px;
    color: #555;
    letter-spacing: 0.3px;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 200px;
}



.modal-left-deco {
    position: absolute;
    bottom: 36px;
    right: -14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    letter-spacing: 6px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
}

/* ---- RIGHT PANEL ---- */
.modal-right-panel {
    background: #111;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding: 52px 40px 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: none;
}

.modal-right-panel::-webkit-scrollbar { width: 3px; }
.modal-right-panel::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 4px; }

/* ---- MODAL FORM ---- */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Floating label input group */
.mf-group {
    position: relative;
}

.mf-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2a2a;
    padding: 18px 0 10px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.3s;
    cursor: none;
}

.mf-textarea {
    resize: none;
    min-height: 56px;
    line-height: 1.6;
}

.mf-label {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 13px;
    color: #444;
    pointer-events: none;
    transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease;
    letter-spacing: 0.3px;
}

/* Float label up when input has content or is focused */
.mf-input:focus ~ .mf-label,
.mf-input:not(:placeholder-shown) ~ .mf-label {
    top: 0;
    font-size: 9px;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Animated underline */
.mf-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mf-input:focus ~ .mf-label ~ .mf-line,
.mf-input:focus ~ .mf-line {
    width: 100%;
}

/* Fix stacking for select groups */
.mf-select-group .mf-label { z-index: 1; }

.mf-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 22px;
    cursor: none;
}

.mf-select option {
    background: #1a1a1a;
    color: var(--white);
}

/* Chevron for selects */
.mf-chevron {
    position: absolute;
    right: 0;
    bottom: 14px;
    color: #444;
    pointer-events: none;
    transition: color 0.2s;
}

.mf-select:focus ~ .mf-chevron {
    color: var(--orange);
}

/* Float label for selects when a value is chosen */
.mf-select:valid ~ .mf-label {
    top: 0;
    font-size: 9px;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mf-select:focus ~ .mf-label {
    color: var(--orange);
}

/* ---- SUBMIT BUTTON ---- */
.mf-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 24px;
    background: var(--orange);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: none;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.mf-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mf-submit:hover::before {
    transform: translateX(0);
}

.mf-submit:hover {
    background: #e85a22;
    box-shadow: 0 8px 30px rgba(255,107,53,0.35);
    transform: translateY(-1px);
}

.mf-submit:active {
    transform: translateY(0);
}

.mf-submit:disabled {
    opacity: 0.55;
    pointer-events: none;
}

.mf-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.mf-submit:hover .mf-arrow {
    transform: translateX(4px);
}

.mf-submit-loading {
    display: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
    .popup-modal-overlay {
        align-items: flex-start;
        padding: 16px;
    }

    .popup-modal {
        grid-template-columns: 1fr;
        max-width: 460px;
        min-height: auto;
        max-height: none;
        overflow: visible;
        margin: auto;
    }

    .modal-left-panel {
        padding: 32px 28px;
        min-height: auto;
        border-radius: 20px 20px 0 0;
    }

    .modal-right-panel {
        padding: 36px 28px 40px 28px;
        overflow-y: visible;
        border-radius: 0 0 20px 20px;
    }

    .modal-left-title {
        font-size: 44px;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .modal-left-deco {
        display: none;
    }

    .mf-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CUSTOM CURSOR - CYAN
   ============================================ */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #4A90E2;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor.clicked {
    width: 30px;
    height: 30px;
}

a, button, .polaroid, .menu-nav-item, .domain-item, .see-courses-btn, 
.see-more-btn, .premium-nav, .premium-progress-item {
    cursor: none;
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE MOBILE FIX
   ============================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 100px;
    }
    
    .hero-culture {
        font-size: 80px;
    }
    
    .credibility-left h2 {
        font-size: 60px;
    }
    
    .what-we-offer,
    .why-choose-title {
        font-size: 60px;
    }
}

/* Tablet - Between 769px and 1024px - Keep stacking effect */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Keep the stacking effect for tablets */
    .why-choose-section {
        min-height: 250vh;
    }
    
    .why-choose-cards {
        min-height: 200vh;
    }
    
    .why-card {
        position: sticky !important;
    }
    
    .why-card:nth-child(1) {
        top: 30px !important;
    }
    
    .why-card:nth-child(2) {
        top: 60px !important;
    }
    
    .why-card:nth-child(3) {
        top: 90px !important;
    }
    
    .why-card:nth-child(4) {
        top: 120px !important;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Core overflow prevention */
    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Disable custom cursor on mobile */
    .custom-cursor {
        display: none !important;
    }
    
    body {
        cursor: auto !important;
    }
    
    a, button, .polaroid, .menu-nav-item, .domain-item, .see-courses-btn, 
    .see-more-btn, .premium-nav, .premium-progress-item {
        cursor: pointer !important;
    }
    
    /* Hide decorative elements */
    .polaroid {
        display: none !important;
    }
    
    .available-badge {
        display: none !important;
    }
    
    /* Header */
    .logo {
        position: fixed;
        top: 20px;
        left: 20px;
        max-width: 140px;
        z-index: 100;
    }
    
    .logo-image {
        height: 40px;
        width: auto;
    }
    
    .logo-dot {
        width: 8px;
        height: 8px;
    }
    
    .menu-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 10px;
        z-index: 100;
    }
    
    /* Menu sidebar */
    .menu-sidebar {
        width: 100% !important;
        left: -100% !important;
        padding: 30px 20px;
    }
    
    .menu-sidebar.active {
        left: 0 !important;
    }
    
    .menu-logo-image {
        height: 50px;
    }
    
    .menu-nav-item {
        font-size: 14px;
        padding: 18px 0;
    }
    
    /* Hero section */
    .hero-section {
        padding: 120px 20px 80px !important;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-tagline {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: clamp(40px, 12vw, 60px) !important;
        line-height: 0.9;
        margin-bottom: 8px;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-culture {
        font-size: clamp(40px, 12vw, 60px) !important;
        line-height: 0.9;
        margin-bottom: 25px;
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 9px;
        line-height: 1.6;
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        max-width: 90%;
        margin: 0 auto;
        padding: 0 10px;
    }
    
    .scroll-indicator {
        font-size: 9px;
        bottom: 40px;
    }
    
    /* Scrolling banner */
    .scrolling-banner {
        padding: 18px 0;
        overflow-x: hidden !important;
    }
    
    .scrolling-text span {
        font-size: 24px;
        padding: 0 15px;
        gap: 15px;
    }
    
    /* Credibility section */
    .credibility-section {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .credibility-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .credibility-container::before {
        display: none !important;
    }
    
    .credibility-left {
        width: 100%;
    }
    
    .credibility-left h2 {
        font-size: 42px !important;
        text-align: left;
        line-height: 1.1;
    }
    
    .credibility-right {
        width: 100%;
    }
    
    .credibility-right p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .credibility-points {
        gap: 12px;
    }
    
    .credibility-points li {
        font-size: 13px;
        padding-left: 25px;
    }
    
    .see-more-btn {
        font-size: 10px;
        margin-top: 15px;
    }
    
    /* Programs section - CRITICAL FIX */
    .next-section {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .programs-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .programs-intro {
        position: static !important;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .section-number {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .what-we-offer {
        font-size: 42px !important;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .intro-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .domain-categories {
        gap: 0;
        width: 100% !important;
    }
    
    .domain-item {
        padding: 30px 20px !important;
        border-left: none !important;
        border-right: none !important;
        width: 100% !important;
    }
    
    .domain-item:hover {
        padding-left: 25px !important;
    }
    
    .domain-header {
        flex-direction: column;
        align-items: flex-start !important;
        margin-bottom: 15px;
    }
    
    .domain-arrow {
        display: none !important;
    }
    
    .domain-title {
        font-size: 32px !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .domain-tagline {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .domain-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .see-courses-btn {
        font-size: 10px;
        padding: 10px 20px;
        margin-bottom: 15px;
    }
    
    .domain-line {
        width: 60px !important;
    }
    
    .domain-item:hover .domain-line {
        width: 100px !important;
    }
    
    /* ============================================
       WHY CHOOSE US SECTION - MOBILE STACKING
       ============================================ */
    
    /* Force section to have proper height */
    section.why-choose-section,
    .why-choose-section {
        padding: 80px 20px !important;
        min-height: 350vh !important;
        background: var(--light-bg) !important;
        position: relative !important;
    }
    
    /* Single column layout */
    .why-choose-section .why-choose-container,
    section.why-choose-section .why-choose-container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Intro section - not sticky on mobile */
    .why-choose-section .why-choose-intro,
    section.why-choose-section .why-choose-intro {
        position: relative !important;
        top: auto !important;
        margin-bottom: 60px;
    }
    
    .why-choose-section .why-choose-number {
        font-size: 10px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
    
    .why-choose-section .why-choose-title {
        font-size: 42px !important;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .why-choose-section .why-choose-text {
        font-size: 14px;
        line-height: 1.7;
    }
    
    /* CRITICAL: Cards container MUST have height for sticky to work */
    .why-choose-section .why-choose-cards,
    section.why-choose-section .why-choose-cards {
        position: relative !important;
        min-height: 280vh !important;
        padding-bottom: 100px !important;
    }
    
    /* CRITICAL: Sticky positioning on cards */
    .why-choose-section .why-card,
    section.why-choose-section .why-card,
    .why-choose-section .why-choose-cards .why-card {
        position: -webkit-sticky !important;
        position: sticky !important;
        width: 100% !important;
        margin-bottom: 60px !important;
        background: var(--white) !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
    }
    
    /* Stacking: each card at different top position */
    .why-choose-section .why-card:nth-child(1),
    .why-choose-section .why-choose-cards .why-card:nth-child(1) {
        top: 50px !important;
    }
    
    .why-choose-section .why-card:nth-child(2),
    .why-choose-section .why-choose-cards .why-card:nth-child(2) {
        top: 80px !important;
    }
    
    .why-choose-section .why-card:nth-child(3),
    .why-choose-section .why-choose-cards .why-card:nth-child(3) {
        top: 110px !important;
    }
    
    .why-choose-section .why-card:nth-child(4),
    .why-choose-section .why-choose-cards .why-card:nth-child(4) {
        top: 140px !important;
        margin-bottom: 0 !important;
    }
    
    .why-card-header {
        padding: 25px 20px;
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .why-card-number {
        font-size: 48px;
    }
    
    .why-card-header h3 {
        font-size: 18px;
    }
    
    .why-card-body {
        grid-template-columns: 1fr !important;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .why-card-image {
        width: 100%;
        max-width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .why-card-content {
        width: 100%;
    }
    
    .why-card-description {
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
    }
    
    /* Testimonials section */
    .testimonials-section {
        min-height: auto !important;
        padding: 60px 0 !important;
    }
    
    .testimonials-header {
        position: static !important;
        padding: 0 20px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .testimonials-number {
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .testimonials-title {
        font-size: 42px !important;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .testimonials-tagline {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .testimonials-carousel {
        height: 600px !important;
    }
    
    .testimonial-premium-content {
        padding: 30px 20px;
    }
    
    .premium-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .premium-quote {
        font-size: 16px !important;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .premium-quote::before {
        font-size: 60px;
        top: -20px;
    }
    
    .premium-student-name {
        font-size: 20px !important;
        margin-bottom: 10px;
    }
    
    .premium-student-meta {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
    }
    
    .premium-student-meta span::after {
        display: none !important;
    }
    
    .premium-nav {
        width: 50px;
        height: 50px;
    }
    
    .premium-nav.prev {
        left: 15px;
    }
    
    .premium-nav.next {
        right: 15px;
    }
    
    .premium-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .premium-progress-nav {
        bottom: 30px;
        gap: 10px;
    }
    
    .premium-progress-item {
        width: 50px;
    }
    
    .premium-counter {
        bottom: 30px;
        right: 20px;
        font-size: 12px;
    }
    
    .premium-counter .current {
        font-size: 16px;
    }
    
    /* Contact section */
    .contact-section {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .contact-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .contact-form-side {
        width: 100%;
    }
    
    .contact-section-number {
        font-size: 10px;
        margin-bottom: 15px;
    }
    
    .contact-title {
        font-size: 38px !important;
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .contact-subtitle {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .contact-info-items {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .contact-info-text {
        font-size: 14px;
        word-break: break-all;
    }
    
    .contact-social-links {
        gap: 12px;
    }
    
    .contact-social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-info-side {
        width: 100%;
    }
    
    .enquiry-form {
        gap: 30px;
        width: 100% !important;
    }
    
    .form-group {
        width: 100% !important;
        margin-bottom: 0;
    }
    
    .form-label {
        font-size: 10px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        width: 100% !important;
        font-size: 14px;
        padding: 0 0 12px 0;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .submit-btn-wrapper {
        justify-content: center;
        width: 100%;
    }
    
    .submit-btn {
        padding: 16px 40px;
        font-size: 11px;
        width: 100%;
        max-width: 300px;
    }
}

/* Small mobile - 480px and below */
@media (max-width: 480px) {
    .logo {
        left: 15px;
        top: 15px;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .menu-btn {
        right: 15px;
        top: 15px;
        padding: 8px 14px;
        font-size: 9px;
    }
    
    .hero-section {
        padding: 100px 15px 60px !important;
    }
    
    .hero-title,
    .hero-culture {
        font-size: clamp(35px, 11vw, 50px) !important;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 8px;
        letter-spacing: 1.5px;
    }
    
    .scrolling-text span {
        font-size: 20px;
        padding: 0 12px;
    }
    
    .credibility-left h2,
    .what-we-offer,
    .why-choose-title,
    .testimonials-title {
        font-size: 36px !important;
    }
    
    .domain-title {
        font-size: 28px !important;
    }
    
    .contact-title {
        font-size: 32px !important;
    }
    
    .testimonials-carousel {
        height: 550px !important;
    }
}


/* ============================================
   PREMIUM INTERNSHIP ANNOUNCEMENT BAR - BOTTOM
   ============================================ */
.internship-top-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 16px 40px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100%);
    animation: elegantSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 1.5s;
}

@keyframes elegantSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-bar-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #000000;
    border-radius: 20px;
}

.top-bar-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.top-bar-badge-text {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.top-bar-divider {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.15);
}

.top-bar-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

.top-bar-text strong {
    font-weight: 700;
    color: #000000;
}

.top-bar-highlight {
    color: var(--orange);
    font-weight: 600;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-cta {
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.top-bar-cta:hover {
    background: #000000;
    color: var(--white);
    border-color: #000000;
    transform: translateY(-1px);
}

.top-bar-close {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.4);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.top-bar-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
}

/* Mobile responsive */
@media (max-width: 968px) {
    .internship-top-bar {
        padding: 14px 20px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .top-bar-left {
        width: 100%;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .top-bar-divider {
        display: none;
    }
    
    .top-bar-text {
        font-size: 12px;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .top-bar-cta {
        font-size: 10px;
        padding: 7px 16px;
    }
}

@media (max-width: 768px) {
    .internship-top-bar {
        padding: 12px 20px;
    }
    
    .top-bar-badge {
        padding: 5px 12px;
    }
    
    .top-bar-badge-text {
        font-size: 10px;
    }
    
    .top-bar-text {
        font-size: 11px;
        line-height: 1.5;
    }
    
    .top-bar-cta {
        font-size: 9px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .top-bar-text {
        font-size: 10px;
    }
}

/* ============================================
   STICKY ENQUIRY BUTTON - ORANGE ACCENT WITH SHAKING ICON
   ADD THIS TO THE END OF YOUR style.css FILE
   ============================================ */

.sticky-enquiry-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #1c1c1c;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
    animation: slideUpButton 0.5s ease forwards 2s;
    cursor: pointer;
    border: 3px solid rgb(255, 107, 53);
}

@keyframes slideUpButton {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-color: rgba(255, 107, 53, 0.5);
}

.enquiry-btn-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconShake 3s ease-in-out infinite;
}

@keyframes iconShake {
    0%, 90%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    92% {
        transform: translateX(-2px) rotate(-5deg);
    }
    94% {
        transform: translateX(2px) rotate(5deg);
    }
    96% {
        transform: translateX(-2px) rotate(-5deg);
    }
    98% {
        transform: translateX(2px) rotate(5deg);
    }
}

.enquiry-btn-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--orange);
    stroke-width: 1.5;
}

.enquiry-btn-text {
    display: inline-block;
    font-weight: 500;
}

.sticky-enquiry-btn.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(10px) !important;
    visibility: hidden !important;
}

/* Mobile responsive for sticky button */
@media (max-width: 768px) {
    .sticky-enquiry-btn {
        bottom: 120px;
        right: 20px;
        padding: 14px 24px;
        font-size: 13px;
        gap: 8px;
    }
    
    .enquiry-btn-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .sticky-enquiry-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        bottom: 100px;
        right: 15px;
    }
    
    .enquiry-btn-text {
        display: none;
    }
    
    .enquiry-btn-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
/* ============================================
   FOOTER — PREMIUM REDESIGN (LIGHT)
   ============================================ */

.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; }
}