/* 
 * FANTOOT Unified Stylesheet
 * A comprehensive stylesheet for the FANTOOT KPOP shipping proxy service
 * Created: May 2025
 */

/* ============================
   1. GENERAL STYLES
   ============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4d94;
}

img {
    max-width: 100%;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff4d94;
}

.section-header p {
    max-width: 800px;
    margin: 10px auto 0;
    font-size: 1.1rem;
    color: #666;
}

/* Page Headers */
.page-header {
    background-color: #ff4d94;
    background-image: linear-gradient(135deg, #9c27b0 0%, #ff4d94 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff4d94;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #e63f82;
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: none;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
}

.btn-outline {
    background-color: transparent;
    color: #ff4d94;
    border: 1px solid #ff4d94;
}

.btn-outline:hover {
    background-color: #ff4d94;
    color: white;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff4d94;
    outline: none;
}

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

.form-group .input-with-icon {
    position: relative;
}

.form-group .input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    color: #999;
}

.form-group .input-with-icon input {
    padding-left: 40px;
}

.form-group .helper-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    flex: 1;
    margin-bottom: 0;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* ============================
   2. HEADER & NAVIGATION
   ============================ */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Menu */
.top-menu {
    background-color: #f5f5f5;
    padding: 8px 0;
}

