/* About Us Page Styles */

/* CSS Variables */
:root {
    --dark-cornflower-blue: #253C80;
    --cg-red: #DC4226;
    --white: #ffffff;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --gradient-primary: linear-gradient(135deg, var(--dark-cornflower-blue) 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cg-red) 0%, #ef4444 100%);
    --gradient-hero: linear-gradient(135deg, rgba(37, 60, 128, 0.95) 0%, rgba(220, 66, 38, 0.9) 50%, rgba(0, 0, 0, 0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-mesh: conic-gradient(from 0deg at 50% 50%, #667eea 0deg, #764ba2 60deg, #f093fb 120deg, #4facfe 180deg, #00f2fe 240deg, #667eea 360deg);

    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-neumorphism-light: 20px 20px 60px #d1d9e6, -20px -20px 60px #ffffff;
    --shadow-neumorphism-dark: 20px 20px 60px #0c0c0c, -20px -20px 60px #1a1a1a;
    --shadow-floating: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --border-glass: 1px solid rgba(255, 255, 255, 0.18);
    --backdrop-blur: blur(20px);

    --animation-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --animation-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --animation-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
    cursor: auto !important;
}

/* Ensure cursor visibility across all elements on about page */
html, body {
    cursor: auto !important;
}

/* Ensure all pseudo-elements don't interfere with cursor */
*::before, *::after {
    pointer-events: none !important;
}

/* Fix specific cursor issues on about page decorative elements */
.page-loader,
.parallax-layers,
.hero-background-shapes,
.hero-particles,
.floating-shape,
.value-particle,
.loader-particles,
.scroll-indicator,
.floating-particles,
.geometric-shapes {
    pointer-events: none !important;
}

/* Ensure interactive elements maintain proper cursor */
.team-member,
.cta-primary,
.cta-secondary,
.btn,
button,
a,
input,
select,
textarea {
    cursor: pointer !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    cursor: text !important;
}

/* Ensure modal and notification elements have proper cursor */
.page-loader,
.notification {
    cursor: auto !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 50%, var(--gray-900) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    color: var(--white);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease;
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loader-logo {
    width: 200px;
    height: 100px;
    margin: 0 auto 40px;
    color: var(--cg-red);
}

.loader-lines {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLines 2s ease-in-out infinite;
}

.loader-circle {
    stroke-dasharray: 188;
    stroke-dashoffset: 188;
    animation: drawCircle 2s ease-in-out infinite 0.5s;
}

.loader-text {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 30px;
}

.loader-text .letter {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    animation: letterBounce 1.4s ease-in-out infinite;
}

.loader-text .letter:nth-child(1) { animation-delay: 0s; }
.loader-text .letter:nth-child(2) { animation-delay: 0.1s; }
.loader-text .letter:nth-child(3) { animation-delay: 0.2s; }
.loader-text .letter:nth-child(4) { animation-delay: 0.3s; }
.loader-text .letter:nth-child(5) { animation-delay: 0.4s; }
.loader-text .letter:nth-child(6) { animation-delay: 0.5s; }
.loader-text .letter:nth-child(7) { animation-delay: 0.6s; }

.loader-progress {
    width: 300px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    width: 0;
    border-radius: 2px;
    animation: progressLoad 3s ease-out;
}

.progress-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
}

.loader-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.loader-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cg-red);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.loader-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.loader-particles .particle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: -1s;
}

.loader-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: -2s;
}

.loader-particles .particle:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: -0.5s;
}

.loader-particles .particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: -1.5s;
}

/* Page Background */
.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: var(--gradient-mesh);
    opacity: 0.05;
    animation: meshRotate 30s linear infinite;
}

.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.constellation {
    position: relative;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--cg-red);
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--cg-red);
}

.star:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.star:nth-child(2) { top: 25%; right: 15%; animation-delay: -1s; }
.star:nth-child(3) { top: 60%; left: 10%; animation-delay: -2s; }
.star:nth-child(4) { bottom: 30%; right: 20%; animation-delay: -0.5s; }
.star:nth-child(5) { top: 40%; left: 70%; animation-delay: -1.5s; }
.star:nth-child(6) { bottom: 50%; left: 50%; animation-delay: -2.5s; }
.star:nth-child(7) { top: 80%; right: 40%; animation-delay: -3s; }
.star:nth-child(8) { top: 15%; left: 80%; animation-delay: -0.8s; }

