/* ==========================================================================
   GadolTech Inc. Official Stylesheet
   Theme: Premium Technical Dark Mode with Glassmorphism
   Colors: Main Navy/Blue (#153F90, #0054A5), Vibrant Green (#009B5D)
   ========================================================================== */

/* 1. Design Tokens & Core Settings */
:root {
    /* Color Palette */
    --color-primary: #153F90;
    --color-primary-light: #0054A5;
    --color-accent: #009B5D;
    --color-accent-rgb: 0, 155, 93;
    
    --bg-dark-primary: #080B11;
    --bg-dark-secondary: #0F131E;
    --bg-card: rgba(20, 26, 40, 0.6);
    --border-glass: rgba(255, 255, 255, 0.07);
    
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    
    /* Layout & Styling */
    --navbar-height: 80px;
    --glass-blur: 16px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Outfit', 'Inter', 'Noto Sans KR', sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', sans-serif;
    --hero-mouse-x: 50%;
    --hero-mouse-y: 50%;
}

/* 2. Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

ul {
    list-style: none;
}

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

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

/* 3. Ambient Background Animation (Floating Glow Blobs) & Tech Grid */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

/* Global Interactive Spotlight Glow */
.glow-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at var(--hero-mouse-x, 50%) var(--hero-mouse-y, 50%), rgba(0, 155, 93, 0.4) 0%, transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(0, 84, 165, 0.22) 0%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

/* Global Technical Blueprint Grid Overlay */
.glow-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
    z-index: -2;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at var(--hero-mouse-x, 50%) var(--hero-mouse-y, 50%), rgba(0,0,0,1) 10%, rgba(0,0,0,0) 34%);
    mask-image: radial-gradient(circle at var(--hero-mouse-x, 50%) var(--hero-mouse-y, 50%), rgba(0,0,0,1) 10%, rgba(0,0,0,0) 34%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    transition: var(--transition-smooth);
}

.blob-1 {
    top: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background-color: var(--color-primary-light);
    animation: floatBlob1 25s infinite alternate;
}

.blob-2 {
    bottom: 10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background-color: var(--color-accent);
    animation: floatBlob2 30s infinite alternate;
}

.blob-3 {
    top: 40%;
    right: 35%;
    width: 450px;
    height: 450px;
    background-color: var(--color-primary);
    animation: floatBlob3 22s infinite alternate;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 50px) scale(1.15); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, -80px) scale(0.9); }
}

@keyframes floatBlob3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, -50px) scale(1.2); }
}

/* 4. Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    background-color: rgba(8, 11, 17, 0.7);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(8, 11, 17, 0.85);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-selector {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    transition: var(--transition-smooth);
}

.lang-btn.active {
    color: var(--color-accent);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: var(--border-glass);
    margin: 0 0.2rem;
    user-select: none;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

/* 5. Buttons & UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-accent);
    color: white;
    border: 1px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(0, 155, 93, 0.25);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    box-shadow: 0 4px 20px rgba(0, 155, 93, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 25px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--color-accent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 40%, #A3B3C8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

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

/* Grids & Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 3rem;
}

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

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

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

/* 6. Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: var(--navbar-height) 2rem 2rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    opacity: 0.85;
}

.hero-content {
    max-width: 850px;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 155, 93, 0.08);
    border: 1px solid rgba(0, 155, 93, 0.25);
    border-radius: 30px;
    padding: 0.4rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent);
    animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, #FFFFFF, #9EB2D0, var(--color-accent), #FFFFFF);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 8s linear infinite;
}

.hero-title.fade-in {
    opacity: 0;
    animation: heroTitleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, shineText 8s linear infinite;
    animation-delay: 0.1s, 0s;
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(8px);
        letter-spacing: -3px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
        letter-spacing: -1.5px;
    }
}

@keyframes shineText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.5rem auto;
}



.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

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

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* 7. About Section (Core Values) & Brand Story Section */
.about-section {
    padding: 8rem 0;
    position: relative;
}

.about-section .section-header {
    margin-bottom: 3.5rem;
}

.value-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 155, 93, 0.35);
    background-color: rgba(20, 26, 40, 0.85);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 155, 93, 0.05);
}

.value-icon {
    width: 54px;
    height: 54px;
    background: rgba(0, 84, 165, 0.06);
    border: 1px solid rgba(0, 84, 165, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    margin-bottom: 0.5rem;
}

.value-card:hover .value-icon {
    background: rgba(0, 155, 93, 0.12);
    border-color: rgba(0, 155, 93, 0.3);
    color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.value-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Brand Story Section (Moved to the bottom) */
.story-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 19, 30, 0.4) 100%);
}

.story-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.story-card .section-title {
    margin-bottom: 2rem;
}

.hebrew-symbol {
    display: inline-flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(21, 63, 144, 0.15) 0%, rgba(0, 155, 93, 0.08) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    margin: 0 auto 2.5rem auto;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.hebrew-text {
    font-family: 'Outfit', serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #009B5D 0%, #0054A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1;
}

.hebrew-meaning {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5px;
}

.story-text {
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}

.story-text p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.story-text p:last-child {
    margin-bottom: 0;
}

.story-vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 3.5rem;
    text-align: left;
}

.vision-box, .mission-box {
    display: flex;
    flex-direction: column;
}

.story-vision-mission h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.story-vision-mission h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.vision-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.mission-box ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-box li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.mission-box li i {
    color: var(--color-accent);
    margin-top: 0.25rem;
    font-size: 0.95rem;
}

.mission-box li span {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* 8. Business Section & Cards */
.business-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 19, 30, 0.5) 50%, transparent 100%);
}

.section-header {
    margin-bottom: 4.5rem;
}

.card-grid {
    perspective: 1000px;
}

