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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans KR', sans-serif;
    line-height: 1.7;
    color: #333;
    letter-spacing: -0.3px;
}

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

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, #1a2332 0%, #0f1821 100%);
    color: white;
    padding: 12px 0;
}

.top-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.banner-text {
    font-size: 14px;
}

.banner-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-1px);
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-image {
    height: 100px;
    width: auto;
    margin-right: -15px;
}

.logo h1 {
    font-size: 28px;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a2332;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link-primary {
    text-decoration: none;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-primary:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.arrow {
    font-size: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #34495e 100%);
    padding: 80px 0 100px;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    color: white;
}

.badge {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 8px;
}

.badge-text {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border: none;
    padding: 16px 40px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.image-placeholder {
    background: white;
    border-radius: 12px;
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.hero-placeholder {
    background: white;
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.placeholder-icon {
    font-size: 120px;
    margin-bottom: 20px;
}

.hero-placeholder p {
    font-size: 24px;
    font-weight: 600;
    color: #1a2332;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

.hero-icon {
    font-size: 120px;
    opacity: 0.9;
}

.navigation-arrows {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.arrow-btn:hover {
    background: #f8f8f8;
    border-color: #d4af37;
    color: #d4af37;
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.indicator.active {
    background: #d4af37;
    border-color: #d4af37;
}

.indicator:hover {
    background: rgba(212, 175, 55, 0.7);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
}

.stats-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.stat-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
}

.stat-unit {
    font-size: 24px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-value {
        font-size: 36px;
    }
    
    .stat-unit {
        font-size: 18px;
    }
}

/* Products Section */
.products {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a2332;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 55px;
    line-height: 1.7;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 16px;
    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);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-image {
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .service-image {
    transform: scale(1.1);
}

.product-card:hover .product-image {
    transform: scale(1);
}

.card-service {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.medical-service {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.startup-service {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.revenue-service {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.policy-service {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.custom-service {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.3) 0%, rgba(26, 35, 50, 0.6) 100%);
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover .image-overlay {
    opacity: 0.8;
}

.product-icon-large {
    font-size: 80px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a2332;
    line-height: 1.3;
}

.product-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.product-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    color: #d4af37;
    font-weight: 700;
    font-size: 16px;
}

.product-btn {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.product-btn:hover::before {
    left: 0;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.product-btn {
    position: relative;
}

.product-btn::after {
    content: '';
    position: relative;
    z-index: 1;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: white;
}

.info-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    justify-content: center;
}

.info-tab {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.info-tab.active {
    color: #1a2332;
    border-bottom-color: #d4af37;
    font-weight: 600;
}

.info-tab:hover {
    color: #d4af37;
}

.info-content {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.info-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2332;
}

.info-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 5px 0;
}

.review-business {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.review-rating {
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 15px;
}

.review-date {
    font-size: 13px;
    color: #adb5bd;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 40s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 300px;
    flex-shrink: 0;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    margin-bottom: 15px;
}

.partner-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a2332;
    margin: 0;
    text-align: center;
}

/* Card Sales Service Page */
.service-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 120px 0 80px 0;
    color: white;
}

.card-sales-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%), url('hero-image.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.service-hero-content {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.service-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.service-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-hero-features li {
    font-size: 16px;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

/* Service About */
.service-about {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-highlight {
    font-size: 22px;
    color: #1a2332;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.box-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.about-box h4 {
    font-size: 20px;
    color: #1a2332;
    margin: 0 0 10px 0;
}

.about-box p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.benefit-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: #1a2332;
    margin: 0 0 15px 0;
}

.benefit-card p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Service Process */
.service-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.process-step {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    line-height: 60px;
    margin: 0 auto 20px auto;
}

.step-content h3 {
    font-size: 18px;
    color: #1a2332;
    margin: 0 0 10px 0;
}

.step-content p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.step-time {
    display: block;
    font-size: 12px;
    color: #d4af37;
    font-weight: 600;
}

.process-arrow {
    font-size: 30px;
    color: #d4af37;
    font-weight: bold;
}

.process-total {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    color: #1a2332;
}

/* Service Documents */
.service-documents {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.document-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.document-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.document-card h3 {
    font-size: 18px;
    color: #1a2332;
    margin: 0 0 8px 0;
}

.document-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.documents-note {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

/* Service Eligible */
.service-eligible {
    padding: 80px 0;
    background: white;
}

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

.eligible-item {
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.eligible-item:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    transform: translateY(-5px);
}

.eligible-item:hover h4,
.eligible-item:hover p {
    color: #1a2332;
}

.eligible-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.eligible-item h4 {
    font-size: 18px;
    color: #1a2332;
    margin: 0 0 8px 0;
}

.eligible-item p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Service FAQ */
.service-faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #1a2332;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #d4af37;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 1000px;
}

/* Service Contact */
.service-contact {
    padding: 80px 0;
    background: white;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.medical-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%), url('hero-image-medical.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.use-case-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.startup-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.3) 0%, rgba(44, 62, 80, 0.3) 100%), url('hero-image-startup.png');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
    position: relative;
}

.startup-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

/* Kiosk Benefits Section */
.kiosk-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.kiosk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.kiosk-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.kiosk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.kiosk-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.kiosk-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.kiosk-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.kiosk-note {
    background: white;
    padding: 25px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
}

.kiosk-note p {
    font-size: 18px;
    color: #1a2332;
    margin: 0;
}

/* Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.package-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.package-price {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
}

.package-price strong {
    display: block;
    font-size: 36px;
    color: #d4af37;
    margin-top: 10px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
    color: #495057;
    font-size: 15px;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-note {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.75) 0%, rgba(44, 62, 80, 0.75) 100%), 
                url('about-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { background-size: 100%; }
    100% { background-size: 110%; }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: shine 8s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.about-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin: 0 0 25px 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.95);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.company-info {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.company-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 35px;
    border-radius: 16px;
    border-left: 5px solid #d4af37;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-left-width: 8px;
}

.info-card h3 {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 12px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 19px;
    color: #1a2332;
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
}

.vision-mission {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.vm-intro {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.vm-main-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.4;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-main-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 300;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.vm-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    padding: 60px 50px;
    border-radius: 24px;
    text-align: left;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.vm-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 100px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

/* Vision Card Image */
.vision-card {
    position: relative;
}

.vm-image-container {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.vision-card .vm-image-container {
    background: linear-gradient(135deg, #0a1929 0%, #1a2f45 100%);
}

.mission-card .vm-image-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
}

.vm-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imagePulse 4s ease-in-out infinite;
}

.vision-card .vm-image {
    animation: imagePulse 4s ease-in-out infinite, imageGlowBlue 3s ease-in-out infinite;
}

.mission-card .vm-image {
    animation: imagePulse 4s ease-in-out infinite, imageGlowGold 3s ease-in-out infinite;
}

@keyframes imagePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes imageGlowBlue {
    0%, 100% { 
        filter: brightness(1) contrast(1);
        box-shadow: 0 0 30px rgba(100, 200, 255, 0.3);
    }
    50% { 
        filter: brightness(1.1) contrast(1.1);
        box-shadow: 0 0 60px rgba(100, 200, 255, 0.6);
    }
}

@keyframes imageGlowGold {
    0%, 100% { 
        filter: brightness(1) contrast(1.05);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }
    50% { 
        filter: brightness(1.15) contrast(1.1);
        box-shadow: 0 0 60px rgba(212, 175, 55, 0.6);
    }
}


.vm-card h2 {
    font-size: 28px;
    color: #1a2332;
    margin: 0 0 10px 0;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.vm-sub {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
}

.vm-card-title {
    font-size: 24px;
    color: #d4af37;
    margin: 0 0 20px 0;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.vm-description {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
    margin: 0 0 30px 0;
    font-weight: 400;
}

.vm-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vm-detail-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    padding: 20px;
    border-radius: 12px;
    border-left: 3px solid #d4af37;
    transition: all 0.3s ease;
}

.vm-detail-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: translateX(5px);
}

.vm-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.vm-detail-item p {
    font-size: 15px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

.vm-detail-item strong {
    color: #1a2332;
    font-weight: 700;
}

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

.core-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 35px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.value-card:hover::before {
    transform: rotate(180deg);
}

.value-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 800;
    line-height: 60px;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin: 0 0 18px 0;
    font-weight: 800;
}

.value-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.8;
    margin: 0;
}

.services-overview {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
}

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

.service-overview-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-overview-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.service-overview-icon {
    font-size: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.service-overview-card h3 {
    font-size: 24px;
    color: #1a2332;
    margin: 0 0 18px 0;
    font-weight: 800;
}

.service-overview-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 25px 0;
    line-height: 1.8;
}

.service-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-radius: 10px;
}

.service-overview-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #495057;
    font-size: 15px;
    font-weight: 500;
}

.service-overview-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 18px;
}

.service-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: #1a2332;
    gap: 10px;
}

.why-choose {
    padding: 80px 0;
    background: white;
}

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

.choose-card {
    text-align: center;
    padding: 30px 20px;
}

.choose-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 20px;
    color: #1a2332;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.choose-card p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

.about-partners {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partners-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.partner-logo-item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 50%, #1a2332 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.about-cta h2 {
    font-size: 42px;
    margin: 0 0 25px 0;
    font-weight: 800;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-size: 19px;
    color: rgba(255,255,255,0.95);
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Success Cases Page */
.page-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 100px 0 60px 0;
    text-align: center;
    color: white;
}

.page-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.success-cases {
    padding: 80px 0;
    background: white;
}

.cases-grid {
    display: grid;
    gap: 40px;
}

.case-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.case-label {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a2332;
    padding: 8px 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 14px;
    margin: 30px 0 0 30px;
    border-radius: 20px;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    padding: 20px 30px 10px 30px;
    margin: 0;
}

.case-meta {
    padding: 0 30px 20px 30px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid #f8f9fa;
}

.case-meta span {
    font-size: 14px;
    color: #6c757d;
}

.case-content {
    padding: 30px;
}

.case-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
    margin: 20px 0 10px 0;
    padding-left: 12px;
    border-left: 4px solid #d4af37;
}

.case-content h4:first-child {
    margin-top: 0;
}

.case-content p {
    color: #495057;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.case-solution {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.case-solution li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #495057;
}

.case-solution li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 18px;
}

.case-result {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.result-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.result-label {
    display: block;
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 8px;
}

.result-value {
    display: inline;
    font-size: 24px;
    font-weight: 700;
    color: #d4af37;
    white-space: nowrap;
}

.case-quote {
    background: #f8f9fa;
    border-left: 4px solid #d4af37;
    padding: 20px 25px;
    margin: 20px 0 0 0;
    font-style: italic;
    color: #495057;
    line-height: 1.7;
    border-radius: 0 8px 8px 0;
}

.case-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: 600;
    color: #1a2332;
    font-size: 14px;
}

.success-cta {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 60px;
    color: white;
}

.success-cta h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
}

.success-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 30px 0;
}

.nav-link.active {
    color: #d4af37;
    font-weight: 600;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1821 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
}

.footer-logo-image {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: -20px;
    margin-left: -10px;
}

.footer-logo h3 {
    font-size: 28px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    margin-top: -15px;
    font-weight: 700;
}

.footer-slogan {
    font-size: 14px;
    color: #b2bec3;
    margin-top: 8px;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    font-size: 14px;
    color: #b2bec3;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-notice {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #404040;
    font-size: 13px;
}

.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #404040;
    font-size: 12px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

/* Consultation Notification */
.consultation-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 320px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 9999;
    border-left: 4px solid #d4af37;
}

.consultation-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

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

.notification-content {
    flex: 1;
}

.notification-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 14px;
    color: #666;
}

.notification-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .consultation-notification {
        right: 15px;
        left: 15px;
        min-width: auto;
        bottom: 15px;
    }
}

