/* 스피드케어24 - 레드 테마 CSS */

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

body {
    font-family: 'Apple SD Gothic Neo', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: #1a1a1a;
    line-height: 1.7;
    background: #fff;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(211, 47, 47, 0.3);
}

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

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

.logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.speed-badge {
    background: #FFEB3B;
    color: #D32F2F;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.cta-btn {
    background: #fff;
    color: #D32F2F;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #FFEB3B;
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #FF5252;
    text-shadow: 0 0 20px rgba(255, 82, 82, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: #FFEB3B;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    color: #fff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(255, 82, 82, 0.4);
    transition: all 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 82, 82, 0.6);
}

/* Why Speed Section */
.why-speed {
    padding: 80px 20px;
    background: #f8f8f8;
}

.why-speed h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.reason-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.2);
}

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

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #D32F2F;
}

.reason-card p {
    color: #555;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: #fff;
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.pricing-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.pricing-category {
    font-size: 28px;
    margin: 50px 0 30px 0;
    text-align: center;
    color: #D32F2F;
}

.pricing-category.korean {
    color: #1976D2;
}

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

.price-card {
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.price-card.featured {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-color: #FF5252;
    border-width: 3px;
}

.price-card.premium {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    border-color: #1976D2;
    border-width: 3px;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FF5252;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.premium .card-badge {
    background: #1976D2;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.price-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.price-list {
    border-top: 2px solid #ddd;
    padding-top: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.price-row:last-child {
    border-bottom: none;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #D32F2F;
}

.pricing-notice {
    background: #FFF3E0;
    border-left: 4px solid #FF5252;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
}

.pricing-notice h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #D32F2F;
}

.pricing-notice ul {
    list-style: none;
}

.pricing-notice li {
    padding: 8px 0;
    font-size: 16px;
}

/* Process Section */
.process-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.process-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.process-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FF5252;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    min-width: 200px;
}

.process-number {
    background: #FF5252;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px auto;
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-arrow {
    font-size: 30px;
    color: #FF5252;
}

/* Regions Section */
.regions-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

.regions-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.regions-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

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

.region-link {
    background: #fff;
    border: 2px solid #e0e0e0;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s;
}

.region-link:hover {
    background: #FF5252;
    color: #fff;
    border-color: #FF5252;
    transform: translateY(-3px);
}

.regions-more {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-top: 30px;
}

/* Region Hero */
.region-hero {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.region-hero h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.region-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}

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

.quick-info span {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 14px;
}

.hero-cta {
    display: inline-block;
    background: #fff;
    color: #D32F2F;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
}

.hero-cta:hover {
    background: #FFEB3B;
    transform: scale(1.05);
}

/* Speed Guarantee */
.speed-guarantee {
    padding: 60px 20px;
    background: #fff;
}

.speed-guarantee h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.speed-card {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid #FF5252;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.speed-time {
    font-size: 36px;
    font-weight: 900;
    color: #D32F2F;
    margin-bottom: 10px;
}

.speed-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.speed-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 30px;
}

/* Region Features */
.region-features {
    padding: 60px 20px;
    background: #f8f8f8;
}

.region-features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

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

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

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #D32F2F;
}

/* Booking Process */
.booking-process {
    padding: 60px 20px;
    background: #fff;
}

.booking-process h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

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

.process-step {
    background: #f8f8f8;
    border: 2px solid #FF5252;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    min-width: 180px;
}

.step-num {
    background: #FF5252;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 15px auto;
}

/* Region Info */
.region-info {
    padding: 60px 20px;
    background: #f8f8f8;
}

.region-info h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
}

.info-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #D32F2F;
}

.location-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.location-list li {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}

.time-table {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.time-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.time-row:last-child {
    border-bottom: none;
}

.time-value {
    font-weight: 700;
    color: #D32F2F;
}

.time-note {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

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

.faq-item {
    background: #f8f8f8;
    border-left: 4px solid #FF5252;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #D32F2F;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Safety Section */
.safety-section {
    padding: 60px 20px;
    background: #f8f8f8;
}

.safety-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.safety-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.safety-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #D32F2F;
}

/* CTA Sections */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background: #fff;
    color: #D32F2F;
    padding: 20px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background: #FFEB3B;
    transform: scale(1.05);
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.cta-final {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.cta-final h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.cta-button-xl {
    display: inline-block;
    background: linear-gradient(135deg, #FF5252 0%, #D32F2F 100%);
    color: #fff;
    padding: 25px 60px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 32px;
    font-weight: 900;
    box-shadow: 0 6px 25px rgba(255, 82, 82, 0.5);
    transition: all 0.3s;
}

.cta-button-xl:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(255, 82, 82, 0.7);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 30px 20px;
}

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

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FF5252;
}

.footer-contact p {
    margin: 8px 0;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #888;
}

.footer-bottom a {
    color: #FF5252;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .regions-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .cta-button-xl {
        font-size: 24px;
        padding: 20px 40px;
    }
}

/* 지역별 도착 시간 섹션 */
.delivery-time {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.delivery-time h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 50px;
}

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

.time-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 2px solid rgba(229, 57, 53, 0.3);
    transition: all 0.3s ease;
}

.time-card:hover {
    transform: translateY(-5px);
    border-color: #E53935;
    box-shadow: 0 10px 30px rgba(229, 57, 53, 0.3);
}

.time-card.primary {
    border-color: #E53935;
    background: rgba(229, 57, 53, 0.1);
}

.time-card.secondary {
    border-color: rgba(255, 152, 0, 0.5);
    background: rgba(255, 152, 0, 0.05);
}

.time-card h3 {
    color: #E53935;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-card.secondary h3 {
    color: #FF9800;
}

.time-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.time-card ul li {
    color: #e0e0e0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

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

.time-badge {
    text-align: center;
    background: linear-gradient(135deg, #E53935, #C62828);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.time-card.secondary .time-badge {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.time-badge strong {
    font-size: 1.3rem;
    font-weight: 700;
}

.time-notice {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 40px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .delivery-time h2 {
        font-size: 1.8rem;
    }
    
    .time-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .time-card {
        padding: 20px;
    }
}
