/* 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 {
    --dark-blue: #023E8A;
    --medium-blue: #0077B6;
    --light-blue: #90E0EF;
    --pale-blue: #CAF0F8;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --text-dark: #212529;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

/* 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: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

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

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

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

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-blue);
}

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

.salmone-icon {
    height: 24px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
    position: relative;
}

.salmone-link:hover .salmone-icon {
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* 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: 0;
    transition: opacity 0.8s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.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: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.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: all 0.3s ease;
}

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

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

.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.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.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.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
}

.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: #ffffff !important;
    color: #000000;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.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: #000000 !important;
    font-size: 1rem;
}

.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: 120px 0 60px;
    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: #000000 !important;
    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.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
}

.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-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

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

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

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

    .salmone-link {
        justify-content: center;
        padding: 1rem 2rem;
    }

    .salmone-icon {
        height: 20px;
        margin: 0 auto;
    }

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

    .hamburger {
        display: flex;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .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: #d35400;
    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: #d35400;
    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 0.3s ease;
    background-color: #e67e22;
    border-color: #e67e22;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.store-info .btn:hover {
    transform: translateY(-3px);
    background-color: #d35400;
    border-color: #d35400;
    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.3s ease;
}

.intro-stats .stat-item:hover {
    transform: translateY(-5px);
}

.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 !important;
    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.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.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.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.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.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.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.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.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: 35px;
    }

    .salmone-icon {
        height: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    .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;
    }
}