.geometric-patterns {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pattern {
    position: absolute;
    opacity: 0.02;
    animation: patternFloat 20s ease-in-out infinite;
}

.hexagon-pattern {
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: var(--dark-cornflower-blue);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation-delay: 0s;
}

.triangle-pattern {
    top: 60%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--cg-red);
    animation-delay: -5s;
}

.circle-pattern {
    bottom: 30%;
    left: 70%;
    width: 60px;
    height: 60px;
    background: var(--dark-cornflower-blue);
    border-radius: 50%;
    animation-delay: -10s;
}

.section-transitions {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.wave-transition {
    position: absolute;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(37, 60, 128, 0.1), transparent);
    opacity: 0;
    transform: translateX(-100%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: var(--border-glass);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-glass);
}

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

.logo-svg {
    width: 160px;
    height: 45px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-svg:hover {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--dark-cornflower-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cg-red);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sound-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: transparent;
    border-radius: 50%;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-toggle:hover {
    background: var(--cg-red);
    color: var(--white);
    border-color: var(--cg-red);
    transform: scale(1.1);
}

.sound-toggle.muted {
    background: var(--gray-200);
    color: var(--gray-400);
}

.book-now-btn {
    background: var(--dark-cornflower-blue);
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-now-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.5s ease;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: var(--cg-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 66, 38, 0.3);
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

.location-selector:hover {
    border-color: var(--dark-cornflower-blue);
    color: var(--dark-cornflower-blue);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
    background: transparent;
    border: none;
    outline: none;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--cg-red);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--cg-red);
}

/* Hero Section - Modern & Clean Design */
.hero-about {
    position: relative;
    min-height: auto;
    padding: 140px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    color: #1e293b;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(248, 250, 252, 0.9) 0%,
        rgba(241, 245, 249, 0.8) 50%,
        rgba(226, 232, 240, 0.9) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 60, 128, 0.02) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px;
    animation: patternMove 60s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 60px 60px, 80px 80px; }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
    position: relative;
    z-index: 2;
}

.parallax-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--backdrop-blur);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 10%;
    right: 30%;
    animation-delay: -7s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.value-particle {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--backdrop-blur);
    border: var(--border-glass);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: particleDrift 20s linear infinite;
    opacity: 0.8;
}

.value-particle[data-value="Trust"] {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.value-particle[data-value="Innovation"] {
    top: 40%;
    right: 20%;
    animation-delay: -5s;
}

.value-particle[data-value="Excellence"] {
    bottom: 30%;
    left: 25%;
    animation-delay: -10s;
}

.value-particle[data-value="Service"] {
    top: 70%;
    right: 15%;
    animation-delay: -15s;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    height: 300px;
    max-width: 300px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    font-size: 1.8rem;
}

.hero-img:hover {
    transform: translateY(-10px);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(220, 66, 38, 0.1) 0%, rgba(37, 60, 128, 0.1) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(220, 66, 38, 0.2);
    border-radius: 50%;
    animation: circleRotate 20s linear infinite;
}

.decoration-dots {
    position: absolute;
    bottom: 40px;
    left: -40px;
    width: 80px;
    height: 80px;
    background-image:
        radial-gradient(circle, rgba(37, 60, 128, 0.3) 2px, transparent 2px);
    background-size: 20px 20px;
}

@keyframes circleRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--backdrop-blur);
    border: var(--border-glass);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1e293b;
}

.title-main {
    display: block;
    font-size: 4rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #dc4226 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.title-line {
    display: block;
    animation: titleReveal 1s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-line-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    animation: titleReveal 1s ease-out both;
    animation-delay: 0.6s;
}

.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cg-red);
    color: var(--white);
    transform: translateX(-100%);
    animation: textReveal 1s ease-out both;
}

.hero-description {
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-description p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--backdrop-blur);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cg-red);
    margin-bottom: 0.5rem;
    display: block;
}

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

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--animation-spring);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(220, 66, 38, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}

.cta-secondary:hover {
    color: #dc4226;
    border-bottom-color: #dc4226;
}

.cta-secondary i {
    transition: transform 0.3s ease;
}

.cta-secondary:hover i {
    transform: translateX(5px);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: particleMove 2s linear infinite;
    opacity: 0;
}

