/* ==========================================================================
   AsaBee Consulting - Modern Website Styles
   Version: 2.0.1 - Contact Section Speed Optimization
   ========================================================================== */

/* CSS Variables - Luxury Design System */
:root {
    /* Primary Colors */
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --primary-light: #3385d6;
    --secondary-color: #00b8d4;
    --accent-color: #ff6b35;
    
    /* Background Colors */
    --dark-bg: #0a1628;
    --light-bg: #dde0e6;
    --white: #ffffff;
    --rich-bg: #e5e8ed;
    --career-card-bg: #f0f2f5;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #ffffff;
    
    /* Border Colors */
    --border-color: #c5c9d1;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 40px;
    --container-max-width: 1200px;
    
    /* Typography */
    --font-primary: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.4s ease;
    --transition-slow: 0.6s ease;
    
    /* Shadows */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.12);
    --shadow-medium: 0 8px 28px rgba(0, 0, 0, 0.16);
    --shadow-large: 0 16px 56px rgba(0, 0, 0, 0.20);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00b8d4 0%, #00e5ff 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #1a2838 100%);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Container - Apple Width */
.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Section Styles - Apple Minimal */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Remove decorative separator */
section::before {
    content: none;
}

/* Apple subtle backgrounds */
section:nth-child(odd):not(.cta-section):not(.hero) {
    background-color: var(--white);
}

section:nth-child(even):not(.cta-section):not(.hero) {
    background-color: var(--light-gray);
}

/* Section Header - Apple Style */
.section-header {
    text-align: center;
    margin-bottom: 65px;
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 2px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.12), transparent);
    transition: left 0.8s ease;
}

.section-label:hover::before {
    left: 100%;
}
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    background: var(--gradient-primary);
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    line-height: 1.0834933333;
    letter-spacing: -0.005em;
    position: relative;
}

.section-title::after {
    content: none;
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.section-header.align-left .title-underline {
    margin: 0 0 20px 0;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 19.8px 0;
    --navbar-blur: 0px;
    --navbar-saturation: 100%;
    --navbar-opacity: 0;
    will-change: background, backdrop-filter, box-shadow, padding;
    transition: 
        background 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        backdrop-filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        padding 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-bottom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled::before {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, var(--navbar-opacity, 0.98)) 0%,
        rgba(255, 255, 255, calc(var(--navbar-opacity, 0.95) - 0.03)) 50%,
        rgba(255, 255, 255, calc(var(--navbar-opacity, 0.92) - 0.06)) 100%
    );
    opacity: 1;
}

.navbar.scrolled {
    backdrop-filter: blur(var(--navbar-blur, 20px)) saturate(var(--navbar-saturation, 180%));
    -webkit-backdrop-filter: blur(var(--navbar-blur, 20px)) saturate(var(--navbar-saturation, 180%));
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 16px 48px rgba(0, 113, 227, 0.04),
        0 0 1px rgba(0, 0, 0, 0.08),
        inset 0 -1px 2px rgba(0, 113, 227, 0.03);
    padding: 15.84px 0;
    border-bottom: 1px solid rgba(0, 113, 227, 0.12);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
}

.logo-image {
    height: 80.85px;
    width: auto;
    transition: height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    will-change: height;
    margin: -22.5px 0;
}

/* White logo visible by default, dark logo hidden */
.logo-white {
    display: block;
}