/* Global Typography Improvements */
p {
    line-height: 1.8;
    margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

/* Improved spacing for all sections */
section {
    padding: 80px 0;
}

/* Card spacing improvements */
.service-card, .benefit-card, .value-card {
    margin-bottom: 0;
}

/* List improvements */
ul, ol {
    line-height: 1.8;
}

li {
    margin-bottom: 8px;
}

/* Button spacing */
.cta-button, .submit-button {
    margin-top: 10px;
}

/* 실시간 상담신청 알림 */
.consultation-notification {
    position: fixed;
    bottom: 30px;
    right: -400px;
    width: 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    z-index: 9999;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #d4af37;
    cursor: pointer;
}

.consultation-notification.show {
    right: 30px;
    animation: notificationPulse 0.5s ease;
}

.consultation-notification.hide {
    right: -400px;
    opacity: 0;
}

@keyframes notificationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.consultation-notification:hover {
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.notification-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 15px;
    color: #1a2332;
    margin-bottom: 6px;
    font-weight: 600;
    line-height: 1.4;
}

.notification-title strong {
    color: #d4af37;
    font-weight: 700;
}

.notification-detail {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
    line-height: 1.5;
}

.notification-time {
    font-size: 12px;
    color: #adb5bd;
    font-weight: 500;
}

.notification-close {
    width: 24px;
    height: 24px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: #6c757d;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    transform: rotate(90deg);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .consultation-notification {
        width: calc(100% - 40px);
        right: -100%;
        bottom: 20px;
    }
    
    .consultation-notification.show {
        right: 20px;
    }
    
    .consultation-notification.hide {
        right: -100%;
    }
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

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

.dropdown-item {
    display: block;
    padding: 12px 24px;
    color: #1a2332;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    color: #d4af37;
    padding-left: 28px;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 80px 0;
    background: white;
}

.detail-content {
    max-width: 1100px;
    margin: 0 auto;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.detail-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
}

.detail-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.3));
}

