html {
    scroll-behavior: smooth;
}

/* Dark Header Override */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

.logo img {
    height: 36px;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #F5F5F5;
    margin-left: 12px;
}

header nav {
    display: flex;
    gap: 45px;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: block;
}

.nav-item>a:hover,
.nav-item>a.active {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(229, 57, 53, 0.6), 0 0 40px rgba(229, 57, 53, 0.3);
}

/* 2-Depth Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-dropdown a i {
    font-size: 12px;
    width: 16px;
    text-align: center;
    color: var(--primary-color);
    opacity: 0.7;
}

.nav-dropdown a:hover {
    background: rgba(229, 57, 53, 0.1);
    color: #fff;
}

.nav-dropdown a:hover i {
    opacity: 1;
}

@media (max-width: 1024px) {
    .nav-dropdown {
        display: none;
    }
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn-primary {
    padding: 12px 28px;
    background: var(--primary-color);
    color: #F5F5F5;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

.header-cta .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(229, 57, 53, 0.4);
}

.menu-toggle span {
    background: #F5F5F5;
}

@media (max-width: 1024px) {
    .header-cta {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 24px;
        height: 2px;
        background: #F5F5F5;
        transition: all 0.3s ease;
        display: block;
    }

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

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

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: #0a0a0f;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    header nav.active {
        opacity: 1;
        visibility: visible;
    }

    header nav .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header nav .nav-item > a {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.8);
    }

    header nav .nav-item > a:hover {
        color: var(--primary-color);
        background: rgba(229, 57, 53, 0.1);
    }

    header nav .nav-dropdown {
        display: none !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s ease-out;
    transform: translate(var(--hero-x, 0), var(--hero-y, 0)) scale(1.05);
    opacity: 0;
}

.hero-bg img.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

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

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-content h1 strong {
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B6B 0%, #E53935 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 45px;
    font-weight: 400;
    line-height: 1.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

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

.hero-buttons .btn {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-white {
    background: linear-gradient(135deg, #E53935 0%, #C62828 100%);
    color: #ffffff;
    font-weight: 700;
    border: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(229, 57, 53, 0.5);
    color: #FF6B6B;
}

.btn-outline-white:hover {
    background: rgba(229, 57, 53, 0.15);
    border-color: #E53935;
    color: #FF6B6B;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 60px;
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* About Preview Section */
.about-preview {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f5f5f5 100%);
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-preview::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-preview .container {
    position: relative;
    z-index: 1;
}

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