.logo-dark {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* When scrolled, hide white logo and show dark logo */
.navbar.scrolled .logo-white {
    display: none;
}

.navbar.scrolled .logo-dark {
    display: block;
}

.navbar.scrolled .logo-image {
    height: 69.3px;
    margin: -20.6px 0;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo-text {
    color: var(--primary-color);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar.scrolled .logo-subtitle {
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding: 10px 0;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 0.5px;
    will-change: color, transform;
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

/* English text display */
.nav-link .nav-text {
    display: inline-block;
    transition: opacity 0.2s ease;
}

/* Japanese text on hover */
.nav-link::before {
    content: attr(data-ja);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.nav-link:hover .nav-text {
    opacity: 0;
}

.nav-link:hover::before {
    opacity: 1;
}

/* Underline animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-color) 20%,
        var(--secondary-color) 80%,
        transparent 100%
    );
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
}

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

.nav-link.cta-btn {
    background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-blue-hover) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 113, 227, 0.25),
        0 2px 8px rgba(0, 113, 227, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.nav-link.cta-btn::before {
    display: none;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover .nav-text {
    opacity: 1;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 113, 227, 0.35),
        0 4px 12px rgba(0, 113, 227, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--apple-blue-hover) 0%, var(--apple-blue-hover) 100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-normal);
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--text-dark);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
    overflow: hidden;
    padding-top: 100px;
}

/* Prevent separator line on hero section */
.hero::after {
    content: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 113, 227, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 113, 227, 0.05) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

.title-line.highlight {
    background: linear-gradient(135deg, #0099ff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Animations - Optimized for faster response */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.6s ease-out 0.15s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out 0.3s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.6s ease-out 0.45s both;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   Page Hero (For Sub Pages)
   ========================================================================== */

.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c2c2c;
    overflow: hidden;
    padding-top: 100px; /* ナビゲーションバーの高さ分確保 */
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.95) 0%, rgba(35, 35, 35, 0.98) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--white);
}

.page-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.938rem;
    margin-top: 15px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition-normal);
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    font-size: 0.875rem;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats-section {
    background: var(--bg-white);
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.stats-section::before {
    display: none; /* Hide separator for stats section */
}

/* Add decorative pattern */
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(235, 238, 243, 0.95) 0%, rgba(220, 226, 235, 0.95) 100%);
    border: 2px solid rgba(0, 113, 227, 0.1);
    transition: all var(--transition-normal);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
    border-color: rgba(0, 113, 227, 0.3);
}

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

.stat-icon {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ==========================================================================
   News Section
   ========================================================================== */

.news-section {
    background: var(--bg-pearl);
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

/* Add newspaper pattern */
.news-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 300px;
    height: 300px;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(0, 113, 227, 0.02) 10px,
            rgba(0, 113, 227, 0.02) 11px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            rgba(0, 113, 227, 0.02) 10px,
            rgba(0, 113, 227, 0.02) 11px
        );
    transform: translateY(-50%);
    pointer-events: none;
}

.news-section::before {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--apple-blue) 0%, var(--primary-color) 100%);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    z-index: 1;
}

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

.news-card {
    background: linear-gradient(to bottom, #ffffff 0%, #dde0e6 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-normal);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
    border-color: rgba(0, 113, 227, 0.3);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f5fb 0%, #d5e5f5 100%);
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.news-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-category i {
    font-size: 0.875rem;
}

.category-achievement {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.15));
    color: #f57c00;
}

.category-announcement {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(0, 188, 212, 0.15));
    color: var(--primary-color);
}

.category-media {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15), rgba(103, 58, 183, 0.15));
    color: #7b1fa2;
}

.category-event {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.15));
    color: #388e3c;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.news-date i {
    color: var(--primary-light);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 3.5em;
}

.news-excerpt {
    font-size: 0.938rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 5em;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--apple-blue);
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.news-link:hover {
    gap: 12px;
    color: var(--apple-blue-hover);
}

.news-link i {
    font-size: 0.75rem;
}

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

/* News Modal */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-modal.active {
    display: flex;
    opacity: 1;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.news-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 1;
}

.news-modal.active .news-modal-content {
    transform: scale(1) translateY(0);
}

.news-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    z-index: 2;
}

.news-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.news-modal-body {
    padding: 50px;
}

.news-modal-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-modal-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.938rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.news-modal-date i {
    color: var(--primary-light);
}

.news-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 30px;
}

.news-modal-text {
    font-size: 1.063rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.news-modal-text p {
    margin-bottom: 1.5rem;
}

.news-modal-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.news-modal-text ul, .news-modal-text ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-modal-text li {
    margin-bottom: 0.5rem;
}

/* Hidden news items */
.hidden-news {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.hidden-news.show {
    display: block;
    animation: fadeInUp 0.5s ease forwards;
}

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

#toggleNewsBtn {
    transition: all 0.3s ease;
}

#toggleNewsIcon {
    transition: transform 0.3s ease;
}

#toggleNewsBtn.expanded #toggleNewsIcon {
    transform: rotate(180deg);
}

/* ==========================================================================
   Philosophy Section
   ========================================================================== */

.philosophy-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    position: relative;
    border-top: 1px solid rgba(0, 113, 227, 0.1);
    border-bottom: 1px solid rgba(0, 113, 227, 0.1);
    overflow: hidden;
}

/* Add abstract background pattern */
.philosophy-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.philosophy-section::before {
    width: 120px;
    height: 5px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.4);
    z-index: 1;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.philosophy-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.philosophy-quote {
    text-align: center;
    max-width: 800px;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.1);
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0.5;
}

.philosophy-quote h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quote-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-gray);
    font-style: italic;
}

.philosophy-text {
    max-width: 800px;
    text-align: center;
}

.philosophy-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

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

.pillar-card {
    background: linear-gradient(to bottom, #ffffff 0%, #e8eaf0 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition-slow);
    position: relative;
    box-shadow: var(--shadow-small);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.pillar-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
    border-color: rgba(0, 113, 227, 0.3);
}
    box-shadow: 0 16px 48px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    transition: transform var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
    animation: bounce-icon 0.6s ease;
}

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

