/* ========================================
   SOJPAR - SKY BLUE THEME
   ======================================== */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Sky Blue */
    --primary-dark: #0a2a4a;
    --primary: #1a6fc4;
    --primary-mid: #4a8fd4;
    --primary-light: #7ab0e4;
    --primary-gradient: linear-gradient(135deg, #1a6fc4 0%, #4a9ef5 100%);
    --primary-gradient-dark: linear-gradient(135deg, #0a2a4a 0%, #1a6fc4 100%);
    
    /* Accent - Sky Blue */
    --accent: #1a8cf5;
    --accent-light: #5ab0f7;
    --accent-gradient: linear-gradient(135deg, #1a8cf5 0%, #5ab0f7 100%);
    --accent-glow: rgba(26, 140, 245, 0.15);
    
    /* White & Light */
    --white: #ffffff;
    --off-white: #f5f9ff;
    --light-gray: #e8f0fe;
    --border-light: #dce6f2;
    
    /* Text Colors */
    --text-dark: #0a2a4a;
    --text-primary: #1a3a5a;
    --text-secondary: #4a6a8a;
    --text-muted: #7a9aaa;
    --text-white: #ffffff;
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(26, 108, 196, 0.06);
    --shadow-md: 0 8px 32px rgba(26, 108, 196, 0.08);
    --shadow-lg: 0 20px 60px rgba(26, 108, 196, 0.1);
    --shadow-blue: 0 8px 32px rgba(26, 140, 245, 0.2);
    --shadow-sky: 0 8px 32px rgba(26, 140, 245, 0.15);
    
    /* Radius */
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--off-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    border-radius: var(--radius-sm);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gradient);
    border-radius: 10px;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border-light);
}

.navbar.scrolled .brand-text,
.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.navbar.scrolled .brand-logo img {
    filter: none;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar.scrolled .brand-text {
    color: var(--primary-dark);
}

.brand-text .accent {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--white);
}

.navbar.scrolled .nav-link:hover {
    color: var(--accent);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-link {
    background: var(--white);
    color: var(--primary-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
}

.navbar.scrolled .nav-link.cta-link {
    background: var(--accent-gradient);
    color: var(--white);
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .hamburger {
    color: var(--primary-dark);
}

.hamburger:hover {
    color: var(--accent);
}

/* ========================================
   HERO SPLIT SECTION
   ======================================== */
.hero-split {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    background: var(--primary-gradient-dark);
}

/* Left Side - Content */
.hero-split-content {
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    z-index: 2;
}

.hero-split-content .container {
    width: 100%;
}

.hero-content-inner {
    max-width: 620px;
}

.hero-split-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-split-content .hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero-split-content .hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-split-content .hero-title .highlight {
    color: #7ab0e4;
}

.hero-split-content .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-split-content .hero-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hero-split-content .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-split-content .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
}

.hero-split-content .hero-stat {
    text-align: left;
}

.hero-split-content .hero-stat .number {
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
    display: block;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-split-content .hero-stat .label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

/* Right Side - Image - Centered with equal space */
.hero-split-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
}

.hero-image-wrapper {
    width: 100%;
    height: 70%;
    max-height: 75vh;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgba(10, 42, 74, 0.1) 0%, rgba(10, 42, 74, 0.3) 100%);
}

/* Floating Badge on Image */
.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.image-badge-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.image-badge-text {
    display: flex;
    flex-direction: column;
}

.image-badge-text .badge-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
}

.image-badge-text .badge-label {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ========================================
   HERO SPLIT RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-split-content .hero-title {
        font-size: 48px;
    }
    
    .hero-image-wrapper {
        height: 65%;
    }
}