.business-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.05), transparent 40%);
    z-index: 1;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 84, 165, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: var(--transition-smooth);
}

.business-card:hover .card-glow {
    background: radial-gradient(circle, rgba(0, 155, 93, 0.12) 0%, transparent 70%);
}

.business-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 155, 93, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 155, 93, 0.05);
}

.card-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-primary-light);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.business-card:hover .card-icon-wrapper {
    background: rgba(0, 155, 93, 0.1);
    border-color: rgba(0, 155, 93, 0.3);
    color: var(--color-accent);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.card-list li i {
    color: var(--color-accent);
    font-size: 0.95rem;
}

/* Highlight / Popular Card */
.business-card.popular {
    border-color: rgba(0, 155, 93, 0.4);
    box-shadow: 0 10px 30px rgba(0, 155, 93, 0.05);
}

.business-card.popular .card-icon-wrapper {
    color: var(--color-accent);
    background: rgba(0, 155, 93, 0.06);
    border-color: rgba(0, 155, 93, 0.2);
}

.card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, #007C4A 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 155, 93, 0.3);
}

/* 9. R&D/Outsourcing (Faux Terminal Component) */
.outsourcing-section {
    padding: 8rem 0;
}

.outsourcing-media {
    min-width: 0;
}

.process-terminal {
    background-color: #05070C;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(21, 63, 144, 0.08);
}

.terminal-header {
    background-color: #0E121C;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
    display: inline-block;
}

.terminal-dot.red { background-color: #EF4444; }
.terminal-dot.yellow { background-color: #F59E0B; }
.terminal-dot.green { background-color: #10B981; }

.terminal-title {
    color: var(--text-muted);
    font-family: 'Outfit', monospace;
    font-size: 0.75rem;
    margin-left: 1rem;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 1.8rem;
    overflow-x: auto;
}

.terminal-body pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #CBD5E1;
}

/* Syntax Highlighting */
.t-keyword { color: #F472B6; font-weight: 600; }
.t-string { color: #34D399; }
.t-type { color: #60A5FA; }
.t-func { color: #FBBF24; }
.t-comment { color: #6B7280; font-style: italic; }
.t-number { color: #FB7185; }

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 2.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(0, 155, 93, 0.2);
    border-right: 2px solid rgba(0, 155, 93, 0.15);
    padding-right: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    height: fit-content;
    transition: var(--transition-smooth);
}

.step-item:hover .step-num {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.step-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.step-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* 10. Contact Us & Glassmorphic Form */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-info-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-container > p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 155, 93, 0.08);
    border: 1px solid rgba(0, 155, 93, 0.2);
    color: var(--color-accent);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-val {
    font-size: 1rem;
    font-weight: 500;
}

.biblical-quote {
    margin-top: 3.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.015);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    border-left: none;
    border-radius: 0;
    text-align: center;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    line-style: italic;
    margin-bottom: 0.35rem;
}

.quote-text-ko {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.quote-meaning {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Glassmorphic Form styling */
.contact-form-wrapper {
    perspective: 1000px;
}

.glass-form {
    background: rgba(15, 19, 30, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.01);
}

.form-group {
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(8, 11, 17, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(8, 11, 17, 0.8);
    box-shadow: 0 0 15px rgba(0, 155, 93, 0.15);
}

.form-group select option {
    background-color: var(--bg-dark-secondary);
    color: var(--text-primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Form validation styling */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
}

.form-group.error label {
    color: #EF4444;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(15, 19, 30, 0.85);
    border: 1px solid rgba(0, 155, 93, 0.4);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    z-index: 2000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 155, 93, 0.1);
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.toast-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
}

.toast-details h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.toast-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 11. Footer */
.footer {
    background-color: var(--bg-dark-secondary);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 3rem 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.footer-logo {
    height: 40px;
    width: auto;
    align-self: flex-start;
}

.footer-slogan {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-biz-hours h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.92rem;
}

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

.footer-biz-hours p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact p i {
    color: var(--color-accent);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-info {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.footer-info .divider {
    color: rgba(255, 255, 255, 0.08);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* 12. Reveal & Load Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* Scroll reveal initial states */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 13. Responsive Breakpoints */

/* Tablet & Landscape (max-width: 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

/* Mobile & Portrait (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --navbar-height: 70px;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .outsourcing-media, .outsourcing-content {
        min-width: 0;
        width: 100%;
    }
    
    .terminal-body {
        padding: 1.2rem;
    }
    
    .terminal-body pre {
        font-size: 0.72rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }
    
    .about-section {
        padding: 5rem 0;
    }
    
    .business-section {
        padding: 5rem 0;
    }
    
    .outsourcing-section {
        padding: 5rem 0;
    }
    
    .contact-section {
        padding: 5rem 0;
    }
    
    .hebrew-symbol {
        align-self: center;
        width: 100%;
    }
    
    /* Responsive Mobile Menu */
    .hamburger-menu {
        display: flex;
        z-index: 1100;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-dark-secondary);
        border-left: 1px solid var(--border-glass);
        padding: 8rem 2.5rem 3rem 2.5rem;
        transition: var(--transition-smooth);
        z-index: 1050;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
    }
    
    /* Hamburger Menu Animation */
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .glass-form {
        padding: 2rem;
    }
    
    
    .story-vision-mission {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
        padding-top: 2.5rem;
    }
}

/* Small Devices (max-width: 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    
    .btn {
        width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-info .divider {
        display: none;
    }
    
    .story-card {
        padding: 2.5rem 1.5rem;
    }
    
    .hebrew-text {
        font-size: 2.5rem;
    }
    
    .toast {
        width: calc(100% - 2.5rem);
        bottom: 1.25rem;
        right: 1.25rem;
        left: 1.25rem;
        padding: 1rem;
    }
}
