/*
 * Pixel-Perfect CSS Built from Figma API Data
 * Design Width: 1440px
 * Design Height: 8275px
 */

/* Import Fonts from Figma */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=Rouge+Script&display=swap');

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

/* Visually Hidden - accessible only to screen readers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* CSS Variables from Figma API */
:root {
    --color-blue: rgba(37, 41, 148, 1.0);
    --color-orange: rgba(255, 165, 0, 1.0);
    --color-white: rgba(255, 255, 255, 1.0);
    --color-black: rgba(0, 0, 0, 1.0);
    --color-gray: rgba(217, 217, 217, 1.0);

    --font-raleway: 'Raleway', sans-serif;
    --font-inter: 'Inter', sans-serif;
    --font-intro: 'Intro Demo', sans-serif;
    --font-rouge: 'Rouge Script', cursive;

    /* Light Theme (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e8eaf6;
    --bg-card: #ffffff;
    --text-primary: #1a1a2e;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --overlay-bg: rgba(255, 255, 255, 0.95);

    /* Shadows */
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;

    /* Orange backgrounds */
    --orange-bg-light: rgba(255, 165, 0, 0.1);
    --orange-bg-medium: rgba(255, 165, 0, 0.2);

    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #252994 0%, #1a1d6e 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-pink: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-cyan: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-green: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Dark Theme */
[data-theme="dark"] {
    --color-blue: rgba(67, 97, 238, 1.0);
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #252547;
    --bg-card: #1e1e35;
    --text-primary: #f0f0f5;
    --text-secondary: #b0b0c0;
    --text-muted: #808090;
    --border-color: #3a3a5c;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
    --overlay-bg: rgba(15, 15, 26, 0.95);
}

/* Logo transition for theme switch */
.logo img,
.mobile-logo img,
.footer-logo img {
    transition: filter 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Dark theme logo inversion */
[data-theme="dark"] .logo img,
[data-theme="dark"] .mobile-logo img,
[data-theme="dark"] .footer-logo img {
    filter: brightness(0) invert(1);
}

/* Theme transition */
body, body * {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-inter);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 100px;
}

/* Top Bar */
.top-bar {
    background: #252994;
    padding: 12px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10002;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.top-bar.nav-hidden {
    transform: translateY(-150%);
}

/* Mobile Logo - Hidden by default, shown on mobile */
.mobile-logo {
    display: none;
}

.mobile-logo img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
}

/* Mobile Sign In in menu - Hidden by default */
.mobile-menu-signin {
    display: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 0 90px;
}

.top-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-links a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-inter);
    font-weight: 400;
    transition: opacity 0.3s;
}

.top-links a:hover {
    opacity: 0.8;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.language-btn:hover {
    opacity: 0.8;
}

.language-btn svg {
    transition: transform 0.3s;
}

.language-btn.active svg {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 10000;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #252994;
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 15px;
    transition: background 0.2s;
}

.language-dropdown a:first-child {
    border-radius: 8px 8px 0 0;
}

.language-dropdown a:last-child {
    border-radius: 0 0 8px 8px;
}

.language-dropdown a:hover {
    background: #f5f5f5;
}

.login {
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    padding: 8px 24px;
    border: 1px solid var(--color-white);
    border-radius: 20px;
    transition: all 0.3s;
}

.login:hover {
    background: var(--color-white);
    color: #252994;
}

/* Main Navigation */
.main-nav {
    background: var(--color-white);
    padding: 40px 0 20px 0;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    overflow: visible;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.main-nav.nav-hidden {
    transform: translateY(calc(-100% - 48px));
}

.main-nav .container {
    display: flex;
    align-items: center;
    padding: 0 76px 0 104px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    width: 209px;
    height: 65px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    background: rgba(37, 41, 148, 0.22);
    padding: 0;
    border-radius: 50px;
    margin-left: 70px;
    margin-right: 76px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li:nth-child(6) {
    margin-right: 20px;
}

.nav-menu li.nav-icon-item {
    margin-left: auto;
    margin-right: 0;
}

.nav-menu li.nav-icon-item:last-child {
    margin-right: 5px;
}

.nav-menu a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    font-family: var(--font-inter);
    font-weight: 500;
    padding: 12px 25px;
    display: block;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: rgba(37, 41, 148, 0.35);
}

.nav-menu a.active {
    background: linear-gradient(90deg, #252994 19%, #6B6FDB 54%, #252994 100%);
    color: var(--color-white);
}

/* Mega Menu - Flowing from Nav */
.has-megamenu {
    position: static;
}

.nav-menu {
    position: relative;
}

/* Mega Menu Container */
.megamenu {
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(37, 41, 148, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9998;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.has-megamenu:hover .megamenu,
.megamenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inner wrapper for content */
.megamenu-content {
    display: flex;
    gap: 40px;
    padding: 50px 100px;
    min-height: 300px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Level 1 - Main Categories Column */
.megamenu-col {
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.megamenu-col:first-child {
    padding-left: 0;
}

.megamenu-col:last-child {
    border-right: none;
    padding-right: 0;
}

.megamenu-col h4 {
    font-family: var(--font-raleway);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.megamenu-col > ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-col > ul > li {
    margin-bottom: 2px;
    position: relative;
}

/* Level 2 - Menu Items */
.megamenu-col > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
    border-radius: 0;
    transition: all 0.3s ease;
    background: transparent;
}

.megamenu-col > ul > li > a .menu-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.megamenu-col > ul > li > a:hover {
    color: var(--color-orange);
    padding-left: 10px;
}

.megamenu-col > ul > li.has-submenu > a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(-45deg);
    transition: all 0.3s;
}

.megamenu-col > ul > li.has-submenu:hover > a::after {
    border-color: var(--color-orange);
    transform: rotate(-45deg) translateX(3px);
}

/* Hide menu icons */
.menu-icon,
.submenu-icon {
    display: none;
}

/* Level 3 - Submenu */
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    list-style: none;
    margin: 0;
}

.megamenu-col > ul > li.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(10px);
}

.submenu li {
    margin-bottom: 2px;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s;
}

.submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-orange);
}

.submenu li a .submenu-icon {
    font-size: 14px;
    opacity: 0.7;
}

/* Featured Column - stays same but updated */
.megamenu-col.featured {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: none;
}

.featured-box {
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 280px;
}

.featured-box h4 {
    color: var(--color-orange);
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
}

.featured-box p {
    font-family: var(--font-inter);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-featured {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-featured:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
}

/* Active menu item highlight */
.has-megamenu:hover > a {
    background: linear-gradient(90deg, #252994 19%, #6B6FDB 54%, #252994 100%);
    color: var(--color-white);
}

/* Ensure megamenu content can overflow for submenus */
.megamenu-content {
    overflow: visible;
}

.megamenu-col {
    overflow: visible;
}

/* Submenu positioning fix */
.megamenu-col > ul > li {
    position: relative;
}

/* Add arrow indicator for items with submenu */
.megamenu-col > ul > li.has-submenu > a {
    padding-right: 30px;
}

/* Better submenu appearance */
.submenu::before {
    display: none;
}

/* Smooth transition for menu opening */
.megamenu {
    will-change: transform, opacity;
}

.nav-icon-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.nav-icon-item:first-of-type {
    margin-left: auto;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: var(--color-black);
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: rgba(37, 41, 148, 0.35);
}

.icon-btn.active-icon {
    background: linear-gradient(90deg, #252994 19%, #6B6FDB 54%, #252994 100%);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    margin-top: 160px;
    z-index: 1;
}

.hero .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--color-white);
    padding-left: 360px;
}

.hero-title {
    font-family: var(--font-raleway);
    font-size: 80px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-size: 35px;
    font-weight: 400;
    margin-bottom: 40px;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-family: var(--font-inter);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.4);
}

.btn-hero {
    background: linear-gradient(90deg, #252994 19%, #6B6FDB 54%, #252994 100%);
    color: var(--color-white);
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    font-family: var(--font-inter);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 41, 148, 0.4);
}

/* Info Cards */
.info-cards {
    padding: 0;
    background: transparent;
    margin-top: -15px;
    position: relative;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--color-white);
    box-shadow: 0 4px 56.4px 33px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    overflow: hidden;
    width: 1018px;
    height: 201px;
    margin: 0 auto;
}

.info-card {
    background: transparent;
    padding: 40px 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-card:last-child {
    border-right: none;
}

.info-card:hover {
    background: rgba(0, 0, 0, 0.02);
}

.card-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-black);
}

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

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-black);
    line-height: 24.2px;
}