@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-split-content {
        padding: 100px 0 50px;
        background: var(--primary-gradient-dark);
    }
    
    .hero-split-content .container {
        padding: 0 24px;
    }
    
    .hero-content-inner {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-split-content .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-split-content .hero-buttons {
        justify-content: center;
    }
    
    .hero-split-content .hero-stats {
        justify-items: center;
    }
    
    .hero-split-content .hero-stat {
        text-align: center;
    }
    
    .hero-split-image {
        padding: 30px 20px;
        order: -1;
        min-height: 300px;
    }
    
    .hero-image-wrapper {
        height: 80%;
        max-height: 350px;
        border-radius: var(--radius);
    }
    
    .image-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 16px;
        gap: 12px;
    }
    
    .image-badge-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .image-badge-text .badge-number {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-split-content {
        padding: 80px 0 30px;
    }
    
    .hero-split-content .hero-title {
        font-size: 32px;
    }
    
    .hero-split-content .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-split-content .hero-text {
        font-size: 14px;
    }
    
    .hero-split-content .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
        margin-top: 24px;
        padding-top: 20px;
    }
    
    .hero-split-content .hero-stat .number {
        font-size: 22px;
    }
    
    .hero-split-image {
        padding: 20px 16px;
        min-height: 250px;
    }
    
    .hero-image-wrapper {
        height: 75%;
        max-height: 280px;
    }
    
    .image-badge {
        padding: 8px 14px;
        gap: 10px;
    }
    
    .image-badge-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .image-badge-text .badge-number {
        font-size: 14px;
    }
    
    .image-badge-text .badge-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-split-content .hero-title {
        font-size: 26px;
    }
    
    .hero-split-content .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-split-content .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .hero-split-content .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-split-content .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .hero-split-image {
        padding: 16px 12px;
        min-height: 200px;
    }
    
    .hero-image-wrapper {
        height: 70%;
        max-height: 220px;
    }
    
    .image-badge {
        bottom: 12px;
        left: 12px;
        padding: 6px 10px;
        gap: 8px;
    }
    
    .image-badge-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
    
    .image-badge-text .badge-number {
        font-size: 12px;
    }
    
    .image-badge-text .badge-label {
        font-size: 8px;
    }
}
/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.6); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary i {
    transition: var(--transition);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-accent {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 140, 245, 0.35);
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .badge {
    display: inline-block;
    background: rgba(26, 140, 245, 0.08);
    color: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header .underline {
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    margin: 0 auto 16px;
    border-radius: 4px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.about-text .subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-text .highlight-text {
    background: var(--light-gray);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    margin: 20px 0;
}

.about-text .highlight-text p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-primary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 60px 0;
    background: var(--primary-gradient-dark);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item .number {
    font-size: 42px;
    font-weight: 800;
    display: block;
    line-height: 1.1;
}

.stat-item .label {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 8px;
}

/* ========================================
   HISTORY SECTION
   ======================================== */
.history {
    padding: 80px 0;
    background: var(--off-white);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.history-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.history-timeline {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid var(--accent);
}

.history-timeline .event {
    margin-bottom: 24px;
}

.history-timeline .year {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.history-timeline .desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.history-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.value-card {
    background: var(--off-white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   PRINCIPALS SECTION
   ======================================== */
.principals {
    padding: 80px 0;
    background: var(--off-white);
}

.principals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.principal-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.principal-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.principal-item .icon {
    font-size: 32px;
    color: var(--accent);
}

.principal-item .name {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 8px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
}

.gallery-item .overlay .tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.gallery-item .overlay .title {
    font-size: 18px;
    font-weight: 600;
}

/* ========================================
   PLEDGE SECTION
   ======================================== */
.pledge-section {
    padding: 80px 0;
    background: var(--off-white);
}

.pledge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pledge-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.pledge-content {
    padding: 20px;
}

.pledge-text .quote {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.pledge-text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.pledge-text .highlight-pledge {
    background: var(--light-gray);
    padding: 20px 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
    font-style: italic;
    color: var(--text-primary);
}

.pledge-text .pledge-footer {
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.pledge-signature {
    text-align: right;
    font-size: 18px;
    color: var(--primary-dark);
    margin-top: 10px;
}

/* ========================================
   COMMUNITY SECTION
   ======================================== */
.community-section {
    padding: 80px 0;
    background: var(--white);
}

.outreach-banner {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.outreach-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.community-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.community-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.community-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.community-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 42, 74, 0.9), transparent);
    color: var(--white);
}

.community-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.community-overlay p {
    font-size: 14px;
    opacity: 0.85;
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.awards-section {
    padding: 80px 0;
    background: var(--off-white);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.award-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.award-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.award-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--light-gray);
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.award-card:hover .award-image img {
    transform: scale(1.03);
}

.award-content {
    padding: 24px;
}

.award-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.award-subtitle {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.award-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.award-year {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.award-tag {
    display: inline-block;
    background: rgba(26, 140, 245, 0.08);
    color: var(--accent);
    padding: 3px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.award-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.award-quote {
    font-style: italic;
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 500;
    margin-top: 8px;
    padding: 10px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.award-card:last-child .award-image {
    height: 200px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--primary-gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content .badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
    padding: 140px 0 60px;
    background: var(--primary-gradient-dark);
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(6px);
    background: rgba(26, 140, 245, 0.04);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item p {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--off-white);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(26, 140, 245, 0.06);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    position: relative;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Custom Pin Overlay */
.map-pin-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
    animation: bounce-pin 2s ease-in-out infinite;
}

@keyframes bounce-pin {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -60%) scale(1.05); }
}

.map-pin {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 20px 12px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.map-pin .pin-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 140, 245, 0.3);
}

.map-pin .pin-label {
    display: flex;
    flex-direction: column;
}

.map-pin .pin-label strong {
    font-size: 14px;
    color: var(--primary-dark);
    font-weight: 700;
}

.map-pin .pin-label span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Pulse ring around pin */
.map-pin-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26, 140, 245, 0.15);
    animation: pulse-ring 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.map-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--off-white);
    padding: 24px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.map-address i {
    font-size: 28px;
    color: var(--accent);
    margin-top: 4px;
}

.map-address h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.map-address p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.map-actions {
    flex-shrink: 0;
}

.map-actions .btn {
    padding: 12px 28px;
    font-size: 14px;
}

/* ========================================
   MESSAGES
   ======================================== */
.messages {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 90%;
    max-width: 500px;
}

.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.5s ease forwards;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #f8bbd0;
}

.alert-warning {
    background: #fff8e1;
    color: #f57f17;
    border: 1px solid #ffecb3;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-section h3 .accent {
    color: var(--accent-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    transition: var(--transition);
    font-size: 14px;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-section i {
    width: 22px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

/* Footer Logo Fix */
.footer-section img {
    filter: none !important;
    background: transparent;
}

.footer-section .brand-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section .brand-footer-logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   RESPONSIVE - TABLETS & BELOW
   ======================================== */
@media (max-width: 1024px) {
    .hero-split-content .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-split-content {
        padding: 120px 0 60px;
        background: var(--primary-gradient-dark);
    }
    
    .hero-split-content .container {
        padding: 0 24px;
    }
    
    .hero-content-inner {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-split-content .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-split-content .hero-buttons {
        justify-content: center;
    }
    
    .hero-split-content .hero-stats {
        justify-items: center;
    }
    
    .hero-split-content .hero-stat {
        text-align: center;
    }
    
    .hero-split-image {
        height: 400px;
        max-height: 400px;
        order: -1;
    }
    
    .hero-image-wrapper img {
        object-fit: cover;
        object-position: center 30%;
    }
    
    .image-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
    }
    
    .image-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .image-badge-text .badge-number {
        font-size: 18px;
    }
    
    .about-grid,
    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pledge-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        background: var(--white);
        padding: 24px;
        gap: 16px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-light);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        color: var(--text-dark);
    }
    
    .nav-link:hover {
        color: var(--accent);
    }
    
    .navbar.scrolled .nav-link {
        color: var(--text-dark);
    }
    
    .hero-split-content {
        padding: 100px 0 40px;
    }
    
    .hero-split-content .hero-title {
        font-size: 36px;
    }
    
    .hero-split-content .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-split-content .hero-text {
        font-size: 15px;
    }
    
    .hero-split-content .hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
        padding-top: 24px;
    }
    
    .hero-split-content .hero-stat .number {
        font-size: 24px;
    }
    
    .hero-split-image {
        height: 300px;
        max-height: 300px;
    }
    
    .image-badge {
        padding: 10px 14px;
        gap: 10px;
    }
    
    .image-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .image-badge-text .badge-number {
        font-size: 16px;
    }
    
    .image-badge-text .badge-label {
        font-size: 10px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .principals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-item .number {
        font-size: 30px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .award-image {
        height: 160px;
    }
    
    .award-content {
        padding: 18px;
    }
    
    .award-content h4 {
        font-size: 17px;
    }
    
    .community-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pledge-text .quote {
        font-size: 20px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-pin {
        padding: 8px 14px 8px 10px;
    }
    
    .map-pin .pin-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .map-pin .pin-label strong {
        font-size: 12px;
    }
    
    .map-pin .pin-label span {
        font-size: 10px;
    }
    
    .map-pin-overlay::before {
        width: 50px;
        height: 50px;
    }
    
    .map-details {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .map-address {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions {
        width: 100%;
    }
    
    .map-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 480px) {
    .hero-split-content .hero-title {
        font-size: 28px;
    }
    
    .hero-split-content .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-split-content .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-split-content .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-split-content .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-split-image {
        height: 250px;
        max-height: 250px;
    }
    
    .image-badge {
        bottom: 12px;
        left: 12px;
        padding: 8px 12px;
        gap: 8px;
    }
    
    .image-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .image-badge-text .badge-number {
        font-size: 14px;
    }
    
    .image-badge-text .badge-label {
        font-size: 9px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .principals-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-image {
        height: 200px;
    }
    
    .community-grid {
        grid-template-columns: 1fr;
    }
    
    .pledge-text .quote {
        font-size: 18px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .map-pin {
        padding: 6px 10px 6px 8px;
        gap: 8px;
    }
    
    .map-pin .pin-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .map-pin .pin-label strong {
        font-size: 11px;
    }
    
    .map-pin .pin-label span {
        font-size: 9px;
    }
    
    .map-pin-overlay::before {
        width: 40px;
        height: 40px;
    }
}

/* ===== CATALOGUE STYLES ===== */
.catalogue-hero {
    padding: 140px 0 60px;
    background: var(--primary-gradient-dark);
    text-align: center;
    color: var(--white);
}

.catalogue-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.catalogue-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.catalogue-note {
    display: inline-block;
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.catalogue-note i {
    margin-right: 8px;
    color: var(--accent-light);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.product-rank {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-gradient);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    padding-right: 30px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.product-unit {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-add {
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-tab {
    background: var(--off-white);
    border: 1px solid var(--border-light);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.filter-tab:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-tab.active {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .catalogue-hero h1 {
        font-size: 32px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-card {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ORDER LIST STYLES ===== */

/* Order List Toggle Button */
.order-list-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(26, 140, 245, 0.4);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-list-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 140, 245, 0.5);
}

.order-list-toggle .order-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Order List Sidebar */
.order-list-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.order-list-sidebar.open {
    right: 0;
}

.order-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--primary-gradient-dark);
    color: var(--white);
    flex-shrink: 0;
}

.order-list-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-order-list {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.close-order-list:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.order-list-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.empty-order-msg {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
    font-size: 16px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.order-item:hover {
    border-color: var(--accent);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.order-item-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

.order-item-price {
    font-weight: 600;
    color: var(--accent);
    font-size: 14px;
}

.btn-remove-item {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 16px;
    transition: var(--transition);
    border-radius: 50%;
}

.btn-remove-item:hover {
    background: rgba(255, 71, 87, 0.1);
    transform: scale(1.1);
}

.order-list-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border-light);
    background: var(--off-white);
    flex-shrink: 0;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.order-total span:last-child {
    color: var(--accent);
}

.order-actions {
    display: flex;
    gap: 12px;
}

.order-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 12px;
}

.btn-clear {
    background: var(--light-gray);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.btn-clear:hover {
    background: #ff4757;
    color: var(--white);
    border-color: #ff4757;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.btn-add,
.btn-remove {
    flex: 1;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add {
    background: var(--accent-gradient);
    color: var(--white);
}

.btn-add:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-remove {
    background: #ff4757;
    color: var(--white);
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.3);
}

.btn-remove.added {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .order-list-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .order-list-toggle {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
    
    .order-actions {
        flex-direction: column;
    }
}