* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f1f5f9;
}

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

/* Logo Styling */
.logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-fallback {
    display: none;
}

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

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.cart-icon {
    position: relative;
    width: 40px;
    height: 30px;
}

.cart-body {
    width: 32px;
    height: 20px;
    border: 3px solid #f59e0b;
    border-radius: 4px;
    position: absolute;
    top: 5px;
    left: 4px;
}

.cart-handle {
    width: 8px;
    height: 12px;
    border: 3px solid #f59e0b;
    border-right: none;
    border-radius: 4px 0 0 4px;
    position: absolute;
    top: 8px;
    left: 0;
}

.cart-wheels {
    position: absolute;
    bottom: 0;
    left: 8px;
    display: flex;
    gap: 12px;
}

.wheel {
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
}

.star-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.star {
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 900;
    color: #374151;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 48px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #f59e0b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

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

.book-tickets-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.book-tickets-btn:hover {
    background: #d97706;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cart" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M20,30 L25,30 L30,70 L70,70 L75,30 L80,30" stroke="%23f59e0b" stroke-width="2" fill="none" opacity="0.1"/><circle cx="35" cy="80" r="3" fill="%23f59e0b" opacity="0.1"/><circle cx="65" cy="80" r="3" fill="%23f59e0b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cart)"/></svg>') repeat;
    opacity: 0.1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 3;
    position: relative;
    height: 100vh;
}

.hero-content {
    z-index: 3;
    position: relative;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 비율 유지 */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 비율 유지 */
    transform: translate(-50%, -50%);
    border: none;
    outline: none;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 65, 81, 0.7);
    z-index: 2;
}

/* 유튜브 컨트롤 숨기기 */
.hero-video-background iframe::-webkit-media-controls {
    display: none !important;
}

.hero-video-background iframe::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.hero-line {
    display: block;
}

.cta-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styling */
section {
    padding: 150px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    color: #f59e0b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}

/* Service Introduction */
.service-intro {
    background: #f8fafc;
}

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

.intro-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.intro-card h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #374151;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

/* Brand Section */
.brand-section {
    text-align: center;
    background: white;
}

.brand-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.3;
}

.brand-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 60px;
    font-weight: 400;
}

.service-description h3 {
    color: #2563eb;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.service-video {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.service-video iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: none;
    outline: none;
    background: #000;
}

.service-video iframe::-webkit-media-controls {
    display: none !important;
}

.service-video iframe::-webkit-media-controls-enclosure {
    display: none !important;
}