.detail-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 15px;
}

.detail-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.detail-card ul li {
    padding: 10px 0;
    font-size: 16px;
    color: #495057;
    border-bottom: 1px solid #f0f0f0;
}

.detail-card ul li:last-child {
    border-bottom: none;
}

.detail-cta {
    text-align: center;
    padding-top: 20px;
}

.cta-button {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
        display: none;
    }
    
    .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Revenue Section Redesign */
.revenue-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.intro-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.revenue-intro h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.revenue-intro p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

/* Revenue Benefits Grid */
.revenue-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.revenue-benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.revenue-benefit-card:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.rb-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.revenue-benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 12px;
}

.revenue-benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
}

/* Process Flow */
.revenue-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 50px;
    border-radius: 20px;
    margin: 60px 0;
}

.process-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 50px;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.process-step-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.step-image-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.process-step-item:hover .step-image {
    transform: scale(1.1);
}

.process-step-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 10px;
}

.process-step-item p {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    word-break: keep-all;
}

.step-arrow {
    font-size: 28px;
    color: #667eea;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 5px;
}

/* Support Grid */
.revenue-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.support-card {
    background: white;
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.support-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.support-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 3px solid #667eea;
}

.support-icon {
    font-size: 40px;
}

.support-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a2332;
    margin: 0;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    padding: 12px 0;
    font-size: 16px;
    color: #495057;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.7;
}

