/* Cursive Text Style */
.cursive-text {
    font-family: 'Brush Script MT', 'Lucida Handwriting', cursive;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* CSS Variables */
:root {
    /* Primary colors */
    --dark-blue: #023E8A;
    --medium-blue: #0077B6;
    --light-blue: #90E0EF;
    --pale-blue: #CAF0F8;
    --white: #ffffff;

    /* Salmone brand colors */
    --salmone-primary: #e67e22;
    --salmone-dark: #d35400;

    /* Grayscale */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-700: #495057;
    --gray-900: #212529;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #212529;

    /* Layout */
    --container-max-width: 1200px;

    /* Z-index scale */
    --z-dropdown: 100;
    --z-fixed: 500;
    --z-modal: 1000;

    /* Animations */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Border radius */
    --border-radius: 8px;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 8px 16px;
    z-index: calc(var(--z-modal) + 1);
    transition: top var(--transition-fast);
    text-decoration: none;
    font-weight: 500;
    opacity: 0;
}

.skip-link:focus {
    top: 0;
    opacity: 1;
}

/* Focus Styles */
*:focus-visible {
    outline: 3px solid var(--medium-blue);
    outline-offset: 2px;
}

/* Screen Reader Only */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Page Load Animation - disabled to prevent flash */
/* .loaded class removed to fix screen flash issue */

/* Form Error State */
.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

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

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

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

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

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo .logo {
    height: 32px;
    width: auto;
    transition: opacity 0.2s ease;
}

.nav-logo a:hover .logo {
    opacity: 0.85;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--dark-blue);
    transition: width 0.25s ease, left 0.25s ease;
}

.nav-link:hover {
    color: var(--dark-blue);
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-link.active {
    color: var(--dark-blue);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
    left: 0;
}

.salmone-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    line-height: 1;
}

.salmone-link:hover .salmone-icon {
    opacity: 0.8;
}

.salmone-icon {
    height: 20px;
    width: auto;
    border-radius: 3px;
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-right: -8px;
}

.bar {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out;
    border-radius: 1px;
}

/* Hamburger minimal animation: bars converge to center */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}

.slide.active {
    transform: translateX(0);
    z-index: 2;
}

.slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: var(--dark-blue);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.98);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease;
    border: none;
    padding: 0;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.75);
}

.dot.active {
    background: var(--white);
    transform: scale(1.15);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

.btn-primary:hover {
    background-color: var(--pale-blue);
    transform: translateY(-2px);
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-blue);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* About Summary Section */
.about-summary {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--dark-gray);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--pale-blue);
    border-radius: var(--border-radius);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

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

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background-color: var(--gray);
}

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

.contact-text {
    display: inline-flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.contact-item {
    background-color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.8rem;
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background-color: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.location-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    padding: 1.5rem 1.5rem 0.5rem;
}

.location-card p {
    color: var(--dark-gray);
    line-height: 1.4;
    padding: 0 1.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.8rem;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--white);
    color: var(--gray-900);
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-info {
    color: var(--gray-900);
    font-size: 1rem;
    font-style: normal;
}

.footer-info a {
    color: inherit;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: #000000;
}

.footer-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-contact strong {
    color: var(--light-blue);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Greeting Section */
.greeting {
    padding: 80px 0;
    background-image: url('../images/factory_out.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.greeting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

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

.greeting-content {
    max-width: 800px;
    margin: 0 auto;
}

.greeting-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000000;
    text-align: center;
}

.greeting-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #000000;
}

.signature {
    font-weight: 600;
    color: var(--gray-900);
    text-align: right;
    font-style: italic;
}

/* History Section */
.history {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--white) 100%);
}

.history-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--dark-blue), var(--medium-blue));
    transform: translateX(-50%);
    border-radius: 1px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, var(--dark-blue), var(--medium-blue));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    min-width: 70px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(2, 62, 138, 0.2);
    border: 1px solid var(--white);
}

.timeline-content {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 1.5rem;
    flex: 1;
    position: relative;
    border-left: 3px solid var(--dark-blue);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: 100%;
    border-width: 6px 6px 6px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: 100%;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    border-bottom: 1px solid var(--pale-blue);
    padding-bottom: 0.3rem;
}

.timeline-content p {
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background-color: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--pale-blue);
    border-radius: var(--border-radius);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.vision-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.vision-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        height: 52px;
        padding: 0 16px;
    }

    .nav-menu {
        position: absolute;
        right: 16px;
        top: 52px;
        flex-direction: column;
        background-color: var(--white);
        width: auto;
        min-width: 160px;
        text-align: left;
        box-shadow: var(--shadow-md);
        padding: 0.5rem 0;
        height: auto;
        border-radius: var(--border-radius);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.15s ease-out, transform 0.15s ease-out, visibility 0.15s ease-out;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-item {
        height: auto;
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .nav-link:hover {
        color: var(--dark-blue);
    }

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

    .nav-link.active {
        color: var(--dark-blue);
        font-weight: 600;
        position: relative;
    }

    .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 16px;
        background-color: var(--dark-blue);
        border-radius: 0 2px 2px 0;
    }

    .nav-logo .logo {
        height: 28px;
    }

    .salmone-link {
        justify-content: flex-start;
        padding: 0.625rem 1.25rem;
    }

    .salmone-link:hover .salmone-icon {
        opacity: 0.7;
    }

    .salmone-icon {
        height: 18px;
    }

    .cursive-text {
        font-size: 1.4rem;
        letter-spacing: 0.3px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 50vh;
        min-height: 350px;
    }

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

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .intro-stats .stat-item {
        flex: 1;
    }
}