.cta-primary:hover .btn-particles {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounceUpDown 2s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-bottom: 8px;
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mouse-follower {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--cg-red) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Story Timeline */
.story-timeline {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 0;
}

.timeline-progress {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    transform: translateX(-50%);
}

.progress-line {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    border-radius: 2px;
}

.progress-fill {
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: height 1s ease;
}

.timeline-items {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
    padding-left: 60px;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    left: 20px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    border: 4px solid var(--dark-cornflower-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: var(--shadow-floating);
}

.marker-icon {
    font-size: 1rem;
    color: var(--dark-cornflower-blue);
    animation: iconPulse 2s ease-in-out infinite;
}

.marker-pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--cg-red);
    border-radius: 50%;
    animation: pulseRing 2s ease-in-out infinite;
    opacity: 0;
}

.timeline-content {
    width: 100%;
    margin-left: 0;
}

.timeline-card {
    position: relative;
    width: 100%;
    height: 300px;
    cursor: pointer;
    perspective: 1000px;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.8s ease;
}

.card-front {
    background: var(--gradient-glass);
    backdrop-filter: var(--backdrop-blur);
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-back {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.timeline-card:hover .card-front {
    transform: rotateY(180deg);
}

.timeline-card:hover .card-back {
    transform: rotateY(0);
}

.card-front h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.card-front p {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 3rem;
    color: var(--cg-red);
    opacity: 0.7;
}

.card-back h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-back p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-back ul {
    list-style: none;
    padding: 0;
}

.card-back li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.card-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
}

/* Mission & Vision */
.mission-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: var(--gradient-glass);
    backdrop-filter: var(--backdrop-blur);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

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

.card-background {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
}

.animated-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cg-red);
    font-size: 2.5rem;
}

.icon-orbit {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--cg-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: orbitRotate 10s linear infinite;
}

.icon-orbit::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--cg-red);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: orbitPoint 10s linear infinite;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.card-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-weight: 500;
}

.feature-item i {
    color: var(--cg-red);
    font-size: 1.1rem;
}

/* Core Values Wheel */
.core-values {
    padding: 120px 0;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 66, 38, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.values-wheel {
    position: relative;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 0;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.wheel-center {
    grid-column: 1 / -1;
    position: static;
    transform: none;
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-floating);
    z-index: 3;
    animation: centerPulse 3s ease-in-out infinite;
}

.center-icon {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 5px;
}

.center-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.value-item {
    position: static;
    width: auto;
    height: auto;
    transform: none !important;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 280px;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-floating);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.value-content {
    text-align: center;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 20px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-item:hover .value-content {
    background: rgba(255, 255, 255, 0.15);
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.value-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}


.progress-ring {
    position: relative;
    margin: 0 auto;
}

.progress-circle {
    transform: rotate(-90deg);
}

.progress-circle circle:first-child {
    stroke: rgba(255, 255, 255, 0.2);
}

.progress-circle .progress-bar {
    stroke: var(--cg-red);
    stroke-linecap: round;
    stroke-dasharray: 219.8;
    stroke-dashoffset: 219.8;
    transition: stroke-dashoffset 1s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

/* Team Section - Enhanced for Director */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 60, 128, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    animation: teamPatternMove 60s linear infinite;
    pointer-events: none;
}

@keyframes teamPatternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 80px 80px; }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.member-card {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin: 0 auto;
    max-width: 350px;
}

.member-card:hover {
    transform: translateY(-10px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.member-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.card-front {
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 25px rgba(220,66,38,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
}

.card-back {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-image {
    position: relative;
    width: 100%;
    height: 70%;
    overflow: hidden;
}

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

.member-card:hover .member-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: var(--white);
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
    backdrop-filter: blur(10px);
}

.member-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.member-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.member-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-size: 1.2rem;
    z-index: 4;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: crownGlow 3s ease-in-out infinite;
}

@keyframes crownGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
        transform: scale(1.05);
    }
}

.member-bio h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.member-bio .role {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.member-bio .description {
    line-height: 1.6;
    margin-bottom: 25px;
}

.member-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--dark-cornflower-blue);
    transform: translateY(-3px);
}

/* Why Choose Us */
.why-choose-us {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-floating);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.advantage-card:hover::before {
    transform: translateX(0);
}

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

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

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.advantage-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-800);
}