.about-content {
    position: relative;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 179, 0, 0.08) 100%);
    border: 1px solid rgba(229, 57, 53, 0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-badge i {
    font-size: 14px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.35;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-content h2 span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content > p {
    font-size: 1.15rem;
    color: #555;
    line-height: 2;
    margin-bottom: 25px;
}

.about-quote {
    position: relative;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 16px 16px 0;
    margin: 35px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.about-quote p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.about-quote .quote-source {
    display: block;
    margin-top: 12px;
    font-size: 0.85rem;
    color: #888;
    font-style: normal;
    font-weight: 500;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(229, 57, 53, 0.25);
    margin-top: 10px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(229, 57, 53, 0.35);
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

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

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.stat-item .number {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-item .label {
    font-size: 0.75rem;
    color: #777;
    font-weight: 500;
}

.about-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image {
    position: relative;
    min-height: 480px;
}

.about-image .main-img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.about-image .main-img.img-primary {
    position: relative;
    width: 70%;
    height: 350px;
    z-index: 1;
}

.about-image .main-img.img-secondary {
    position: absolute;
    width: 75%;
    height: 320px;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    border: 5px solid #fff;
}

.about-image:hover .main-img.img-primary {
    transform: scale(1.02);
}

.about-image:hover .main-img.img-secondary {
    transform: translate(-5px, -5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.about-image .accent-box {
    position: absolute;
    top: 20px;
    left: -25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    color: var(--white);
    padding: 18px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.35);
    z-index: 3;
    text-align: center;
}

.about-image .accent-box h4 {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    margin-bottom: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image .accent-box p {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
}

.about-image .floating-badge {
    position: absolute;
    bottom: 40px;
    right: -35px;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

.about-image .floating-badge .icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF8F00;
    font-size: 14px;
}

.about-image .floating-badge .text {
    font-size: 0.7rem;
    color: #888;
}

.about-image .floating-badge .text strong {
    display: block;
    font-size: 0.85rem;
    color: #333;
    font-weight: 700;
}

.about-image .decorative-dots {
    display: none;
}

/* Philosophy Preview - Space/Stars Theme */
.philosophy-preview {
    background: linear-gradient(180deg, #05050a 0%, #0a0a15 50%, #0f0a1a 100%);
    padding: 140px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.philosophy-preview .stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 250px 160px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 300px 100px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 350px 60px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 400px 200px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 450px 140px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 500px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 550px 180px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 600px 30px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 650px 220px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 700px 150px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 750px 90px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 800px 250px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 850px 50px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 900px 180px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 950px 120px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 1000px 70px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 1100px 200px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 1200px 100px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 1300px 160px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 1400px 40px, rgba(255,255,255,0.5), transparent);
    background-size: 100% 100%;
    animation: twinkle 8s ease-in-out infinite;
    z-index: 0;
    transition: transform 0.3s ease-out;
    transform: translate(var(--stars-x, 0), var(--stars-y, 0));
}

.philosophy-preview .stars-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 80px 150px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 180px 220px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 280px 180px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 380px 120px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 480px 250px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 580px 160px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 680px 90px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 780px 200px, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 880px 130px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 980px 240px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 1080px 60px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 1180px 170px, rgba(255,255,255,0.5), transparent);
    background-size: 100% 100%;
    animation: twinkle 6s ease-in-out infinite reverse;
    z-index: 0;
    transition: transform 0.4s ease-out;
    transform: translate(var(--stars2-x, 0), var(--stars2-y, 0));
}

.philosophy-preview::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

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

.philosophy-preview .container {
    position: relative;
    z-index: 1;
}

.philosophy-statement-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.philosophy-statement-main h2 {
    font-size: 2.4rem;
    color: var(--white);
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 0 40px rgba(255,255,255,0.1);
}

.philosophy-statement-main h2 strong {
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(229, 57, 53, 0.4);
}

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

.value-preview-card {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.value-preview-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.value-preview-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-preview-card .icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
}

.value-preview-card h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 10px;
}

.value-preview-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.6;
}

/* Services Section - Premium Dark Style */
.services-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #0f0f13 0%, #1a1a22 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(229, 57, 53, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 179, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-section .section-header h2 {
    color: #fff;
}

.services-section .section-header p {
    color: rgba(255,255,255,0.6);
}

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

.service-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #FF6B35 50%, #FFB300 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(229, 57, 53, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(229, 57, 53, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(229, 57, 53, 0.1);
}

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

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

.service-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 1px solid rgba(229, 57, 53, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover .icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.25) 0%, rgba(255, 107, 53, 0.15) 100%);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.2);
}

.service-card .icon svg {
    width: 45px;
    height: 45px;
    stroke: var(--primary-color);
}

.service-card .service-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    z-index: 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card .service-link:hover {
    gap: 12px;
}