.pillar-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pillar-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e7ed 100%);
    position: relative;
    border-top: 1px solid rgba(0, 113, 227, 0.1);
    border-bottom: 1px solid rgba(0, 113, 227, 0.1);
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-section::before {
    width: 120px;
    height: 5px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.4);
    z-index: 1;
}

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

.service-card {
    background: linear-gradient(to bottom, #f5f6f9 0%, #dde0e6 100%);
    padding: 28px 21px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition-slow);
    position: relative;
    box-shadow: var(--shadow-small);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

.service-card::after {
    content: none;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
    border-color: rgba(0, 113, 227, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, #ffffff 0%, #e0f2ff 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.service-icon {
    width: 63px;
    height: 63px;
    margin: 0 auto 18px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    transition: transform var(--transition-fast);
}

.service-icon::before {
    content: none;
}

.service-card:hover .service-icon {
    animation: bounce-icon 0.6s ease;
}

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

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 11px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card > p {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 0;
    font-size: 0.656rem;
    color: var(--text-gray);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.613rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.656rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
    cursor: pointer;
}

.service-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
    pointer-events: none;
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary-color);
    transform: translateX(3px);
}

.service-link:hover::before {
    width: 100%;
}

.service-link i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 113, 227, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.image-wrapper img {
    width: 100%;
    height: 480px;
    display: block;
    object-fit: cover;
    object-position: center 20%;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.2) 0%, rgba(0, 184, 212, 0.2) 100%);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-message h3 {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-message p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Message Expandable Section */
.message-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.message-expandable.expanded {
    max-height: 3000px;
}

.message-expandable .highlight-text {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 8px;
    margin: 25px 0;
    font-style: italic;
    font-weight: 500;
}

.message-expandable .final-message {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.read-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px auto;
    padding: 12px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-small);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.read-more-btn i {
    font-size: 0.875rem;
    transition: transform var(--transition-normal);
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

.signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.signature .name {
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.signature .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.about-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-small);
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.feature-item span {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==========================================================================
   Career Detail Section
   ========================================================================== */

.career-detail-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(0, 113, 227, 0.05);
}

.career-detail-section::before {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.career-detail-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.career-category {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

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

/* Career Grid */
.career-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.career-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

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

.career-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: var(--accent-color);
}

.career-card.highlight {
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.05) 0%, rgba(0, 184, 212, 0.05) 100%);
    border-color: var(--primary-light);
}

.career-card.current {
    background-color: var(--white);
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.15);
}

.career-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.career-company {
    font-size: 1.063rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    padding-right: 70px;
}

.career-company .company-link {
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
    position: relative;
}

.career-company .company-link:hover {
    color: var(--primary-color);
}

.career-company .company-link i {
    font-size: 0.875rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.career-company .company-link:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.career-positions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.career-position {
    font-size: 0.938rem;
    color: var(--text-gray);
    padding: 6px 12px;
    background-color: var(--white);
    border-radius: 6px;
    display: inline-block;
}

.career-card.current .career-position {
    background-color: var(--light-bg);
}

/* Advisor Grid */
.advisor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advisor-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.advisor-card.current {
    background-color: var(--white);
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.15);
}

.advisor-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.688rem;
    font-weight: 600;
}

.advisor-company {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    padding-right: 50px;
}

.advisor-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-style: italic;
}

.advisor-link {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--primary-color);
    font-size: 0.875rem;
    transition: var(--transition-normal);
}

.advisor-link:hover {
    color: var(--primary-dark);
    transform: scale(1.1);
}

/* Career Summary */
.career-summary {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
}

.summary-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

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

.summary-content p {
    font-size: 1.063rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.summary-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 184, 212, 0.1) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
}

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

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #66b3ff;
}

/* ==========================================================================
   Financial Report Section
   ========================================================================== */

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

.financial-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.financial-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.financial-intro p {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 500px;
    margin: 0 auto;
    justify-items: center;
}

.financial-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 400px;
}