.info-card p {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 300;
    color: #666;
    margin-bottom: 15px;
    line-height: 18.15px;
}

.card-link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--font-inter);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.card-link:hover {
    color: var(--color-blue);
}

/* Stats Section */
.stats-section {
    padding: 100px 0 30px 0;
    background: var(--color-white);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 180px;
}

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

.stat-number {
    font-family: var(--font-inter);
    font-size: 70px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 10px;
    color: var(--color-black);
}

.stat-label {
    font-family: var(--font-raleway);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-black);
}

/* Partnerships Section */
.partnerships {
    padding: 50px 0 0 0;
    background: var(--color-white);
    position: relative;
}

.partnerships .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0;
}

.partnerships .section-title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    line-height: 58.7px;
    text-align: center;
    margin-bottom: 40px;
    padding: 0 100px;
    color: #053247;
}

.section-title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-blue);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 60px;
    position: relative;
    background-image: url('../images/partners_bg.png');
    background-size: cover;
    background-position: center;
    width: calc(100% + 120px);
    margin-left: -60px;
    margin-right: -60px;
}

.partners-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.partners-grid img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.3s;
    position: relative;
    z-index: 1;
}

.partners-grid img:hover {
    transform: scale(1.1);
}

/* Programs Section */
.programs-section {
    padding: 100px 0;
    background: var(--color-white);
    overflow: hidden;
}

.programs-subtitle {
    font-family: var(--font-raleway);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 10px;
    color: var(--color-black);
}

.programs-section .section-title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #053247;
}

.programs-carousel {
    position: relative;
    overflow: visible;
    padding: 20px 0 40px;
    margin: -20px 0 -40px;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0 20px;
    justify-content: flex-start;
}

.program-card {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-image.automation,
.program-image.chemical,
.program-image.electrical,
.program-image.transport,
.program-image.it-systems {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #252994 0%, #1a1d6e 100%);
}

.program-icon {
    font-size: 70px;
    line-height: 1;
}

.program-content {
    padding: 25px;
    position: relative;
    min-height: 180px;
}

.program-card h3 {
    font-family: var(--font-raleway);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black);
}

.program-card p {
    font-family: var(--font-raleway);
    font-size: 15px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.program-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.program-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid white;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    margin-left: 3px;
}

.program-arrow:hover {
    background: #1a1f70;
}

/* Hide carousel controls for programs (all 6 visible) */
.programs-section .carousel-controls {
    display: none;
}

/* Programs & Clubs CTA Button */
.programs-cta,
.clubs-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-blue);
    color: white;
    font-family: var(--font-raleway);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 41, 148, 0.3);
}

.btn-view-all:hover {
    background: #1a1f70;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 41, 148, 0.4);
}

/* Section header with carousel controls */
.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header .section-title {
    margin-bottom: 0;
    text-align: center;
}

.section-header .carousel-controls {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-controls {
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-nav {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-blue);
    transition: all 0.3s;
}

.carousel-nav:hover {
    background: var(--color-blue);
    color: white;
    border-color: var(--color-blue);
}

/* Clubs Section */
.clubs-section {
    padding: 100px 0;
    background: var(--color-white);
}

.clubs-section .section-title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #053247;
}

.clubs-subtitle {
    font-family: var(--font-raleway);
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 60px;
    color: #666;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.clubs-carousel {
    position: relative;
    overflow: hidden;
}

.clubs-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: none;
    width: max-content;
}

.club-card {
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 260px;
    width: 260px;
    height: 133px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.club-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.club-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.club-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.club-card h4 {
    font-family: var(--font-raleway);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0;
    text-align: left;
}

.club-instagram {
    font-family: var(--font-raleway);
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.club-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.club-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 2px;
}

.club-arrow:hover {
    background: #1a1f70;
}

/* Gallery Creative Section */
.gallery-creative {
    padding: 80px 0;
    background: var(--color-white);
}

.gallery-creative .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.creative-left {
    flex: 1;
}

.creative-left h2 {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-blue);
}

.creative-left h2 .line1 {
    display: inline-block;
}

.creative-left h2 .line2 {
    display: inline-block;
    margin-left: 60px;
}

.creative-left h2 .line3 {
    display: inline-block;
    margin-left: 110px;
    margin-top: -60px;
    margin-bottom: 20px;
    font-family: 'Rouge Script', cursive;
    font-size: 100px;
    font-weight: 400;
    color: #ffa500;
    font-style: normal;
}

.creative-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.creative-right p {
    font-family: var(--font-raleway);
    font-size: 22px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
}

.btn-explore {
    background: #ffa500;
    color: var(--color-white);
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-family: var(--font-raleway);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-end;
    transition: background 0.3s;
}

.btn-explore:hover {
    background: #ff8c00;
}

/* College Gallery */
.college-gallery {
    padding: 80px 0;
    background: var(--color-white);
}

.college-gallery .section-title {
    font-family: var(--font-raleway);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #053247;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: var(--font-raleway);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #1a1d6e;
    transform: translateX(5px);
}

.gallery-carousel {
    position: relative;
}

.gallery-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
    position: relative;
    height: 535px;
}

.gallery-grid img {
    width: 297px;
    height: 445px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.6s ease-in-out;
    flex-shrink: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
}

.gallery-grid img.pos-0 {
    transform: translateX(calc(-50% - 634px)) translateY(-90px);
}

.gallery-grid img.pos-1 {
    transform: translateX(calc(-50% - 317px)) translateY(-45px);
}

.gallery-grid img.pos-2 {
    transform: translateX(-50%) translateY(0px);
}

.gallery-grid img.pos-3 {
    transform: translateX(calc(-50% + 317px)) translateY(-45px);
}

.gallery-grid img.pos-4 {
    transform: translateX(calc(-50% + 634px)) translateY(-90px);
}

.gallery-grid img:hover {
    filter: brightness(1.1);
}

.gallery-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.gallery-controls .view-all-btn {
    margin-left: 20px;
}

.gallery-nav {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    transition: all 0.3s;
}

.gallery-nav:hover {
    background: #ffa500;
    color: var(--color-white);
    border-color: #ffa500;
}

.gallery-nav.gallery-next {
    width: 80px;
    border-radius: 25px;
    background: #ffa500;
    color: var(--color-white);
    border-color: #ffa500;
    font-size: 28px;
}

/* Events Section */
.events-section {
    padding: 100px 0;
    background: var(--color-blue);
}

.events-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.events-section .section-title {
    color: var(--color-white);
    margin-bottom: 0;
}

.events-nav {
    position: absolute;
    right: 0;
    display: flex;
    gap: 10px;
}

.events-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: var(--color-white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.events-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
}

.events-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    padding: 10px 30px;
    font-family: var(--font-inter);
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.events-carousel {
    position: relative;
    overflow: hidden;
}

.events-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-wrap: nowrap;
}

.event-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    flex: 0 0 380px;
    width: 380px;
}

.event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--color-orange);
    transition: height 0.3s;
    border-radius: 0 0 20px 20px;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card:hover::after {
    height: 5px;
}

.event-image {
    position: relative;
    width: 100%;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
}

.event-content {
    padding: 25px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 600;
    margin-bottom: 12px;
}

.event-date svg {
    flex-shrink: 0;
}

.add-to-calendar {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
    margin-left: auto;
}

.add-to-calendar span {
    font-family: var(--font-inter);
    font-size: 12px;
    color: var(--color-orange);
    font-weight: 600;
    white-space: nowrap;
}

.add-to-calendar:hover {
    transform: scale(1.05);
}

.add-to-calendar:hover svg path,
.add-to-calendar:hover svg rect {
    stroke: var(--color-blue);
}

.add-to-calendar:hover span {
    color: var(--color-blue);
}

.event-content h3 {
    font-family: var(--font-raleway);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--color-black);
    line-height: 1.4;
}

.event-content p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-blue);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    padding-left: 40px;
}

.read-more::before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-blue);
    position: absolute;
    left: 0;
    transition: background 0.3s;
}

.read-more::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 7px solid var(--color-white);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: 12px;
    z-index: 1;
}

.read-more:hover {
    color: var(--color-orange);
}

.read-more:hover::before {
    background: var(--color-orange);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(217, 217, 217, 0.52);
}

.faq-section .section-subtitle {
    color: var(--color-orange);
    text-align: center;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.blue-text {
    color: var(--color-blue);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    background: var(--color-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-item h3 {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.faq-item.active h3 {
    color: var(--color-white);
}

.faq-toggle {
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--color-black);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.active .faq-toggle {
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
    opacity: 1;
}

.faq-answer p {
    font-family: var(--font-inter);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-contact-card {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.chat-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.faq-contact-card h3 {
    font-family: var(--font-raleway);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-contact-card p {
    font-family: var(--font-inter);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-contact {
    background: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 12px 40px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: #ff8c00;
    transform: translateY(-2px);
}

.service-card {
    background: var(--color-white);
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-icon {
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-subtitle {
    font-family: var(--font-inter);
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.service-content h4 {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-blue);
    margin: 0 0 8px 0;
}

.service-phone {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-black);
    font-weight: 600;
    margin: 0;
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: var(--color-white);
}

.instagram-section .section-subtitle {
    text-align: center;
    color: #666;
}

.instagram-title {
    font-family: var(--font-raleway);
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 60px;
}

.instagram-circles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.circle-item {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.circle-item:hover {
    transform: scale(1.05);
}

.circle-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.location-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.find-us-box {
    background: var(--color-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.find-us-box h3 {
    font-family: var(--font-raleway);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 10px;
}

.location-subtitle {
    font-family: var(--font-inter);
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item span {
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--color-black);
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.logo-subtitle {
    font-family: var(--font-inter);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.footer-col h4 {
    font-family: var(--font-raleway);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 16px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--color-white);
}

.social-links-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-inter);
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.social-link svg {
    flex-shrink: 0;
}

.footer-subscribe {
}

.email-subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-subscribe input {
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: transparent;
    font-family: var(--font-inter);
    font-size: 14px;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.email-subscribe input:focus {
    border-color: white;
}

.email-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-subscribe button {
    background: transparent;
    color: var(--color-white);
    border: 2px solid white;
    border-radius: 8px;
    padding: 14px 24px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.email-subscribe button:hover {
    background: white;
    color: var(--color-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-family: var(--font-inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .top-bar .container {
        padding: 0 30px 0 60px;
    }

    .main-nav .container {
        padding: 0 40px 0 70px;
    }

    .nav-menu {
        margin-left: 50px;
        margin-right: 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .top-bar .container {
        padding: 0 20px 0 40px;
    }

    .main-nav .container {
        padding: 0 30px 0 50px;
    }

    .logo img {
        width: 180px;
        height: 56px;
    }

    .nav-menu {
        margin-left: 40px;
        margin-right: 30px;
        gap: 15px;
    }

    .nav-menu a {
        padding: 10px 20px;
        font-size: 15px;
    }

    .nav-menu li:nth-child(6) {
        margin-right: 15px;
    }

    .top-links {
        gap: 20px;
    }

    .top-links a {
        font-size: 14px;
    }

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

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

@media (max-width: 1024px) {
    .top-bar .container {
        padding: 0 20px 0 40px;
    }

    .main-nav .container {
        padding: 0 20px 0 40px;
    }

    .logo img {
        width: 160px;
        height: 50px;
    }

    .nav-menu {
        margin-left: 30px;
        margin-right: 20px;
        gap: 10px;
    }

    .nav-menu a {
        padding: 10px 18px;
        font-size: 14px;
    }

    .nav-menu li:nth-child(6) {
        margin-right: 10px;
    }

    .top-links {
        gap: 20px;
    }

    .top-links a {
        font-size: 14px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon img {
        width: 16px;
        height: 16px;
    }

    .programs-grid {
        gap: 15px;
    }

    .program-card {
        flex: 0 0 calc((100% - 30px) / 3);
        max-width: calc((100% - 30px) / 3);
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-links {
        display: none;
    }

    .top-center {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .main-nav {
        padding: 20px 0;
    }

    .main-nav .container {
        padding: 0 15px;
        flex-direction: column;
        gap: 15px;
    }

    .logo img {
        width: 140px;
        height: 44px;
    }

    .hero-title {
        font-size: 50px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .section-title {
        font-size: 36px;
    }

    .cards-grid,
    .events-grid,
    .gallery-grid,
    .clubs-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        gap: 15px;
    }

    .program-card {
        flex: 0 0 calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .top-bar {
        padding: 8px 0;
    }

    .top-right {
        gap: 10px;
    }

    .language-btn {
        font-size: 14px;
    }

    .login {
        font-size: 9px;
        padding: 5px 12px;
    }

    .main-nav {
        padding: 15px 0;
    }

    .logo img {
        width: 120px;
        height: 38px;
    }

    .icon-btn {
        padding: 8px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .program-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ========================================
   ENHANCED RESPONSIVE STYLES
   ======================================== */

/* Large Desktop - 1440px */
@media (max-width: 1440px) {
    .megamenu-content {
        padding: 40px 60px;
    }

    .hero-content {
        padding-left: 200px;
    }

    .cards-grid {
        width: 90%;
    }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
    .megamenu-content {
        padding: 30px 40px;
        gap: 30px;
    }

    .megamenu-col {
        padding: 0 20px;
    }

    .hero-content {
        padding-left: 100px;
    }

    .hero-title {
        font-size: 65px;
    }

    .cards-grid {
        width: 95%;
        height: auto;
    }

    .info-card {
        padding: 30px 20px;
    }

    .stats-grid {
        gap: 100px;
    }

    .stat-number {
        font-size: 55px;
    }

    .creative-left h2 {
        font-size: 40px;
    }

    .creative-left h2 .line3 {
        font-size: 80px;
    }

    .location-section {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .megamenu {
        top: 120px;
    }

    .megamenu-content {
        padding: 25px 30px;
        flex-wrap: wrap;
    }

    .megamenu-col {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 20px;
    }

    .megamenu-col:last-child {
        border-bottom: none;
    }

    .megamenu-col.featured {
        flex: 0 0 100%;
    }

    .hero {
        height: 600px;
        margin-top: 140px;
    }

    .hero-content {
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        width: 90%;
        height: auto;
    }

    .info-card {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .info-card:last-child {
        border-bottom: none;
    }

    .stats-grid {
        gap: 60px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 30px);
    }

    .partnerships .section-title {
        font-size: 40px;
    }

    .programs-section .section-title,
    .clubs-section .section-title {
        font-size: 40px;
    }

    .gallery-creative .container {
        flex-direction: column;
        gap: 40px;
    }

    .creative-left, .creative-right {
        text-align: center;
    }

    .creative-left h2 .line2,
    .creative-left h2 .line3 {
        margin-left: 0;
    }

    .btn-explore {
        align-self: center;
    }

    .gallery-grid {
        height: 400px;
    }

    .gallery-grid img {
        width: 220px;
        height: 330px;
    }

    .events-grid {
        gap: 20px;
    }

    .event-card {
        flex: 0 0 320px;
        width: 320px;
    }

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

    .faq-sidebar {
        flex-direction: row;
    }

    .faq-contact-card, .service-card {
        flex: 1;
    }

    .instagram-circles {
        gap: 20px;
    }

    .circle-item {
        width: 150px;
        height: 150px;
    }

    .location-section {
        grid-template-columns: 1fr;
    }

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

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    /* Hide desktop mega menu on mobile */
    .has-megamenu .megamenu {
        display: none;
    }

    .hero {
        height: 500px;
        margin-top: 180px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .cards-grid {
        width: 92%;
        margin-top: -30px;
        border-radius: 15px;
    }

    .info-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 18px 15px;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-bottom: 0;
    }

    .card-icon svg {
        width: 24px;
        height: 24px;
    }

    .card-content {
        flex: 1;
    }

    .info-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .info-card p {
        font-size: 13px;
        line-height: 1.4;
    }

    .card-link {
        font-size: 14px;
    }

    .stats-grid {
        gap: 40px;
    }

    .stat-number {
        font-size: 45px;
    }

    .stat-label {
        font-size: 18px;
    }

    .partnerships .section-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .partners-grid {
        gap: 30px;
        padding: 40px 20px;
    }

    .partners-grid img {
        height: 60px;
    }

    .programs-subtitle {
        font-size: 22px;
    }

    .programs-section .section-title {
        font-size: 32px;
    }

    .programs-grid {
        gap: 20px;
        padding: 0;
    }

    .program-card {
        flex: 0 0 260px;
    }

    .clubs-section .section-title {
        font-size: 32px;
    }

    .clubs-subtitle {
        font-size: 18px;
        padding: 0 20px;
    }

    .clubs-grid {
        gap: 15px;
    }

    .club-card {
        flex: 0 0 200px;
        width: 200px;
    }

    .creative-left h2 {
        font-size: 32px;
    }

    .creative-left h2 .line3 {
        font-size: 60px;
        margin-top: -30px;
    }

    .creative-right p {
        font-size: 18px;
    }

    .gallery-grid {
        height: 300px;
    }

    .gallery-grid img {
        width: 150px;
        height: 225px;
    }

    .gallery-grid img.pos-0,
    .gallery-grid img.pos-4 {
        display: none;
    }

    .gallery-grid img.pos-1 {
        transform: translateX(calc(-50% - 160px)) translateY(-30px);
    }

    .gallery-grid img.pos-2 {
        transform: translateX(-50%) translateY(0);
    }

    .gallery-grid img.pos-3 {
        transform: translateX(calc(-50% + 160px)) translateY(-30px);
    }

    .events-section .section-title {
        font-size: 32px;
    }

    .events-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .events-grid {
        gap: 15px;
    }

    .event-card {
        flex: 0 0 280px;
        width: 280px;
    }

    .faq-section .section-title {
        font-size: 32px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-sidebar {
        flex-direction: column;
    }

    .instagram-title {
        font-size: 32px;
    }

    .instagram-circles {
        flex-wrap: wrap;
        justify-content: center;
    }

    .circle-item {
        width: 120px;
        height: 120px;
    }

    .find-us-box h3 {
        font-size: 26px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .social-links-footer {
        align-items: center;
    }

    .email-subscribe {
        flex-direction: column;
    }

    .email-subscribe button {
        width: 100%;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 450px;
        margin-top: 160px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .btn-hero {
        padding: 10px 25px;
        font-size: 14px;
    }

    .cards-grid {
        margin-top: -20px;
        width: 92%;
        border-radius: 12px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .info-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 15px;
        gap: 12px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 0;
    }

    .card-icon svg {
        width: 20px;
        height: 20px;
    }

    .card-content {
        flex: 1;
    }

    .info-card h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .info-card p {
        font-size: 12px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-link {
        font-size: 12px;
        margin-top: 4px;
    }

    .stats-section {
        padding: 60px 0 20px;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 16px;
    }

    .partnerships .section-title {
        font-size: 26px;
    }

    .partners-grid img {
        height: 45px;
    }

    .programs-section,
    .clubs-section,
    .gallery-creative,
    .college-gallery,
    .events-section,
    .faq-section,
    .instagram-section {
        padding: 60px 0;
    }

    .programs-subtitle {
        font-size: 18px;
    }

    .programs-section .section-title,
    .clubs-section .section-title,
    .events-section .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .program-card {
        flex: 0 0 260px;
    }

    .club-card {
        flex: 0 0 100%;
        width: 100%;
    }

    .creative-left h2 {
        font-size: 26px;
    }

    .creative-left h2 .line3 {
        font-size: 45px;
    }

    .creative-right p {
        font-size: 16px;
    }

    .btn-explore {
        padding: 12px 30px;
        font-size: 16px;
    }

    .college-gallery .section-title {
        font-size: 26px;
    }

    .gallery-grid {
        height: 250px;
    }

    .gallery-grid img {
        width: 120px;
        height: 180px;
    }

    .gallery-grid img.pos-1 {
        transform: translateX(calc(-50% - 130px)) translateY(-20px);
    }

    .gallery-grid img.pos-3 {
        transform: translateX(calc(-50% + 130px)) translateY(-20px);
    }

    .events-header {
        flex-direction: column;
        gap: 20px;
    }

    .events-nav {
        position: static;
    }

    .event-content h3 {
        font-size: 16px;
    }

    .faq-section .section-title {
        font-size: 26px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-contact-card {
        padding: 30px 20px;
    }

    .faq-contact-card h3 {
        font-size: 20px;
    }

    .instagram-title {
        font-size: 26px;
    }

    .circle-item {
        width: 100px;
        height: 100px;
    }

    .find-us-box {
        padding: 30px 20px;
    }

    .find-us-box h3 {
        font-size: 22px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-col h4 {
        font-size: 18px;
    }

    .footer-col a {
        font-size: 14px;
    }
}

/* ========================================
   HAMBURGER MENU
   ======================================== */

/* Hamburger Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--color-blue);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 1002;
}

.hamburger:hover {
    background: #1a1f6b;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation - Active State */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Show hamburger on tablet/mobile */
@media (max-width: 1024px) {
    /* Mobile Header Layout */
    .top-bar .container {
        padding: 0 15px;
        position: relative;
        justify-content: space-between;
    }

    /* Show mobile logo - left aligned, hide on very small screens */
    .mobile-logo {
        display: block;
    }
}
@media (max-width: 375px) {
    .mobile-logo {
        display: none;
    }
    .top-bar .container {
        justify-content: flex-end;
    }
}
@media (max-width: 1024px) {

    /* Hide top-links on mobile */
    .top-links {
        display: none;
    }

    /* Hide social icons on mobile */
    .social-icons {
        display: none;
    }

    /* Hide desktop Sign In on mobile */
    .top-bar .login {
        display: none;
    }

    /* Hide main-nav visually but keep nav-menu accessible */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        padding: 0;
        margin: 0;
        overflow: visible;
        background: transparent;
        z-index: 10001;
        pointer-events: none;
    }

    .main-nav .container {
        position: static;
        padding: 0;
        height: 0;
        overflow: visible;
    }

    .main-nav .nav-menu {
        pointer-events: auto;
    }

    .main-nav .logo {
        display: none;
    }

    /* Hamburger visible and in top-bar */
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1003;
        pointer-events: auto;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Top-right contains language + hamburger */
    .top-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    /* Show mobile Sign In in menu */
    .mobile-menu-signin {
        display: block !important;
        padding: 20px 0;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-signin-btn {
        display: inline-block;
        background: var(--color-orange);
        color: white !important;
        padding: 14px 40px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid white;
        box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
    }

    .mobile-signin-btn:hover {
        background: #e69500;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 165, 0, 0.5);
    }

    /* Adjust hero margin since main-nav is hidden */
    .hero {
        margin-top: 60px;
    }

    /* Mobile nav menu base styles */
    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: auto !important;
        width: 320px !important;
        height: 100vh !important;
        background: var(--color-blue) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 100px 30px 30px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        z-index: 10001 !important;
        transition: right 0.4s ease !important;
        overflow-y: auto !important;
        gap: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex !important;
        transform: none !important;
    }

    /* Hidden state */
    .nav-menu:not(.active) {
        right: -100% !important;
    }

    /* Visible state */
    .nav-menu.active {
        right: 0 !important;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
    }

    .nav-menu li:nth-child(6) {
        margin-right: 0;
    }

    .nav-menu > li > a {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: white;
        font-size: 18px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
        background: transparent;
    }

    .nav-menu > li > a:hover,
    .nav-menu > li > a.active {
        background: transparent;
        color: var(--color-orange);
    }

    .nav-menu li.nav-icon-item {
        display: none;
    }

    /* Mobile Mega Menu */
    .has-megamenu .megamenu {
        display: none;
        position: static;
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin: 10px 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
    }

    .has-megamenu.menu-open .megamenu {
        display: block;
    }

    .megamenu-content {
        flex-direction: column;
        padding: 15px;
        min-height: auto;
        gap: 15px;
    }

    .megamenu-col {
        flex: none;
        width: 100%;
        padding: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .megamenu-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .megamenu-col h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .megamenu-col > ul > li > a {
        padding: 8px 0;
        font-size: 14px;
    }

    .megamenu-col.featured {
        padding: 15px 0 0;
    }

    .featured-box {
        max-width: 100%;
        padding: 20px;
    }

    /* Submenu in mobile */
    .submenu {
        position: static;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin: 5px 0 0 15px;
        padding: 10px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
    }

    .has-submenu.submenu-open .submenu {
        display: block;
    }

    /* Mobile menu toggle arrow */
    /* Menu items with arrows - use flexbox */
    .has-megamenu > a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .has-megamenu > a::after {
        content: '';
        display: block;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .has-megamenu.menu-open > a::after {
        transform: rotate(-135deg);
    }

    /* Mobile menu close button position */
    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }

    .mobile-menu-overlay.active {
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu.active {
        right: 0 !important;
        left: auto !important;
        transform: none !important;
    }

    .nav-menu:not(.active) {
        right: -100% !important;
    }

    .hamburger {
        width: 40px;
        height: 40px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .hamburger {
        width: 36px;
        height: 36px;
        padding: 8px;
        gap: 4px;
    }

    .hamburger-line {
        width: 18px;
        height: 2px;
    }

    .nav-menu {
        padding: 80px 20px 20px !important;
    }

    .nav-menu > li > a {
        font-size: 16px;
        padding: 12px 0;
    }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Base state for animated elements */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation types */
.scroll-animate.fade-up {
    transform: translateY(50px);
}

.scroll-animate.fade-left {
    transform: translateX(-50px);
}

.scroll-animate.fade-right {
    transform: translateX(50px);
}

.scroll-animate.fade-scale {
    transform: scale(0.9);
}

.scroll-animate.animate-in.fade-left,
.scroll-animate.animate-in.fade-right {
    transform: translateX(0);
}

.scroll-animate.animate-in.fade-scale {
    transform: scale(1);
}

/* Staggered animation delays for cards */
.scroll-animate.delay-1 { transition-delay: 0.1s; }
.scroll-animate.delay-2 { transition-delay: 0.2s; }
.scroll-animate.delay-3 { transition-delay: 0.3s; }
.scroll-animate.delay-4 { transition-delay: 0.4s; }

/* Carousel improvements - main styles defined in carousel sections above */

/* Mobile section header */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 30px;
    }

    .section-header .carousel-controls {
        position: static;
        transform: none;
    }
}

/* Gallery carousel specific */
.gallery-grid {
    transition: none;
}

.gallery-grid img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Carousel navigation active state */
.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Events carousel - styles defined above in main events section */

/* Touch/swipe support indicator */
.carousel-touch-hint {
    display: none;
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .carousel-touch-hint {
        display: block;
    }
}

/* Hero animation on load */
.hero-content {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page load animation */
.page-loaded .hero-title-line:nth-child(1) {
    animation: slideInLeft 0.8s ease forwards;
}

.page-loaded .hero-title-line:nth-child(2) {
    animation: slideInRight 0.8s ease 0.2s forwards;
}

.page-loaded .hero-subtitle {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.page-loaded .btn-hero {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Smooth section transitions */
section {
    opacity: 1;
}

/* Info cards stagger animation */
.info-cards .info-card:nth-child(1) { transition-delay: 0s; }
.info-cards .info-card:nth-child(2) { transition-delay: 0.15s; }
.info-cards .info-card:nth-child(3) { transition-delay: 0.3s; }

/* Stats counter animation */
.stat-item:nth-child(1) { transition-delay: 0s; }
.stat-item:nth-child(2) { transition-delay: 0.1s; }
.stat-item:nth-child(3) { transition-delay: 0.2s; }
.stat-item:nth-child(4) { transition-delay: 0.3s; }

/* Program cards stagger */
.program-card:nth-child(1) { transition-delay: 0s; }
.program-card:nth-child(2) { transition-delay: 0.15s; }
.program-card:nth-child(3) { transition-delay: 0.3s; }

/* Club cards stagger */
.club-card:nth-child(1) { transition-delay: 0s; }
.club-card:nth-child(2) { transition-delay: 0.05s; }
.club-card:nth-child(3) { transition-delay: 0.1s; }
.club-card:nth-child(4) { transition-delay: 0.15s; }
.club-card:nth-child(5) { transition-delay: 0.2s; }
.club-card:nth-child(6) { transition-delay: 0.25s; }
.club-card:nth-child(7) { transition-delay: 0.3s; }
.club-card:nth-child(8) { transition-delay: 0.35s; }

/* Event cards stagger */
.event-card:nth-child(1) { transition-delay: 0s; }
.event-card:nth-child(2) { transition-delay: 0.15s; }
.event-card:nth-child(3) { transition-delay: 0.3s; }

/* Footer columns stagger */
.footer-col:nth-child(1) { transition-delay: 0s; }
.footer-col:nth-child(2) { transition-delay: 0.1s; }
.footer-col:nth-child(3) { transition-delay: 0.2s; }
.footer-col:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   DARK THEME STYLES
   ======================================== */

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-left: 15px;
    z-index: 9999;
    position: relative;
    pointer-events: auto;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(15deg);
}

/* Sun icon (shown in dark mode) */
.theme-toggle .sun-icon {
    display: none;
}

/* Moon icon (shown in light mode) */
.theme-toggle .moon-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

/* Dark Theme - Main Navigation */
[data-theme="dark"] .main-nav {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .nav-menu a {
    color: var(--text-primary);
}

[data-theme="dark"] .nav-menu a:hover {
    color: var(--color-orange);
}

/* Dark Theme - Sections */
[data-theme="dark"] .stats-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .stat-item {
    color: var(--text-primary);
}

[data-theme="dark"] .partnerships {
    background: var(--bg-primary);
}

[data-theme="dark"] .programs-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .section-title {
    color: var(--text-primary);
}

/* Dark Theme - Cards */
[data-theme="dark"] .info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .info-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .info-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .program-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .program-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .program-card p {
    color: var(--text-secondary);
}

[data-theme="dark"] .club-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .club-card h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .event-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .event-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .event-card p {
    color: var(--text-secondary);
}

/* Dark Theme - Clubs Section */
[data-theme="dark"] .clubs-section {
    background: var(--bg-secondary);
}

/* Dark Theme - Gallery */
[data-theme="dark"] .gallery-creative {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .college-gallery {
    background: var(--bg-primary);
}

/* Dark Theme - Events */
[data-theme="dark"] .events-section {
    background: var(--bg-secondary);
}

[data-theme="dark"] .filter-btn {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
    background: var(--color-orange);
    color: white;
    border-color: var(--color-orange);
}

/* Dark Theme - FAQ */
[data-theme="dark"] .faq-section {
    background: var(--bg-primary);
}

[data-theme="dark"] .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .faq-question {
    color: var(--text-primary);
}

[data-theme="dark"] .faq-answer {
    color: var(--text-secondary);
}

/* Dark Theme - Footer */
[data-theme="dark"] .footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

[data-theme="dark"] .footer-col h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .footer-col p,
[data-theme="dark"] .footer-col a {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer-col a:hover {
    color: var(--color-orange);
}

[data-theme="dark"] .footer-bottom {
    border-top-color: var(--border-color);
    color: var(--text-muted);
}

/* Dark Theme - Forms */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-muted);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--color-orange);
    outline: none;
}

/* Dark Theme - Contact Cards */
[data-theme="dark"] .contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .contact-card h3 {
    color: var(--text-primary);
}

[data-theme="dark"] .contact-card p {
    color: var(--text-secondary);
}

/* Dark Theme - Scroll Indicator */
[data-theme="dark"] .scroll-indicator {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

/* Dark Theme - Partner logos */
[data-theme="dark"] .partner-logo {
    filter: brightness(0.9) contrast(1.1);
}

/* Dark Theme - Mobile Menu */
[data-theme="dark"] .nav-menu.active {
    background: var(--bg-secondary);
}

/* Dark theme - Language dropdown */
[data-theme="dark"] .language-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .language-dropdown a {
    color: var(--text-primary);
}

[data-theme="dark"] .language-dropdown a:hover {
    background: var(--bg-tertiary);
}

/* ==================== ACCESSIBILITY ==================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 0 0 10px 10px;
    z-index: 100000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

/* Accessibility Widget */
.accessibility-widget {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 9998;
}

.accessibility-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    background: #1a1d6e;
}

.accessibility-toggle svg {
    width: 26px;
    height: 26px;
    color: white;
}

.accessibility-panel {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 280px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.accessibility-panel h3 {
    font-family: var(--font-raleway);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.accessibility-panel h3::before {
    content: '♿';
    font-size: 20px;
}

.accessibility-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.accessibility-option:last-child {
    border-bottom: none;
}

.accessibility-option span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.font-size-controls {
    display: flex;
    gap: 5px;
}

.font-size-controls button {
    width: 36px;
    height: 36px;
    border: 2px solid var(--color-blue);
    background: white;
    color: var(--color-blue);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.font-size-controls button:hover {
    background: var(--color-blue);
    color: white;
}

.toggle-btn {
    width: 50px;
    height: 28px;
    background: #ddd;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    transition: background 0.3s;
}

.toggle-btn.active {
    background: var(--color-blue);
}

.toggle-slider {
    position: absolute;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-btn.active .toggle-slider {
    transform: translateX(22px);
}

/* Reset Button */
.accessibility-reset {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s;
}

.accessibility-reset:hover {
    background: #e0e0e0;
}

[data-theme="dark"] .accessibility-reset {
    background: #333;
    border-color: #444;
    color: #fff;
}

[data-theme="dark"] .accessibility-reset:hover {
    background: #444;
}

/* Focus Styles for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

/* High Contrast Mode */
[data-contrast="high"] {
    --color-blue: #000080;
    --color-orange: #ff6600;
}

[data-contrast="high"] body {
    background: white !important;
}

[data-contrast="high"] * {
    border-color: #000 !important;
}

[data-contrast="high"] p,
[data-contrast="high"] span,
[data-contrast="high"] li,
[data-contrast="high"] a {
    color: #000 !important;
}

[data-contrast="high"] h1,
[data-contrast="high"] h2,
[data-contrast="high"] h3,
[data-contrast="high"] h4,
[data-contrast="high"] h5,
[data-contrast="high"] h6 {
    color: #000080 !important;
}

/* Readable Font (Dyslexia-friendly) */
[data-readable-font="true"] * {
    font-family: 'OpenDyslexic', Arial, sans-serif !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
    line-height: 1.8 !important;
}

/* Highlight Links */
[data-highlight-links="true"] a {
    background: yellow !important;
    color: #000 !important;
    padding: 2px 4px !important;
    text-decoration: underline !important;
}

/* Font Size Adjustments */
[data-font-size="large"] {
    font-size: 120% !important;
}

[data-font-size="larger"] {
    font-size: 140% !important;
}

/* Dark Theme Accessibility Panel */
[data-theme="dark"] .accessibility-panel {
    background: var(--bg-card);
}

[data-theme="dark"] .accessibility-panel h3,
[data-theme="dark"] .accessibility-option span {
    color: var(--text-primary);
}

[data-theme="dark"] .accessibility-option {
    border-color: var(--border-color);
}

/* Mobile */
@media (max-width: 768px) {
    .accessibility-widget {
        left: 20px;
        bottom: 100px;
    }

    .accessibility-toggle {
        width: 45px;
        height: 45px;
    }

    .accessibility-panel {
        width: 260px;
        left: -10px;
    }
}

/* ==================== ACCESSIBILITY MODES ==================== */

/* High Contrast Mode */
body.high-contrast {
    background: #fff !important;
    color: #000 !important;
}

body.high-contrast * {
    background-color: inherit;
    color: inherit;
    border-color: #000 !important;
}

body.high-contrast p,
body.high-contrast span,
body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast h5,
body.high-contrast h6,
body.high-contrast li,
body.high-contrast td,
body.high-contrast th,
body.high-contrast label {
    color: #000 !important;
}

body.high-contrast a {
    color: #0000EE !important;
    text-decoration: underline !important;
}

body.high-contrast a:visited {
    color: #551A8B !important;
}

body.high-contrast button,
body.high-contrast .btn-primary,
body.high-contrast .btn-secondary {
    background: #000 !important;
    color: #fff !important;
    border: 2px solid #000 !important;
}

body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
}

body.high-contrast .accessibility-widget {
    position: fixed !important;
}

/* Readable Font Mode (Dyslexia-friendly) */
body.readable-font,
body.readable-font * {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
    line-height: 1.8 !important;
}

/* Highlight Links Mode */
body.highlight-links a {
    background-color: #ffff00 !important;
    color: #000 !important;
    padding: 2px 4px !important;
    text-decoration: underline !important;
}

body.highlight-links a:hover {
    background-color: #ffcc00 !important;
}

/* Toggle Button Active State */
.toggle-btn.active {
    background: var(--color-blue) !important;
}

.toggle-btn.active .toggle-slider {
    transform: translateX(20px);
    background: white;
}

/* ==================== CHAT ASSISTANT WIDGET ==================== */

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: var(--font-inter);
}

/* Chat Button */
.chat-button {
    min-width: 60px;
    height: 60px;
    padding: 0 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, #252994 0%, #1a1d6e 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(37, 41, 148, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.chat-button::before {
    content: 'Chat with us';
    color: white;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.chat-widget.active .chat-button::before {
    content: '';
    display: none;
}

.chat-widget.active .chat-button {
    width: 60px;
    min-width: 60px;
    padding: 0;
    border-radius: 50%;
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 20px rgba(37, 41, 148, 0.4);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(37, 41, 148, 0.3);
    }
}

.chat-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(37, 41, 148, 0.5);
    animation-play-state: paused;
}

.chat-button svg {
    width: 24px;
    height: 24px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.chat-button .close-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
}

.chat-widget.active .chat-button .chat-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.chat-widget.active .chat-button .close-icon {
    opacity: 1;
    transform: rotate(0);
}

/* Pulse ring animation */
.chat-button::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 35px;
    border: 2px solid rgba(37, 41, 148, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

.chat-widget.active .chat-button::after {
    display: none;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #ff6b6b;
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.chat-widget.active .chat-badge {
    display: none;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.chat-widget.active .chat-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, #252994 0%, #1a1d6e 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.chat-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.chat-header-text h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: blink 2s infinite;
}

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

.chat-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-close svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f8f9fa;
}

.chat-message {
    display: flex;
    gap: 10px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

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

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: #252994;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.chat-message.user .message-avatar {
    background: #ffa500;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chat-message.user .message-content {
    background: #252994;
    color: white;
    border-radius: 18px;
    border-top-right-radius: 4px;
}

.message-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.message-time {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}

.chat-message.user .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Quick Replies */
.chat-quick-replies {
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.quick-reply {
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-size: 13px;
    color: #252994;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-reply:hover {
    background: #252994;
    color: white;
    border-color: #252994;
}

/* Chat Input */
.chat-input-container {
    padding: 15px 20px;
    display: flex;
    gap: 10px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.chat-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.chat-input:focus {
    border-color: #252994;
}

.chat-input::placeholder {
    color: #999;
}

.chat-send {
    width: 45px;
    height: 45px;
    background: #252994;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-send:hover {
    background: #1a1d6e;
    transform: scale(1.05);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

/* Dark Theme */
[data-theme="dark"] .chat-window {
    background: var(--bg-card);
}

[data-theme="dark"] .chat-messages {
    background: var(--bg-primary);
}

[data-theme="dark"] .message-content {
    background: var(--bg-card);
    color: var(--text-primary);
}

[data-theme="dark"] .chat-message.user .message-content {
    background: #252994;
}

[data-theme="dark"] .chat-quick-replies {
    background: var(--bg-primary);
    border-color: var(--border-color);
}

[data-theme="dark"] .quick-reply {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .chat-input-container {
    background: var(--bg-card);
    border-color: var(--border-color);
}

[data-theme="dark"] .chat-input {
    background: var(--bg-primary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Tablet - smaller button */
@media (max-width: 768px) {
    .chat-button::before {
        content: none;
    }

    .chat-button {
        width: 60px;
        min-width: 60px;
        padding: 0;
        border-radius: 50%;
    }

    .chat-button::after {
        border-radius: 50%;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        height: 70vh;
        right: -10px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
}