.support-list .check {
    color: #667eea;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}

/* Revenue CTA Box */
.revenue-cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 50px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.4);
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .revenue-intro {
        padding: 35px 25px;
    }
    
    .intro-icon {
        font-size: 60px;
    }
    
    .revenue-intro h3 {
        font-size: 24px;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .revenue-support-grid {
        grid-template-columns: 1fr;
    }
    
    .revenue-cta-box {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}


/* Policy Section Image Styles */
.policy-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
}

.policy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.detail-card:hover .policy-image {
    transform: scale(1.08);
}

/* Adjust detail card for images */
#policy-section .detail-card {
    padding: 0;
    overflow: hidden;
}

#policy-section .detail-card h3 {
    padding: 0 30px;
    margin-top: 10px;
}

#policy-section .detail-card p {
    padding: 0 30px 30px 30px;
}

#policy-section .detail-card ul {
    padding: 0 30px 30px 30px;
}

/* Custom Solution Section Image Styles */
#custom-section .detail-card {
    padding: 0;
    overflow: hidden;
}

#custom-section .detail-card h3 {
    padding: 0 30px;
    margin-top: 10px;
}

#custom-section .detail-card p {
    padding: 0 30px 30px 30px;
}

#custom-section .detail-card ul {
    padding: 0 30px 30px 30px;
}

