/* ============================================================
   LS'COURT ACADEMY — PREMIUM INSTITUTIONAL STYLESHEET
   Design: Clean, Formal, Structured — Federal Poly Nekede Style
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties & Variables --- */
:root {
    /* Brand Colors */
    --primary-color: #6B2D8B;       /* Deep Royal Purple */
    --primary-dark: #4A1D63;        /* Darker Purple */
    --primary-light: #8E44AD;       /* Lighter Purple */
    --secondary-color: #00ADEF;     /* Brand Cyan */
    --secondary-dark: #0091C7;      /* Darker Cyan */
    --accent-gold: #D4AF37;         /* Gold Accent */
    --accent-teal: #00A859;         /* Green Accent */
    --dark-color: #1A1A2E;          /* Deep Navy/Charcoal */
    --dark-light: #232342;          /* Lighter Dark */
    --light-color: #F5F7FA;         /* Off-White */
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-color: #2D3748;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    
    /* Borders & Backgrounds */
    --border-color: #E2E8F0;
    --bg-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    --bg-gradient-cyan: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-color) 100%);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 25px rgba(107, 45, 139, 0.25);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    animation: pulse-logo 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
    position: relative;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    border-radius: 4px;
    animation: loading-bar 1.2s ease-in-out infinite;
}

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

@keyframes loading-bar {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--primary-color);
    color: var(--white);
}

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

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* --- Layout Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-color);
}

.bg-gradient {
    background: var(--bg-gradient);
}

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

.text-secondary {
    color: var(--secondary-color) !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 18px;
    font-weight: 700;
    color: var(--dark-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--bg-gradient);
    border-radius: 2px;
}

.section-title.left {
    text-align: left;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.section-subtitle.left {
    text-align: left;
    margin-left: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(107, 45, 139, 0.35);
    color: var(--white);
}

.btn-secondary {
    background: var(--bg-gradient-cyan);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0, 173, 239, 0.25);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 173, 239, 0.35);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--bg-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.05rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-light);
    gap: 12px;
}

/* --- Top Utility Bar --- */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 3px solid var(--secondary-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-contacts a,
.top-contacts a:hover,
.footer-col.contact a,
.footer-col.contact a:hover {
    color: var(--white);
}

.top-contacts i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.top-socials a {
    color: var(--white);
    margin-left: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    transition: var(--transition);
}

.top-socials a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* --- Ticker / News Bar --- */
.news-ticker {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 42px;
    position: relative;
    z-index: 1002;
}

.ticker-label {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 0 22px;
    font-weight: 700;
    font-family: var(--font-heading);
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    white-space: nowrap;
    font-size: 0.8rem;
    letter-spacing: 1px;
    position: relative;
}

.ticker-label::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 21px solid transparent;
    border-bottom: 21px solid transparent;
    border-left: 12px solid var(--secondary-color);
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-block;
    padding-right: 60px;
    color: #E2E8F0;
}

.ticker-item i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.ticker-item a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* --- Branding Header --- */
.main-header {
    background-color: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1001;
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-top: 3px;
}