/* News Section - Clean Timeline Style */
.news-section {
    padding: 140px 0;
    background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.news-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-header-left .news-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.news-header h2 {
    margin: 0;
    font-size: 2rem;
}

.news-header .more-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-header .more-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(229, 57, 53, 0.15);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.news-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.news-card:nth-child(2n) {
    border-right: none;
}

.news-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.news-card:first-child {
    border-radius: 0;
}

.news-card:last-child {
    border-radius: 0;
}

.news-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.news-card:hover {
    background: rgba(229, 57, 53, 0.02);
    padding-left: 30px;
}

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

.news-card .date {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
}

.news-card .content {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.news-card .category {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-card h4 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    color: #222;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-card:hover h4 {
    color: var(--primary-color);
}

.news-card .arrow {
    display: none;
}

/* CTA Section - Removed, integrated into Contact */

/* Contact Preview - Full Featured */
.contact-preview {
    padding: 0;
    background: linear-gradient(135deg, #1a1a22 0%, #0f0f13 100%);
    position: relative;
    overflow: hidden;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.contact-info-side {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(229, 57, 53, 0.15);
    border: 1px solid rgba(229, 57, 53, 0.25);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    width: fit-content;
}

.contact-info-side h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.contact-info-side h2 span {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-side > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 50px;
}

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

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

.contact-item .icon {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.contact-item .text h4 {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item .text p {
    font-size: 1.05rem;
    color: #fff;
    margin: 0;
    font-weight: 500;
}

.contact-map-side {
    position: relative;
    background: #1a1a22;
    min-height: 600px;
}

.contact-map-side iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-map-side::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(15, 15, 19, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #c62828 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
    width: fit-content;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 57, 53, 0.4);
}

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

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

/* Bento Grid Section */
.bento-section {
    background: #0a0a0f;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bento-spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(229, 57, 53, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 180px);
    gap: 20px;
}

.bento-item {
    background: #14141a;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Plus Jakarta Sans', 'Noto Sans KR', sans-serif;
}

.bento-item:hover {
    border-color: rgba(229, 57, 53, 0.3);
    background: #1a1a22;
}

.bento-item.glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.bento-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-stat {
    grid-column: span 1;
    grid-row: span 1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
}

.bento-service {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-wide {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-item h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.bento-item h2 span {
    color: var(--primary-color);
}

.bento-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #F5F5F5;
}

.bento-item p {
    color: #8A8A9A;
    font-size: 15px;
    line-height: 1.7;
}

.bento-icon {
    width: 54px;
    height: 54px;
    background: rgba(229, 57, 53, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    flex-shrink: 0;
}

.bento-stat .bento-icon {
    margin: 0;
}

.bento-val {
    font-size: 38px;
    font-weight: 800;
    color: #FFB300;
    margin-bottom: 4px;
}

.bento-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #8A8A9A;
}

.bento-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 85% 15%, rgba(229, 57, 53, 0.12) 0%, transparent 50%);
    z-index: -1;
}

.bento-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 70%;
    background: url("../img/1.57a711a0fc4d.jpg") center center / cover no-repeat;
    opacity: 0.3;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    border-radius: 0 0 28px 0;
}

.bento-btn {
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.bento-btn i {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-btn:hover i {
    transform: translateX(5px);
}

.philosophy-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(229, 57, 53, 0.15);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.bento-service-list {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.bento-service-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #8A8A9A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.bento-service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}

.bento-service-list li:last-child {
    border-bottom: none;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.reg-item {
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.reg-item .year {
    font-size: 24px;
    font-weight: 800;
    color: #FFB300;
}

.reg-item .label {
    font-size: 11px;
    color: #8A8A9A;
    margin-top: 5px;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-hero,
    .bento-service,
    .bento-wide,
    .bento-tall {
        grid-column: span 2;
    }

    .bento-stat {
        grid-column: span 1;
    }

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

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-hero,
    .bento-service,
    .bento-wide,
    .bento-tall,
    .bento-stat {
        grid-column: span 1;
    }

    .bento-item {
        padding: 30px;
    }

    .bento-item h2 {
        font-size: 32px;
    }

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        gap: 50px;
    }

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

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

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

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

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .about-content h2 {
        font-size: 1.8rem;
        word-break: keep-all;
    }

    .about-image {
        order: -1;
    }

    .about-image .main-img.img-secondary,
    .about-image .decorative-dots,
    .about-image .accent-box,
    .about-image .floating-badge {
        display: none;
    }

    .about-image .main-img.img-primary {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 16px;
    }

    .about-image {
        min-height: auto;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-item .number {
        font-size: 1.8rem;
    }

    .philosophy-statement-main h2 {
        font-size: 1.4rem;
    }

    .philosophy-statement-main h2 .line1,
    .philosophy-statement-main h2 .line2,
    .philosophy-statement-main h2 .line3 {
        display: block;
    }

    .values-preview,
    .services-grid,
    .news-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info-side {
        padding: 60px 20px;
    }

    .contact-info-side h2 {
        font-size: 2rem;
    }

    .contact-map-side {
        min-height: 300px;
    }

    .about-preview,
    .philosophy-preview,
    .services-section,
    .news-section {
        padding: 80px 0;
    }
}