/* Company Intro Section */
.company-intro {
    padding: 80px 0;
    background-color: var(--white);
}

/* Naver Store Section */
.naver-store {
    padding: 80px 0;
    background-image: url('../images/salmone_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.naver-store .container {
    width: 100%;
}

.store-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.store-logo {
    height: 50px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.store-info p {
    font-size: 1.1rem;
    color: var(--salmone-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
    word-wrap: break-word;
}

.store-text-box {
    max-width: 500px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.store-text-box p {
    font-size: 1.1rem;
    color: var(--salmone-dark);
    line-height: 1.6;
    font-weight: 400;
    word-break: keep-all;
    overflow-wrap: break-word;
    hyphens: auto;
    text-align: center;
}

.store-info .btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    transition: all var(--transition-base);
    background-color: var(--salmone-primary);
    border-color: var(--salmone-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.store-info .btn:hover {
    transform: translateY(-3px);
    background-color: var(--salmone-dark);
    border-color: var(--salmone-dark);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

/* Mobile Responsive for Naver Store */
@media (max-width: 768px) {
    .naver-store {
        padding: 60px 0;
        min-height: 350px;
    }

    .store-content {
        max-width: 90%;
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .store-logo {
        height: 30px;
        margin-bottom: 1rem;
    }

    .store-text-box {
        max-width: 400px;
        padding: 0 0.5rem;
    }

    .store-text-box p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .store-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }

    .store-info .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .naver-store {
        padding: 40px 0;
        min-height: 300px;
    }

    .store-content {
        padding: 1rem;
        max-width: 95%;
    }

    .store-logo {
        height: 25px;
        margin-bottom: 0.8rem;
    }

    .store-text-box {
        max-width: 320px;
        padding: 0 0.3rem;
    }

    .store-text-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .store-info p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        padding: 0 0.5rem;
    }
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.intro-text .btn {
    margin-top: 1rem;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--pale-blue);
    border-radius: var(--border-radius);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.intro-stats .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.intro-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.intro-stats .stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 500;
}

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

.about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-stats {
    flex-direction: row;
    justify-content: space-around;
}

.stat-item {
    flex: 1;
}

.footer-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.footer-info {
    text-align: center;
    font-size: 0.9rem;
}

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

.page-header h1 {
    font-size: 1.8rem;
}

.page-header p {
    font-size: 0.9rem;
}

.greeting-text h2 {
    font-size: 1.4rem;
}

.greeting-text p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.timeline-content h3 {
    font-size: 1rem;
}

.timeline-content p {
    font-size: 0.8rem;
    line-height: 1.4;
}

.history-timeline::before {
    left: 20px;
}

.timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
}

.timeline-year {
    position: absolute;
    left: -60px;
    top: 0;
}

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

.timeline-content::before {
    display: none;
}

.vision-content {
    grid-template-columns: 1fr;
}

.intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.intro-stats {
    flex-direction: row;
    justify-content: space-around;
}

.intro-stats .stat-item {
    flex: 1;
}

/* Contact Details Section */
.contact-details {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info-card {
    background-color: var(--pale-blue);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contact-info-card p {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--gray);
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.map-info p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.directions h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.directions ul {
    list-style: none;
    margin-bottom: 2rem;
}

.directions li {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.directions strong {
    color: var(--dark-blue);
}

.map-placeholder {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-frame {
    width: 100%;
    height: 400px;
    position: relative;
}

.map-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: var(--pale-blue);
    color: var(--dark-gray);
    text-align: center;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 0.2rem rgba(2, 62, 138, 0.25);
}

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

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-frame {
        height: 300px;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Main Products Section */
.main-products {
    padding: 80px 0;
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-image {
    background-color: var(--pale-blue);
    padding: 2rem;
    text-align: center;
}

.product-icon {
    font-size: 4rem;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.product-content p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
    font-weight: bold;
}

/* Product Categories Section */
.product-categories {
    padding: 80px 0;
    background-color: var(--gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.category-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.category-card ul {
    list-style: none;
    text-align: left;
}

.category-card li {
    padding: 0.25rem 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 1rem;
}

.category-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--dark-blue);
}

/* Facility Section */
.facility {
    padding: 80px 0;
    background-color: var(--white);
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.facility-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.facility-info p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.facility-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.feature-text p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.facility-image {
    background-color: var(--pale-blue);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.facility-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-gray);
}

.facility-placeholder .facility-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.facility-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Service Features Section */
.service-features {
    padding: 80px 0;
    background-color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .facility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facility-placeholder {
        height: 300px;
    }

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

    .contact-text {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .hero {
        height: 40vh;
        min-height: 300px;
    }

    .services,
    .about-summary,
    .contact-info {
        padding: 40px 0;
    }

    .service-card,
    .about-stats {
        margin-bottom: 1.5rem;
    }

    .cursive-text {
        font-size: 1rem;
        letter-spacing: 0.2px;
    }

    .nav-logo .logo {
        height: 26px;
    }

    .salmone-icon {
        height: 16px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }

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

    .hero-subtitle {
        font-size: 0.7rem;
    }

    .slider-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

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

    .intro-text h2 {
        font-size: 1.1rem;
    }

    .intro-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

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

    .slide {
        transition: none !important;
    }

    .bar {
        transition: none;
    }

    .nav-menu {
        transition: none;
    }
}