.card-content p {
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.advantage-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-700);
    font-weight: 500;
}

.stat-progress {
    position: relative;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

.stat-value {
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-cornflower-blue);
}

/* Awards Section */
.awards-section {
    padding: 120px 0;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(220, 66, 38, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.awards-showcase {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.award-item {
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 0.8s ease;
}

.award-item.unlock {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trophy-container {
    position: relative;
    width: 120px;
    height: 150px;
    margin: 0 auto 20px;
    perspective: 1000px;
}

.trophy-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border-radius: 10px;
    box-shadow: var(--shadow-floating);
}

.trophy-cup {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gray-800);
    box-shadow: var(--shadow-floating);
    animation: trophyFloat 3s ease-in-out infinite;
}

.trophy-shine {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 15px;
    height: 50px;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.6), transparent);
    border-radius: 5px;
    animation: trophyShine 4s ease-in-out infinite;
}

.award-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.award-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.award-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--gradient-secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-stack {
    position: relative;
    height: auto;
    perspective: 1000px;
}

.testimonial-card {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 20px;
}

.testimonial-card.active {
    transform: translateZ(0) scale(1);
    opacity: 1;
    z-index: 2;
}

.testimonial-card.prev {
    transform: translateZ(-100px) translateX(-200px) rotateY(15deg) scale(0.9);
    opacity: 0.7;
    z-index: 1;
}

.testimonial-card.next {
    transform: translateZ(-100px) translateX(200px) rotateY(-15deg) scale(0.9);
    opacity: 0.7;
    z-index: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.customer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 5px;
}

.customer-details p {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.rating {
    display: flex;
    gap: 2px;
    color: #ffc107;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 3rem;
    color: var(--cg-red);
    opacity: 0.3;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin: 0;
    padding-left: 30px;
}

.carousel-controls {
    display: none;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--cg-red);
    background: transparent;
    border-radius: 50%;
    color: var(--cg-red);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--cg-red);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--cg-red);
    transform: scale(1.2);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--cg-red);
    box-shadow: 0 5px 15px rgba(220, 66, 38, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--cg-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    background: var(--gray-50);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.pulse-rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseExpand 3s ease-in-out infinite;
}

.pulse-ring:nth-child(1) { animation-delay: 0s; }
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all var(--animation-spring);
}

.cta-btn.primary {
    background: var(--cg-red);
    color: var(--white);
    border: 2px solid var(--cg-red);
}

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

.cta-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: var(--backdrop-blur);
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.cta-btn.primary:hover {
    box-shadow: 0 15px 30px rgba(220, 66, 38, 0.4);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--dark-cornflower-blue);
}

.cta-btn.tertiary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-ripple,
.btn-magnetic-field,
.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-ripple {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rippleEffect 0.6s ease-out;
}

.btn-magnetic-field {
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: magneticSweep 1s ease-in-out infinite;
}

.btn-glow {
    background: rgba(255, 255, 255, 0.2);
    animation: glowPulse 2s ease-in-out infinite;
}

.cta-btn:hover .btn-ripple,
.cta-btn:hover .btn-magnetic-field,
.cta-btn:hover .btn-glow {
    opacity: 1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #020617 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(220, 66, 38, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(37, 60, 128, 0.02) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
    background-size: 40px 40px, 30px 30px, 25px 25px, 25px 25px;
    background-position: 0 0, 20px 20px, 0 0, 0 0;
    animation: patternMove 80s linear infinite;
    z-index: 1;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-70px, -70px);
    }
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--cg-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cg-red);
    border-radius: 1px;
}

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

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    color: var(--white);
    background: var(--cg-red);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(220, 66, 38, 0.3);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 0;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cg-red);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Easter Egg Modal */
.easter-egg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.easter-egg-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--backdrop-blur);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    max-width: 500px;
    width: 90%;
}

.easter-egg-modal.active .modal-container {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: var(--gradient-primary);
    color: var(--white);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.modal-content {
    padding: 30px;
}

.easter-egg-animation {
    text-align: center;
    position: relative;
}

.confetti {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="45" y="45" width="10" height="10" fill="%23DC4226"/></svg>') repeat;
    animation: confettiFall 3s ease-in-out infinite;
    opacity: 0.7;
}

.special-offer {
    position: relative;
    z-index: 2;
}

.special-offer i {
    font-size: 3rem;
    color: var(--cg-red);
    margin-bottom: 20px;
    animation: giftBounce 1s ease-in-out infinite;
}

.special-offer h4 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 15px;
}

.special-offer p {
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.offer-code {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-floating);
    padding: 16px 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    border-left: 4px solid var(--cg-red);
    backdrop-filter: var(--backdrop-blur);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #10b981;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification.success .notification-icon {
    color: #10b981;
}

.notification.error .notification-icon {
    color: var(--cg-red);
}

.notification-text {
    font-weight: 500;
    color: var(--gray-800);
}

/* Animations */
@keyframes drawLines {
    0%, 100% {
        stroke-dashoffset: 200;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCircle {
    0%, 100% {
        stroke-dashoffset: 188;
    }
    50% {
        stroke-dashoffset: 0;
    }
}

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

@keyframes progressLoad {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

@keyframes meshRotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes patternFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes particleDrift {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-30px) translateX(20px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(30deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

@keyframes particleMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 20px 20px;
    }
}

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

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

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

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

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitPoint {
    from {
        transform: translateX(-50%) rotate(0deg) translateX(50px) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: var(--shadow-floating);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: var(--shadow-floating), 0 0 30px rgba(220, 66, 38, 0.3);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes trophyFloat {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes trophyShine {
    0%, 100% {
        opacity: 0;
        transform: translateX(-10px);
    }
    50% {
        opacity: 1;
        transform: translateX(10px);
    }
}

@keyframes pulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes magneticSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

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

@keyframes confettiFall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100%) rotate(360deg);
        opacity: 0;
    }
}

@keyframes giftBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Design */

/* Ensure mobile menu toggle is hidden on desktop */
@media (min-width: 993px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet and larger mobile styles */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 80px 0 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        display: block !important;
    }

    .main-nav.active {
        left: 0;
    }

    /* Mobile overlay styles */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when mobile menu is open */
    body.mobile-menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        font-weight: 500;
        color: var(--gray-700);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--cg-red);
        background: rgba(220, 66, 38, 0.05);
        padding-left: 10px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .header-actions .location-selector,
    .header-actions .sound-toggle {
        display: none;
    }

}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-img {
        height: 400px;
        max-width: 400px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .title-main {
        font-size: 3.5rem;
    }

    .title-sub {
        font-size: 2.2rem;
    }

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

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-wheel {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .value-item {
        min-height: 250px;
        padding: 25px 15px;
    }

    .awards-showcase {
        gap: 40px;
    }

    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .header-actions .location-selector,
    .header-actions .sound-toggle {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-img {
        height: 300px;
        max-width: 300px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.8rem;
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .cta-primary {
        justify-content: center;
    }

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

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

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        text-align: left;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .timeline-progress {
        left: 40px;
    }

    .timeline-marker {
        left: 40px;
    }

    .values-wheel {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .value-item {
        min-height: 200px;
        padding: 20px 15px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer::before {
        background-size: 40px 40px, 30px 30px, 25px 25px, 25px 25px;
    }

    .footer-content {
        padding: 30px 20px;
        margin-bottom: 30px;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

    .hero-img {
        height: 250px;
        max-width: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.4rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

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

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

    .timeline-card {
        height: 250px;
    }

    .card-front,
    .card-back {
        padding: 20px;
    }

    .values-wheel {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .value-item {
        min-height: 180px;
        padding: 15px 10px;
    }

    .wheel-center {
        width: 80px;
        height: 80px;
    }

    .center-icon {
        font-size: 1.5rem;
    }

    .member-card {
        height: 350px;
    }

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

    .customer-info {
        flex-direction: column;
        text-align: center;
    }
}

/* Performance Optimizations */
.hero-about,
.story-timeline,
.mission-vision,
.core-values,
.team-section,
.why-choose-us,
.awards-section,
.testimonials-section,
.faq-section,
.cta-section {
    will-change: transform;
    transform: translateZ(0);
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --gray-100: #ffffff;
        --gray-200: #e0e0e0;
        --gray-300: #c0c0c0;
        --gray-600: #404040;
        --gray-700: #202020;
        --gray-800: #000000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 4px;
}

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