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

html, body {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html[lang="en"] body {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1rem 0;
}

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

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

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid #00BFFF;
    background: transparent;
    color: #00BFFF;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Noto Sans KR', 'Inter', sans-serif;
}

.lang-btn:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: #00BFFF;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}

.lang-btn.active:hover {
    background: #0099CC;
    transform: translateY(-2px);
}

.nav-logo img {
    height: 100px;
    width: auto;
}

.logo-link {
    text-decoration: none;
    display: block;
}

.logo-link:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00BFFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    padding-top: 20px;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.hero-subtitle {
    display: inline;
}

.mobile-only {
    display: none;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    letter-spacing: 0.3px;
    word-break: keep-all;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: white;
    color: #00BFFF;
    border-color: white;
}

.btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: #00BFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 500px;
    width: 100%;
}

.service-icon-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-icon-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.1);
}

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

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-icon-card:hover .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-card i {
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.service-icon-card span {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-icon-card:hover span {
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

/* About Section */
.about {
    padding: 120px 0 100px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 10;
}

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

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00BFFF;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #666;
    font-weight: 500;
}

.about-values {
    display: grid;
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.12);
}

.value-card i {
    font-size: 2.5rem;
    color: #00BFFF;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #666;
}

/* Services Section */
.services {
    padding: 100px 0;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 10;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00BFFF;
    font-weight: bold;
}

/* History Section */
.history {
    padding: 100px 0;
    background: #f8f9fa;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 10;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    transform: translateX(-50%);
}

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

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

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

.timeline-year {
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 191, 255, 0.25);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.35);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.12);
}

.timeline-item:nth-child(even):hover .timeline-content {
    transform: translateX(-5px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
    transform: translateY(-50%);
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    word-break: keep-all;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    word-break: keep-all;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: white;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 10;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 191, 255, 0.15);
}

.product-image {
    height: 140px;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 2.5rem;
    color: white;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #333;
    line-height: 1.4;
}

.product-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #00BFFF;
    color: white;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    scroll-margin-top: 100px;
    position: relative;
    z-index: 10;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

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

.contact-item i {
    font-size: 1.5rem;
    color: #00BFFF;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #00BFFF;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 0 4px rgba(0, 191, 255, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00BFFF 0%, #0099CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00BFFF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00BFFF;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-address {
    word-break: keep-all;
}

.footer-fax {
    margin-top: 0.5rem;
    padding-bottom: 1rem;
}

/* PC에서 주소와 FAX를 한 줄로 표시 */
@media (min-width: 769px) {
    .footer-address::after {
        content: " | ";
    }
    
    .footer-fax {
        display: inline;
        margin-top: 0;
        padding-bottom: 0;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

@keyframes logoGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-logo img {
        height: 60px;
    }
    
    .nav-logo {
        flex: 0 0 auto;
        margin-right: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
        margin-left: 10px;
        margin-right: 0;
        order: 2;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger {
        order: 3;
        margin-left: 10px;
        position: relative;
        z-index: 1002;
    }
    
    .language-switcher {
        gap: 0.3rem;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        min-width: 45px;
    }

    .hero {
        padding-top: 40px;
        min-height: calc(100vh - 100px);
    }

    .hero {
        padding-top: 50px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        padding-top: 15px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.4;
        margin-top: 5px;
    }
    
    .hero-title .highlight {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        padding-top: 5px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .mobile-only {
        display: none;
    }

    .hero-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 100%;
    }

    .service-icon-card {
        padding: 1.5rem 1rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-icon-card i {
        font-size: 1.8rem;
    }

    .service-icon-card span {
        font-size: 0.85rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    .timeline {
        padding: 0 20px 0 80px;
    }

    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: -60px;
        top: 0;
        min-width: 80px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .timeline-content {
        margin: 0;
        margin-top: 20px;
        padding: 20px;
        width: 100%;
    }
    
    .timeline-content h3 {
        font-size: 18px;
        word-break: keep-all;
    }
    
    .timeline-content p {
        font-size: 14px;
        word-break: keep-all;
        line-height: 1.5;
    }

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

@media (max-width: 480px) {
    .nav-logo img {
        height: 50px;
    }
    
    .nav-actions {
        margin-left: 5px;
        position: relative;
        z-index: 1002;
    }
    
    .lang-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 40px;
    }
    
    .hamburger {
        margin-left: 5px;
        position: relative;
        z-index: 1002;
    }
    
    .hero {
        padding-top: 50px;
        margin-top: 80px;
    }
    
    .hero-content {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
        margin-top: 10px;
    }
    
    .hero-title .highlight {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        padding-top: 5px;
    }
    
    .hero-subtitle {
        display: block;
    }
    
    .mobile-only {
        display: block;
    }

    .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

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

    .service-icon-card {
        padding: 1.2rem 0.8rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .service-icon-card i {
        font-size: 1.5rem;
    }

    .service-icon-card span {
        font-size: 0.75rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

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

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

    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-image i {
        font-size: 2rem;
    }
    
    .product-content {
        padding: 1.2rem;
    }
    
    .product-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content h3 {
        font-size: 16px;
        word-break: keep-all;
    }
    
    .timeline-content p {
        font-size: 13px;
        word-break: keep-all;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding-bottom: 2rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .footer-address {
        margin-bottom: 0.8rem;
    }
    
    .footer-fax {
        margin-top: 0.8rem;
        padding-bottom: 1.5rem;
        font-size: 0.9rem;
    }
}