/* New Mission Vision Section */
.mission-vision-new {
    background: white;
    padding: 150px 0 100px 0;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-centered h3 {
    color: #f59e0b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-centered h1 {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.2;
    margin: 0;
}

.mv-content-vertical {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.mv-text-section-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.mv-image-section-bottom {
    display: flex;
    justify-content: center;
    position: relative;
}

.mv-item-new {
    padding-left: 30px;
    border-left: 4px solid #f59e0b;
}

.mv-item-new h4 {
    color: #06b6d4;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.mv-item-new p {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.mv-image-section {
    position: relative;
}

.teamwork-image {
    width: 100%;
    max-width: 800px;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.teamwork-placeholder {
    width: 100%;
    max-width: 800px;
    height: 500px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.teamwork-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.teamwork-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.teamwork-placeholder p {
    color: #6b7280;
    font-size: 16px;
}

/* Business Section */
.business-section {
    background: #f8fafc;
    padding: 150px 0;
}

.section-header-business {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-business h3 {
    color: #f59e0b;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-business h1 {
    font-size: 48px;
    font-weight: 900;
    color: #1f2937;
    line-height: 1.2;
    margin: 0;
}

.business-characteristics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.characteristic-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.characteristic-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.characteristic-image {
    position: relative;
    height: 368px;
    overflow: hidden;
}

.characteristic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.characteristic-item:hover .characteristic-image img {
    transform: scale(1.05);
}

.char-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.char-placeholder .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.char-placeholder h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #374151;
}

.characteristic-content {
    padding: 30px;
}

.characteristic-content h4 {
    color: #06b6d4;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.characteristic-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.characteristic-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Partner Section */
.partner-section {
    background: #1f2937;
    color: white;
    padding: 150px 0;
}

.section-header-partner {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-partner h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-partner h1 {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin: 0;
}

.partner-reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.partner-review {
    background: rgba(255, 255, 255, 0.95);
    color: #374151;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-review h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.partner-review blockquote {
    font-size: 16px;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    font-weight: 500;
}

.partner-review p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

.partner-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 60px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-box .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.stat-box .stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

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

.categories-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.category-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.category-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-item h3 {
    color: #374151;
    font-size: 1rem;
    font-weight: 600;
    padding: 20px;
    margin: 0;
}

/* Mission & Vision */
.mission-vision {
    background: #f8fafc;
    text-align: center;
}

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

.mv-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-item h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 20px;
}

.mv-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
}

.learn-more-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.learn-more-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Service Advantages */
.service-advantages {
    background: white;
}

.advantages-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.advantages-image {
    position: relative;
}

.advantages-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.advantages-image img:hover {
    transform: scale(1.02);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.image-placeholder h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.image-placeholder p {
    color: #6b7280;
    font-size: 16px;
}

.advantages-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.advantages-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 30px;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
}

.advantage-list li:last-child {
    border-bottom: none;
}

.advantage-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 18px;
}

/* Characteristics */
.characteristics {
    background: #f8fafc;
}

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

.char-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.char-item h4 {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.char-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.char-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-item h4 {
    color: #f59e0b;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.feature-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Reviews */
.reviews {
    background: white;
}

.rating {
    text-align: center;
    margin-bottom: 40px;
}

.rating-label {
    color: #6b7280;
    margin-right: 10px;
}

.rating-score {
    font-size: 2rem;
    font-weight: 900;
    color: #f59e0b;
}

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

.review-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.review-item p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #374151;
}

.review-item cite {
    font-size: 14px;
    color: #6b7280;
    font-style: normal;
    font-weight: 600;
}

/* Brand Reviews */
.brand-reviews {
    background: #f8fafc;
}

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

.brand-review {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-review h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.brand-review blockquote {
    font-size: 16px;
    font-style: italic;
    color: #374151;
    margin-bottom: 15px;
    font-weight: 500;
}

.brand-review p {
    color: #6b7280;
    line-height: 1.6;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

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

.stat-label {
    display: block;
    color: #6b7280;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #f59e0b;
}

.categories {
    text-align: center;
}

.categories h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.category-list span {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    color: #6b7280;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team {
    background: white;
}

.team-info {
    text-align: center;
    margin-bottom: 60px;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 10px;
}

.team-info p {
    color: #6b7280;
}

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

.team-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.team-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.team-desc {
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
}

.team-item ul {
    list-style: none;
}

.team-item li {
    color: #374151;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.team-item li:before {
    content: "•";
    color: #f59e0b;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    background: #1f2937;
    color: white;
}

.contact-single {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-main-title {
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.contact-subtitle {
    font-size: 30px;
    font-weight: 400;
    color: white;
    margin-bottom: 40px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.contact-item h3 {
    color: #60a5fa;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-item h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-item p {
    color: #d1d5db;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 100px auto 100px auto;
    display: block;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.contact-left {
    text-align: left;
}

.contact-right {
    text-align: right;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-info .links {
    margin-top: 15px;
}

.contact-info .links a {
    color: #60a5fa;
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        height: 80vh;
    }
    
    .hero-overlay {
        background: rgba(55, 65, 81, 0.8);
    }
    
    .service-video iframe {
        height: 250px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .brand-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo-image {
        height: 35px;
        max-width: 150px;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .intro-cards,
    .mv-grid,
    .char-grid,
    .service-features,
    .reviews-grid,
    .brand-reviews-grid,
    .team-grid,
    .advantages-content,
    .mv-content,
    .mv-text-section-horizontal,
    .business-characteristics,
    .partner-reviews,
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-single {
        max-width: 100%;
    }
    
    .contact-main-title {
        font-size: 48px;
        white-space: normal;
    }
    
    .contact-subtitle {
        font-size: 20px;
        white-space: normal;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-left,
    .contact-right {
        text-align: center;
    }
    
    .section-header-business h1 {
        font-size: 36px;
    }
    
    .business-characteristics {
        gap: 30px;
    }
    
    .section-header-partner h1 {
        font-size: 36px;
    }
    
    .partner-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-box {
        padding: 20px 40px;
    }
    
    .categories-section h2 {
        font-size: 1.5rem;
    }
    
    .section-header-centered h1 {
        font-size: 36px;
    }
    
    .mv-content-vertical {
        gap: 40px;
    }
    
    .mv-text-section-horizontal {
        gap: 30px;
        margin-bottom: 20px;
    }
    
    .teamwork-image,
    .teamwork-placeholder {
        height: 300px;
    }
    
    .advantages-content {
        gap: 40px;
    }
    
    .advantages-image img {
        height: 250px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .category-list {
        flex-direction: column;
        align-items: center;
    }
}