.top-menu-right {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.top-menu a {
    font-size: 0.9rem;
    color: #666;
}

.top-menu a:hover {
    color: #ff4d94;
}

/* Main Header */
.main-header {
    padding: 15px 0;
}

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

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

.logo h1 {
    font-size: 2rem;
    color: #ff4d94;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-logo {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

/* Navigation */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

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

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

/* Language Selector in Header */
.language-selector {
    position: relative;
    margin-left: 20px;
    display: inline-block;
}

.language-selector .current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    padding: 5px 10px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.language-selector .current-language:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.language-selector .current-language i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.language-selector .language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 150px;
    overflow: hidden;
    display: none;
    margin-top: 10px;
}

.language-selector.active .language-dropdown {
    display: block;
}

.language-selector .language-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-selector .language-dropdown ul li {
    padding: 0;
    margin: 0;
}

.language-selector .language-dropdown ul li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-selector .language-dropdown ul li a:hover {
    background-color: #f9f0f5;
    color: #ff4d94;
}

.language-selector .language-dropdown ul li a .lang-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.language-selector .language-dropdown ul li a .lang-name {
    font-size: 0.9rem;
}

/* ============================
   3. HOMEPAGE SPECIFIC
   ============================ */

/* Banner Section */
.banner-section {
    padding: 0;
    margin-bottom: 50px;
}

.banner-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9c27b0;
    background-image: linear-gradient(135deg, #9c27b0 0%, #ff4d94 100%);
    color: white;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-content {
    text-align: center;
    padding: 20px;
}

.banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.price-item.highlight {
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.price-item .company {
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-item .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.banner-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Notice Section */
.notice-section {
    margin-bottom: 50px;
    padding: 20px 0;
}

.latest-notice {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
}

.notice-date {
    font-size: 0.9rem;
    padding: 5px 10px;
    background-color: #ff4d94;
    color: white;
    border-radius: 5px;
    white-space: nowrap;
}

.notice-text {
    font-size: 1rem;
}

/* KPOP News Section */
.kpop-news-section {
    margin-bottom: 50px;
    padding: 20px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.news-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.news-image {
    height: 180px;
    overflow: hidden;
}

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

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.news-date {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

.view-more {
    text-align: center;
}

.view-more a {
    display: inline-block;
    padding: 10px 25px;
    background-color: #ff4d94;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.view-more a:hover {
    background-color: #e63f82;
}

/* How to Use Section */
.how-to-use-section {
    margin-bottom: 50px;
    padding: 50px 0;
    background-color: #f0f0f0;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background-color: #f9f0f5;
    border-radius: 50%;
    font-size: 2rem;
    color: #ff4d94;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* How It Works Section */
.how-it-works-section {
    margin-bottom: 50px;
    padding: 20px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.service-item {
    text-align: center;
    padding: 25px 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2rem;
    color: #ff4d94;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.85rem;
    color: #666;
}

/* ============================
   4. SERVICE PAGE SPECIFIC
   ============================ */
.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.category-btn {
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    background-color: #e0e0e0;
}

.category-btn.active {
    background-color: #ff4d94;
    color: white;
}

.services-list .service-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: left;
}

.services-list .service-header {
    background-color: #f9f0f5;
    padding: 20px;
    display: flex;
    align-items: center;
}

.services-list .service-icon {
    font-size: 2rem;
    color: #ff4d94;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-title h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #333;
}

.service-type {
    font-size: 0.9rem;
    color: #666;
}

.service-content {
    padding: 20px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: #ff4d94;
    margin-right: 10px;
}

.service-price {
    background-color: #f9f9f9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
}

.price-tag {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.learn-more-btn {
    padding: 8px 20px;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e63f82;
}

.extra-services {
    background-color: #f8f8f8;
    padding: 50px 0;
    margin: 30px 0 50px;
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.extra-service-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.extra-service-icon {
    font-size: 1.5rem;
    color: #ff4d94;
    margin-right: 15px;
}

.extra-service-card h3 {
    font-size: 1.1rem;
    color: #333;
}

.extra-service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* ============================
   5. PRICE PAGE SPECIFIC
   ============================ */
.price-comparison-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-comparison-table th, 
.price-comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.price-comparison-table th {
    background-color: #f9f0f5;
    font-weight: 600;
    color: #333;
}

.price-comparison-table tr:last-child td {
    border-bottom: none;
}

.price-comparison-table tr:hover td {
    background-color: #f9f9f9;
}

.price-comparison-table .company-name {
    font-weight: 600;
    text-align: left;
}

.price-comparison-table .highlight {
    background-color: #fff9fc;
    font-weight: 700;
    color: #ff4d94;
}

.price-comparison-table .check {
    color: #28a745;
}

.price-comparison-table .cross {
    color: #dc3545;
}

.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.price-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.price-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-card-icon {
    font-size: 2.5rem;
    color: #ff4d94;
    margin-bottom: 15px;
}

.price-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.price-card-price {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4d94;
}

.price-card-unit {
    font-size: 0.9rem;
    color: #666;
}

.price-card-features {
    margin-bottom: 25px;
}

.price-card-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.price-card-feature i {
    color: #ff4d94;
    margin-right: 10px;
    font-size: 0.9rem;
}

.price-card-feature span {
    font-size: 0.9rem;
    color: #666;
}

.price-card-button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.price-card-button:hover {
    background-color: #e63f82;
}

.calculator-section {
    background-color: #f8f8f8;
    padding: 50px 0;
    margin-bottom: 50px;
}

.calculator-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.calculator-button {
    padding: 12px 25px;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.calculator-button:hover {
    background-color: #e63f82;
}

.calculator-result {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: none;
}

.calculator-result h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
}

.result-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.result-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff4d94;
}

/* ============================
   6. FAQ PAGE SPECIFIC
   ============================ */
.faq-search {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.faq-search input {
    width: 100%;
    padding: 15px 20px;
    padding-left: 50px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-search input:focus {
    border-color: #ff4d94;
    outline: none;
    box-shadow: 0 5px 20px rgba(255, 77, 148, 0.1);
}

.faq-search i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 1.2rem;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section-title {
    margin-bottom: 25px;
    text-align: center;
}

.faq-section-title h2 {
    font-size: 1.8rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.faq-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff4d94;
}

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

.accordion-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    padding-right: 40px;
    position: relative;
}

.accordion-header i {
    transition: transform 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.accordion-item.active .accordion-header {
    border-bottom: 1px solid #f0f0f0;
}

.accordion-item.active .accordion-header i {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.faq-contact {
    background-color: #f8f8f8;
    padding: 50px 0;
    margin-bottom: 50px;
    text-align: center;
}

.faq-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.faq-contact p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.contact-option {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2rem;
    color: #ff4d94;
    margin-bottom: 15px;
}

.contact-option h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-option p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.contact-option a {
    display: inline-block;
    padding: 8px 20px;
    background-color: #ff4d94;
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.contact-option a:hover {
    background-color: #e63f82;
}

/* ============================
   7. NEWS PAGE SPECIFIC
   ============================ */
.news-tag {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f9f0f5;
    color: #ff4d94;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    font-size: 0.85rem;
    color: #999;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more {
    color: #ff4d94;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-read-more:hover {
    color: #e63f82;
}

.featured-news {
    margin-bottom: 50px;
}

.featured-item {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

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

.featured-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: #f9f0f5;
    color: #ff4d94;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.featured-meta {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.featured-meta div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #ff4d94;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.read-more-btn:hover {
    background-color: #e63f82;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a {
    display: inline-block;
    padding: 8px 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    color: #555;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background-color: #ff4d94;
    color: white;
}

.subscribe-section {
    background-color: #f9f0f5;
    padding: 50px 0;
    border-radius: 10px;
    margin-bottom: 50px;
    text-align: center;
}

.subscribe-content {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.subscribe-content p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    outline: none;
}

.subscribe-form button {
    padding: 15px 25px;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #e63f82;
}

/* ============================
   8. CONTACT PAGE SPECIFIC
   ============================ */
.contact-section {
    padding: 0 0 50px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ff4d94;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f9f0f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ff4d94;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.office-hours {
    margin-top: 20px;
}

.office-hours p {
    margin-bottom: 10px;
}

.day {
    font-weight: 600;
    color: #333;
    display: inline-block;
    width: 120px;
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

/* ============================
   9. AUTH PAGES (LOGIN/REGISTER)
   ============================ */
.login-section, .register-section {
    padding: 50px 0;
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
}

.login-container, .register-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.register-container {
    max-width: 800px;
}

.login-header, .register-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2, .register-header h2 {
    font-size: 2rem;
    color: #333;
}

.login-header p, .register-header p {
    color: #666;
    margin-top: 10px;
}

.remember-me {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    width: auto;
    margin-right: 10px;
}

.btn-login, .register-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover, .register-btn:hover {
    background-color: #e63f82;
}

.login-footer, .register-footer {
    margin-top: 30px;
    text-align: center;
}

.login-footer a, .register-footer a {
    color: #ff4d94;
}

.social-login {
    margin-top: 30px;
}

.social-login-divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.social-login-divider:before,
.social-login-divider:after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.social-login-divider span {
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
}

.social-login-buttons {
    display: flex;
    gap: 15px;
}

.social-login-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-login-btn:hover {
    background-color: #f5f5f5;
}

.social-login-btn i {
    font-size: 1.2rem;
}

.social-login-btn.google i {
    color: #DB4437;
}

.social-login-btn.facebook i {
    color: #4267B2;
}

.register-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefits-container {
    background-color: #f9f0f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
}

.benefits-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #333;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
}

.benefit-item i {
    color: #ff4d94;
    margin-right: 10px;
    margin-top: 3px;
}

.benefit-text {
    font-size: 0.9rem;
    color: #666;
}

/* ============================
   10. MY PAGE DASHBOARD
   ============================ */
.mypage-section {
    padding: 50px 0;
    min-height: calc(100vh - 300px);
    background-color: #f9f9f9;
}

.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.dashboard-sidebar {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.dashboard-content {
    flex: 3;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.user-profile {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin: 0 auto 15px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #999;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.user-email {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.user-status {
    display: inline-block;
    padding: 5px 15px;
    background-color: #e6f7ff;
    color: #0091ea;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dashboard-nav {
    list-style: none;
}

.dashboard-nav li {
    margin-bottom: 10px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #555;
}

.dashboard-nav a:hover {
    background-color: #f5f5f5;
    color: #ff4d94;
}

.dashboard-nav a.active {
    background-color: #ff4d94;
    color: white;
}

.dashboard-nav i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.dashboard-logout {
    margin-top: 30px;
}

.logout-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background-color: #f9f0f5;
    color: #ff4d94;
    border: 1px solid #ffcce0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background-color: #ffe0ec;
}

.dashboard-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.dashboard-title h2 {
    font-size: 1.5rem;
    color: #333;
}

.dashboard-title .refresh-btn {
    background: transparent;
    border: none;
    color: #ff4d94;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dashboard-title .refresh-btn:hover {
    text-decoration: underline;
}

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

.stat-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff4d94;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.korean-address {
    background-color: #f9f0f5;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.address-header h3 {
    font-size: 1.1rem;
    color: #333;
}

.copy-btn {
    background: transparent;
    border: none;
    color: #ff4d94;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.copy-btn:hover {
    text-decoration: underline;
}

.address-content {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ffe0ec;
}

.address-line {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.address-line:last-child {
    margin-bottom: 0;
}

.address-line strong {
    color: #333;
    display: inline-block;
    width: 100px;
}

.package-list {
    margin-bottom: 30px;
}

.package-table {
    width: 100%;
    border-collapse: collapse;
}

.package-table th,
.package-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.package-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #333;
}

.package-table tr:last-child td {
    border-bottom: none;
}

.package-table tr:hover td {
    background-color: #f9f9f9;
}

.package-id {
    font-weight: 600;
    color: #ff4d94;
}

.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-received {
    background-color: #e0f7fa;
    color: #00838f;
}

.status-processing {
    background-color: #fff8e1;
    color: #ff8f00;
}

.status-shipped {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.status-delivered {
    background-color: #e0f2f1;
    color: #00695c;
}

.action-btn {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f0f0f0;
    color: #555;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-right: 5px;
}

.action-btn:hover {
    background-color: #e0e0e0;
}

.action-btn.primary {
    background-color: #ff4d94;
    color: white;
}

.action-btn.primary:hover {
    background-color: #e63f82;
}

.alert {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert i {
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0277bd;
    border-left: 4px solid #0277bd;
}

/* ============================
   11. CHAT BUBBLE
   ============================ */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background-color: #ff4d94;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.chat-button:hover {
    background-color: #e63f82;
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
}

.chat-header {
    background-color: #ff4d94;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1rem;
    margin: 0;
}

.close-chat {
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
}

.chat-body {
    padding: 15px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat-message {
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    max-width: 80%;
    word-break: break-word;
}

.chat-message.support {
    background-color: #f0f0f0;
    align-self: flex-start;
}

.chat-message.user {
    background-color: #e6f7ff;
    align-self: flex-end;
}

.chat-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
}

.send-message {
    background-color: #ff4d94;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   12. FOOTER
   ============================ */
footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-info h3,
.footer-links h3,
.footer-social h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-info h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff4d94;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4d94;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff4d94;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

/* ============================
   13. NOTIFICATION BELL
   ============================ */
.notification-bell {
    position: relative;
    margin-left: 20px;
}

.notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background-color: #ff4d94;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================
   14. RESPONSIVE STYLES
   ============================ */
@media screen and (max-width: 1200px) {
    .container {
        width: 95%;
    }
}

@media screen and (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
        width: 100%;
    }
    
    .price-comparison {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .price-item {
        min-width: 120px;
    }
    
    .dashboard-container {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.show {
        max-height: 300px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .banner-slide {
        height: 350px;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .price-comparison {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .price-item {
        width: 80%;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-table {
        display: block;
        overflow-x: auto;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-content h2 {
        font-size: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .subscribe-form input {
        border-radius: 30px;
    }
    
    .subscribe-form button {
        border-radius: 30px;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .banner-slide {
        height: 300px;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 0.9rem;
    }
    
    .latest-notice {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .chat-popup {
        width: 280px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-option {
        width: 100%;
        max-width: 100%;
    }
    
    .social-login-buttons {
        flex-direction: column;
    }
}