.header-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-phone {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.header-phone a,
.header-phone a:hover {
    color: var(--primary-color);
}

.header-phone span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Navigation Menu --- */
.nav-section {
    background: var(--bg-gradient);
    position: sticky;
    top: 96px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: var(--white);
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.nav-link:hover::after,
.nav-item:hover > .nav-link::after,
.nav-item.active > .nav-link::after {
    width: 100%;
}

.nav-link:hover, 
.nav-item:hover > .nav-link,
.nav-item.active > .nav-link {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-top: 3px solid var(--secondary-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 100;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-menu li a i {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: var(--transition);
}

.dropdown-menu li a:hover i {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive Nav Toggle */
.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 15px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-color);
    height: 3px;
    width: 25px;
    position: relative;
    transition: var(--transition);
    border-radius: 3px;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

#nav-toggle {
    display: none;
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.68) 0%, rgba(74, 29, 99, 0.55) 50%, rgba(26, 26, 46, 0.75) 100%);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 20%, rgba(0, 173, 239, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 10px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-content h2 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85), 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h2 .highlight {
    color: var(--white);
    position: relative;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 45px;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 5px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-cta .btn {
    min-width: 210px;
    margin-bottom: 5px;
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

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

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

/* --- Page Banner (Inner Pages) --- */
.page-banner {
    background: linear-gradient(135deg, rgba(74, 29, 99, 0.95) 0%, rgba(107, 45, 139, 0.9) 50%, rgba(26, 26, 46, 0.95) 100%), url('../images/page-banner.jpg') no-repeat center center/cover;
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient-cyan);
}

.page-banner h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.breadcrumbs a {
    color: var(--white);
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Cards --- */
.card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-img {
    height: 220px;
    background-color: #CBD5E1;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 26, 46, 0.3));
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card-img::after {
    opacity: 1;
}

.card-body {
    padding: 28px;
}

.card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-title a {
    color: var(--dark-color);
}

.card-title a:hover {
    color: var(--primary-color);
}

.card-text {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* --- Feature Boxes --- */
.feature-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(107, 45, 139, 0.4);
}

.feature-box h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* --- Statistics Section --- */
.stats-section {
    background: var(--bg-gradient);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 173, 239, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* --- Welcome / Chairman Section --- */
.chairman-section {
    position: relative;
}

.chairman-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border-left: 5px solid var(--secondary-color);
}

.chairman-card::before {
    content: '\201C';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    font-family: Georgia, serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.chairman-quote {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.chairman-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.chairman-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.chairman-author h4 {
    margin-bottom: 2px;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.chairman-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Academic School Cards --- */
.school-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.school-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.school-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.school-card-img i {
    font-size: 4.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.school-card:hover .school-card-img i {
    transform: scale(1.15) rotate(-5deg);
}

.school-card-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    opacity: 0.9;
}

.school-card-img::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.school-card:hover .school-card-img::after {
    transform: rotate(45deg) translateX(100%);
}

.school-card-body {
    padding: 25px;
}

.school-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.school-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.7;
}

/* --- News Cards --- */
.news-card {
    position: relative;
    overflow: hidden;
}

.news-date-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.news-card .card-title {
    font-size: 1.1rem;
    line-height: 1.4;
}

.news-card .card-text {
    font-size: 0.88rem;
}

/* --- Testimonials --- */
.testimonial-section {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 30px 20px;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.testimonial-author-info {
    text-align: left;
}

.testimonial-author-info h4 {
    margin-bottom: 2px;
    font-size: 1rem;
    color: var(--primary-color);
}

.testimonial-author-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* --- CTA Banner --- */
.cta-banner {
    background: var(--bg-gradient);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border: 3px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
}

/* --- Partners / Accreditation Strip --- */
.partners-section {
    padding: 50px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover {
    opacity: 1;
    color: var(--primary-color);
}

.partner-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* --- Tables --- */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
    max-width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

table.academic-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

table.academic-table th, 
table.academic-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

table.academic-table th {
    background: var(--bg-gradient);
    color: var(--white);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

table.academic-table tr:nth-child(even) {
    background-color: var(--light-color);
}

table.academic-table tr:hover {
    background-color: rgba(107, 45, 139, 0.05);
}

table.academic-table tr:last-child td {
    border-bottom: none;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.92rem;
    font-family: var(--font-heading);
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 45, 139, 0.12);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* --- Message Layouts --- */
.message-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background-color: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.message-img {
    flex-shrink: 0;
    width: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.message-text blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.message-author h4 {
    margin-bottom: 2px;
    color: var(--primary-color);
}

.message-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Governing Council Grid --- */
.council-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    text-align: center;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.member-img {
    height: 250px;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.member-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 29, 99, 0.8), rgba(107, 45, 139, 0.6));
}

.member-img i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.member-info {
    padding: 22px;
}

.member-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.member-info p {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.member-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: block;
}

/* --- Contact Page --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    min-width: 0;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    border: 1px solid var(--border-color);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Sidebar Navigation --- */
.sidebar {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 700;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    background: var(--bg-gradient);
    color: var(--white);
    border-left-color: var(--secondary-color);
    transform: translateX(3px);
}

.sidebar-menu li a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.sidebar-menu li a:hover i,
.sidebar-menu li.active a i {
    transform: translateX(3px);
}

/* --- Page Layout --- */
.page-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    min-width: 0;
}

.page-content {
    background-color: var(--white);
    min-width: 0;
}

.rich-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: var(--text-color);
}

.rich-text ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.rich-text ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.rich-text ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.rich-text h3 {
    margin-top: 25px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.rich-text strong {
    color: var(--primary-color);
}

/* --- Footer --- */
.main-footer {
    background: var(--dark-color);
    color: #CBD5E1;
    padding: 70px 0 0 0;
    margin-top: auto;
    font-size: 0.9rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bg-gradient);
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #94A3B8;
}

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

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

.footer-links li a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--secondary-color);
    padding-left: 6px;
}

.footer-col.contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #94A3B8;
}

.footer-col.contact i {
    color: var(--secondary-color);
    margin-top: 5px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-phone-list {
    display: flex;
    flex-direction: column;
}

.footer-phone-list a {
    color: #94A3B8;
    transition: var(--transition);
}

.footer-phone-list a:hover {
    color: var(--secondary-color);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.newsletter-form input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    flex-grow: 1;
    font-family: var(--font-body);
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: #64748B;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.12);
}

.newsletter-form button {
    background: var(--bg-gradient-cyan);
    color: var(--white);
    border: none;
    padding: 12px 18px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748B;
}

.footer-bottom-links a {
    color: #64748B;
    margin-left: 15px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: var(--bg-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(107, 45, 139, 0.4);
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* --- Media Queries --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: clip;
    }

    body {
        overflow-x: clip;
    }

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

    .section-title {
        font-size: 1.7rem;
    }

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

    .top-bar-content {
        gap: 4px;
        line-height: 1.35;
    }

    .top-contacts {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .top-contacts span {
        margin-right: 0;
        white-space: nowrap;
        font-size: 0.75rem;
    }

    .top-socials {
        white-space: nowrap;
    }

    .news-ticker {
        height: 36px;
        font-size: 0.72rem;
        contain: paint;
    }

    .ticker-label {
        flex: 0 0 auto;
        padding: 0 14px;
        font-size: 0.7rem;
    }

    .ticker-label::after {
        border-top: 18px solid transparent;
        border-bottom: 18px solid transparent;
        border-left: 10px solid var(--secondary-color);
    }

    .ticker-wrap {
        min-width: 0;
    }

    .main-header {
        padding: 12px 0;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-content {
        padding: 0 4px;
    }

    .sidebar {
        margin-top: 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .header-content {
        gap: 0;
        text-align: left;
    }

    .logo-link {
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
        gap: 8px;
    }

    .logo-img {
        height: 42px;
        flex: 0 0 auto;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text h1 {
        font-size: 1rem;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }

    .logo-text span {
        font-size: 0.46rem;
        letter-spacing: 0.6px;
        white-space: nowrap;
    }
    
    .header-actions {
        display: none;
    }

    .header-phone {
        font-size: 0.85rem;
    }

    .header-actions .btn {
        min-width: 114px;
    }
    
    /* Responsive Navigation */
    .nav-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 44px;
        height: 44px;
        padding: 0;
        margin-left: auto;
        cursor: pointer;
        z-index: 1004;
        position: relative;
    }
    
    .nav-container {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 0;
    }

    .nav-section {
        position: sticky;
        top: 66px;
        width: 100%;
        z-index: 1003;
        background: transparent;
        min-height: 0;
        box-shadow: none;
    }
    
    .main-nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--bg-gradient);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        flex-direction: column;
        z-index: 1003;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        padding: 15px 20px;
    }
    
    body.nav-open .main-nav {
        max-height: 80vh;
        overflow-y: auto;
    }
    
    /* Hamburger icon animation */
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary-color);
        height: 3px;
        width: 25px;
        position: relative;
        transition: var(--transition);
        border-radius: 3px;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    body.nav-open .nav-toggle-label span {
        background: transparent;
    }
    
    body.nav-open .nav-toggle-label span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    
    body.nav-open .nav-toggle-label span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.15);
        border-top: none;
        border-bottom: none;
        display: none;
        border-radius: 0;
    }
    
    .dropdown-menu li a {
        color: var(--white);
        padding-left: 35px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-menu li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
    }
    
    .nav-item.open .dropdown-menu {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-slider {
        height: auto;
        min-height: 520px;
    }
    
    .hero-slide {
        position: relative;
        height: auto;
        min-height: 520px;
        padding: 60px 0 80px;
        display: none;
    }
    
    .hero-slide.active {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 1.9rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: center;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    /* Page Banner Mobile */
    .page-banner {
        padding: 50px 0;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    /* Chairman */
    .chairman-card {
        padding: 25px;
    }
    
    .chairman-quote {
        font-size: 0.95rem;
    }
    
    /* Message */
    .message-box {
        flex-direction: column;
        text-align: center;
    }
    
    .message-img {
        margin: 0 auto;
    }
    
    .message-text blockquote {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        padding-top: 15px;
        padding-left: 0;
    }
    
    /* Stats */
    .stats-section {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* CTA */
    .cta-banner h2 {
        font-size: 1.6rem;
    }
    
    .cta-banner p {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }
    
    /* Contact */
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Floating buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 560px;
    }
    
    .hero-slide {
        min-height: 560px;
        padding: 50px 0 80px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content p {
        font-size: 0.88rem;
    }
    
    .hero-cta {
        max-width: 280px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .footer-grid {
        gap: 25px;
    }
}