/* Info Section Tabs */
.info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.info-section .section-title {
    margin-bottom: 60px;
}

.info-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-tab {
    padding: 15px 35px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-tab:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.info-tab.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.info-content {
    position: relative;
    min-height: 150px;
}

.info-item {
    display: none;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.5s ease;
}

.info-item.active {
    display: block;
}

.info-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 20px;
}

.info-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .info-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .info-tab {
        width: 80%;
        max-width: 300px;
    }
    
    .info-item {
        padding: 30px 20px;
    }
    
    .info-item h3 {
        font-size: 22px;
    }
    
    .info-item p {
        font-size: 15px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.consultation-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 8px;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

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

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    border: none;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 40px;
    }
}

/* Admin Login Link */
.nav-link-admin {
    display: inline-block;
    padding: 8px 16px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.nav-link-admin:hover {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .nav-link-admin {
        font-size: 24px;
        padding: 12px;
    }
}

/* ========================================
   MOBILE RESPONSIVE DESIGN - COMPREHENSIVE
   ======================================== */

/* Tablet Devices */
@media (max-width: 1024px) {
    .logo-image {
        height: 70px;
    }
    
    .logo h1 {
        font-size: 22px;
    }
    
    .nav-list {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* ===== 헤더 - 항상 보이도록 강제 ===== */
    .header {
        padding: 10px 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 1001 !important;
        background: white !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    }
    
    .header .container {
        padding: 0 15px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 16px;
        white-space: nowrap;
    }
    
    /* Hamburger Menu - 항상 보이게 */
    .hamburger {
        display: flex !important;
        position: relative !important;
        z-index: 1003 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Mobile Navigation */
    .nav {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        max-width: 280px;
        background-color: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        transition: right 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 70px;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link {
        display: block !important;
        padding: 16px 20px !important;
        font-size: 15px !important;
        width: 100%;
        color: #1a2332 !important;
        text-decoration: none !important;
        white-space: nowrap;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #d4af37 !important;
    }
    
    .cta-btn {
        margin: 15px 20px !important;
        display: block;
        text-align: center;
        width: calc(100% - 40px) !important;
        padding: 12px 20px !important;
        white-space: nowrap;
    }
    
    /* Mobile Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Top Banner - 헤더 아래로 */
    .top-banner {
        padding: 8px 0;
        margin-top: 60px;
    }
    
    .top-banner .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .banner-text {
        font-size: 11px;
        white-space: nowrap;
    }
    
    .banner-btn {
        font-size: 11px;
        padding: 4px 10px;
        white-space: nowrap;
    }
    
    /* ===== 회사소개 히어로 섹션 ===== */
    .about-hero {
        padding: 40px 0 30px !important;
        margin-top: 60px !important;
    }
    
    .about-hero-title {
        font-size: 24px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        word-break: keep-all;
    }
    
    .about-hero-subtitle {
        font-size: 15px !important;
        line-height: 1.6 !important;
        word-break: keep-all;
    }
    
    /* 회사정보 그리드 */
    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .info-card {
        padding: 20px !important;
    }
    
    .info-card h3 {
        font-size: 16px !important;
    }
    
    .info-card p {
        font-size: 14px !important;
    }
    
    /* ===== 히어로 섹션 ===== */
    .hero {
        padding: 30px 0 !important;
        margin-top: 60px !important;
    }
    
    .hero .container {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 5px 10px;
        white-space: nowrap;
    }
    
    .hero-title {
        font-size: 24px !important;
        margin: 10px 0 !important;
        word-break: keep-all;
        line-height: 1.4 !important;
    }
    
    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 15px !important;
        word-break: keep-all;
        line-height: 1.6 !important;
    }
    
    .hero-image {
        order: 2;
        width: 100%;
    }
    
    .hero-slider {
        min-height: 220px !important;
        height: 220px !important;
    }
    
    .image-placeholder,
    .hero-placeholder {
        min-height: 220px !important;
        height: 220px !important;
    }
    
    .hero-main-image {
        height: 220px !important;
        object-fit: cover;
    }
    
    .placeholder-icon {
        font-size: 50px !important;
    }
    
    .slider-nav {
        gap: 8px;
    }
    
    .prev-slide,
    .next-slide {
        width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
    }
    
    .slide-indicator {
        width: 8px !important;
        height: 8px !important;
    }
    
    /* ===== 텍스트 줄바꿈 방지 ===== */
    .section-title {
        word-break: keep-all;
        line-height: 1.4 !important;
    }
    
    .section-subtitle {
        word-break: keep-all;
        line-height: 1.6 !important;
    }
    
    .product-title,
    .feature-title,
    .step-title {
        word-break: keep-all;
        line-height: 1.4 !important;
    }
    
    p, li, span {
        word-break: keep-all;
        line-height: 1.6 !important;
    }
    
    /* ===== 푸터 중앙 정렬 및 간격 조정 ===== */
    .footer {
        text-align: center;
    }
    
    .footer .container {
        text-align: center;
    }
    
    .footer-top {
        text-align: center;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px !important;
    }
    
    .footer-logo {
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px !important;
    }
    
    .footer-logo img {
        margin: 0 auto 5px auto !important;
    }
    
    .footer-logo h3 {
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-content {
        text-align: center;
        margin-top: 15px !important;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 15px !important;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 8px !important;
    }
    
    .footer-links {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
        margin-top: 15px !important;
    }
    
    .footer-bottom p {
        text-align: center;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    /* Products Grid Mobile */
    .products {
        padding: 50px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .product-card {
        margin: 0 10px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 25px 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    /* Process Steps Mobile */
    .process-steps {
        padding: 50px 0;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    /* Partners Mobile */
    .partners {
        padding: 50px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-item {
        padding: 20px;
    }
    
    .partner-logo {
        max-height: 50px;
    }
    
    /* Success Stories Mobile */
    .success-stories {
        padding: 50px 0;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .story-card {
        padding: 25px 20px;
    }
    
    .story-company {
        font-size: 18px;
    }
    
    .story-amount {
        font-size: 24px;
    }
    
    /* Contact Form Mobile */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px 40px;
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* About Page Mobile */
    .about-hero {
        padding: 50px 0;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-content {
        padding: 50px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-text h2 {
        font-size: 22px;
    }
    
    .content-text p {
        font-size: 15px;
    }
    
    /* Service Pages Mobile */
    .service-hero {
        padding: 50px 0;
    }
    
    .service-hero h1 {
        font-size: 28px;
    }
    
    .service-details {
        padding: 50px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 32px;
    }
    
    .benefit-title {
        font-size: 18px;
    }
    
    /* Admin Pages Mobile */
    .admin-container {
        padding: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .applications-table {
        overflow-x: auto;
    }
    
    table {
        font-size: 13px;
    }
    
    table th,
    table td {
        padding: 10px 8px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 16px;
    }
    
    .hero-content h2 {
        font-size: 24px !important;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .story-amount {
        font-size: 20px;
    }
    
    .submit-btn {
        font-size: 15px;
        padding: 14px 30px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content h2 {
        font-size: 24px !important;
    }
    
    .nav {
        padding-top: 60px;
    }
}