.financial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.financial-year {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.financial-year i {
    font-size: 2rem;
    color: var(--primary-color);
}

.financial-year h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.financial-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.financial-period {
    font-size: 0.938rem;
    color: var(--text-gray);
}

.financial-status {
    font-size: 0.875rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.financial-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.938rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.financial-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.financial-btn.disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.financial-note {
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.financial-note p {
    font-size: 0.875rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.financial-note i {
    color: var(--primary-color);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    border-top: 1px solid rgba(0, 113, 227, 0.1);
    overflow: hidden;
}

/* Add wave pattern */
.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: 
        radial-gradient(ellipse at bottom, rgba(0, 113, 227, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-section::before {
    width: 120px;
    height: 5px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(0, 113, 227, 0.4);
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

/* ==========================================================================
   Contact Section - ULTRA FAST HOVER (0.2s) with Rich Easing
   ========================================================================== */

.info-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform, box-shadow;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.2), 
                0 20px 60px rgba(0, 113, 227, 0.1),
                0 0 0 1px rgba(0, 113, 227, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    will-change: transform;
    position: relative;
}

.info-icon::after {
    content: none;
}

.info-card:hover .info-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.5),
                0 12px 30px rgba(0, 102, 204, 0.3);
}



.info-card h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-card p,
.info-card a {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s ease;
}

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

.small-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.info-card a i.fa-external-link-alt {
    font-size: 0.75rem;
    margin-left: 5px;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 16px;
    transition: box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.contact-form-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.12),
                0 12px 40px rgba(0, 113, 227, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: var(--accent-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 1rem;
    font-family: var(--font-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    will-change: border-color, box-shadow;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

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

/* ==========================================================================
   Footer
   ========================================================================== */

/* ==========================================================================
   Career Details Page
   ========================================================================== */

.career-details-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Career Profile */
.career-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    margin-bottom: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #dde0e6 0%, #d2d6dd 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.1);
}

.career-profile-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.career-profile-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.career-profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.career-profile-info h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.career-profile-name-en {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-gray);
    margin: 0;
    letter-spacing: 1px;
}

.career-profile-role {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 10px 0;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 30px;
    display: inline-block;
    align-self: flex-start;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.career-profile-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

/* Career Section */
.career-section {
    margin-bottom: 80px;
}

.career-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Position Grid */
.position-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.position-card {
    position: relative;
    background: var(--white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.position-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-color);
}

.position-card:hover::before {
    opacity: 1;
}

.position-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
    letter-spacing: 0.5px;
}

.position-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.position-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 8px 0;
}

.position-description {
    font-size: 0.938rem;
    color: var(--text-gray);
    margin: 10px 0 0 0;
    line-height: 1.6;
}

.position-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-link:hover {
    color: var(--secondary-color);
    gap: 8px;
}

.position-link i {
    font-size: 0.75rem;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 50px;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    z-index: 1;
}

.timeline-year {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Career CTA */
.career-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #dde0e6 0%, #d2d6dd 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    margin-top: 80px;
}

.career-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 15px 0;
}

.career-cta p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin: 0 0 30px 0;
}

/* ==========================================================================
   Team Members Section
   ========================================================================== */

.team-section {
    padding: 80px 0;
    background: #e8eaf0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.15);
}

.team-card.founder {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.team-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #ffffff;
}

.team-card.founder .team-image {
    height: 100%;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4), 0 8px 24px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    z-index: 10;
}

.team-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.team-name-en {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    margin: -10px 0 0 0;
    font-style: italic;
    letter-spacing: 1px;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.team-description {
    font-size: 0.938rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 5px 0 0 0;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 184, 212, 0.1) 100%);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.813rem;
    font-weight: 600;
    border: 1px solid rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

.team-career {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.career-title {
    font-size: 0.938rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.career-title i {
    color: var(--primary-color);
    font-size: 1rem;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.career-list li {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.career-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.career-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.team-social {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.938rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.05);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.125rem;
}

/* ==========================================================================
   News Page
   ========================================================================== */

.news-page-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.news-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.news-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.news-item.compact {
    padding: 10px 15px;
    border-radius: 8px;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.news-item.compact .news-item-header {
    margin-bottom: 6px;
    gap: 8px;
}

.news-category {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-item.compact .news-category {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.625rem;
}

.news-category.important {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 100%);
    color: var(--white);
}

.news-category.service {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.news-category.member {
    background: linear-gradient(135deg, #00b8d4 0%, #00e5ff 100%);
    color: var(--white);
}

.news-category.event {
    background: linear-gradient(135deg, #7c4dff 0%, #9575ff 100%);
    color: var(--white);
}

.news-category.info {
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: var(--white);
}

.news-date {
    font-size: 0.938rem;
    color: var(--text-gray);
    font-weight: 500;
}

.news-item.compact .news-date {
    font-size: 0.75rem;
}

.news-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-item.compact .news-title {
    font-size: 1rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 1.063rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-item.compact .news-excerpt {
    font-size: 0.813rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.news-content {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.news-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.news-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 25px 0 15px;
}

.news-content ul {
    list-style: none;
    padding-left: 0;
}

.news-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.news-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.news-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.footer-logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-tagline {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.3;
    opacity: 1;
    margin-bottom: 20px;
}

.tagline-part {
    display: inline-block;
    color: var(--white);
}

.tagline-highlight {
    background: linear-gradient(135deg, #0099ff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-description {
    font-size: 0.938rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

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

/* Company Establishment Date Styling */
.footer-links li[style*="border-top"] {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: default;
}

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.member-role {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
    font-weight: 400;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-normal);
}

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

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }