:root {
    /* Modern luxury color palette */
    --primary-color: #0a1f44; /* Deep navy blue - more luxurious */
    --primary-light: #eef2ff; /* Soft blue background */
    --secondary-light: #ffffff; /* Light gold for subtle highlights */
    --accent-color: #2563eb; /* Vibrant blue for actions */
    --text-color: #1e293b; /* Dark slate for main text */
    --text-light: #64748b; /* Softer text for descriptions */
    --white: #ffffff;
    --light-gray: #f8fafc; /* Soft background */
    --medium-gray: #e2e8f0; /* Medium grays */
    --dark-gray: #475569; /* Darker gray for contrast */
    --border-color: #cbd5e1; /* Softer borders */
    --success-color: #059669; /* More elegant green */
    --error-color: #dc2626; /* Refined red */
    --warning-color: #eab308; /* Rich amber */
    --font-main: 'Prompt', sans-serif; /* Thai-friendly modern font */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), #1e3a8a);
    --gradient-gold: linear-gradient(135deg, var(--secondary-color), #e9d8a7);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.07), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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



.container_wed_price {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Header Styles - More elegant and spacious */
header {
    text-align: center;
    margin: 0 auto 80px;
    max-width: 900px;
    margin-bottom:0.1px;
}

.header-content_wed_price {
    position: relative;
    padding: 30px 10px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 50px;
}

.header-content_wed_price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.subtitle_wed_price {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.header-accent_wed_price {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto;
}

/* Mobile Package Cards - More luxurious styling */
.mobile-packages_wed_price {
    display: none;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
}

.package-card_wed_price {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.package-card_wed_price:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card_wed_price.premium_wed_price {
    border: none;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                var(--gradient-gold) border-box;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.package-header_wed_price {
    padding: 35px 30px 25px;
    text-align: center;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
    position: relative;
}

.package-header_wed_price.premium_wed_price {
    background: linear-gradient(to bottom, var(--secondary-light), var(--white));
}

.popular-tag_wed_price {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-header_wed_price h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.price_wed_price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.03em;
}

.description_wed_price {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 20px;
}

.package-divider_wed_price {
    height: 2px;
    width: 60px;
    background: var(--secondary-color);
    margin: 0 auto;
}

.package-features_wed_price {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.package-card_wed_price.show-details_wed_price .package-features_wed_price {
    max-height: 1200px;
    padding: 30px;
}

.show-features_wed_price {
    width: 100%;
    padding: 14px 20px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.show-features_wed_price:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.feature-details_wed_price {
    margin-top: 25px;
}

.feature-group_wed_price {
    margin-bottom: 30px;
}

.feature-group_wed_price h4 {
    background: var(--primary-light);
    padding: 12px 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--secondary-color);
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    color: var(--primary-color);
}

.feature-item_wed_price {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.feature-item_wed_price:last-child {
    border-bottom: none;
}

.feature-name_wed_price {
    flex: 1;
    font-weight: 400;
}

.feature-value_wed_price {
    width: 100px;
    text-align: center;
    font-weight: 500;
}

.check_wed_price {
    color: var(--success-color);
    font-size: 1.2rem;
}

.times_wed_price {
    color: var(--error-color);
    font-size: 1.2rem;
}

/* Pricing Table - Refined elegance */
.pricing-table-container_wed_price {
    overflow-x: auto;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.pricing-header_wed_price {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 40px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.pricing-header_wed_price h2 {
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
}

.pricing-table_wed_price {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    padding: 20px;
}

.pricing-table_wed_price th, .pricing-table_wed_price td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.pricing-table_wed_price th {
    padding: 25px 15px;
}

.pricing-table_wed_price .package-headers_wed_price {
    border-bottom: 1px solid var(--border-color);
}

.pricing-table_wed_price .feature-col_wed_price {
    text-align: left;
    font-weight: 500;
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--white);
    color: var(--primary-color);
}

.pricing-table_wed_price tbody td:first-child {
    text-align: left;
    background: var(--white);
    position: sticky;
    left: 0;
    z-index: 1;
    padding-left: 25px;
    font-weight: 400;
    color: var(--text-color);
}

.pricing-table_wed_price .package-col_wed_price {
    min-width: 180px;
    vertical-align: top;
    background: var(--white);
    padding: 25px 15px;
    position: relative;
}

.pricing-table_wed_price .premium-col_wed_price {
    background: var(--secondary-light);
    border-bottom: 3px solid var(--secondary-color);
    position: relative;
}

.pricing-table_wed_price .special-col_wed_price {
    background: #f3f4f6;
}

.package-title_wed_price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.package-price_wed_price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.package-desc_wed_price {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* แก้ไขส่วน recommended badge ในหน้า index */
.recommended-badge_wed_price {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white, #ffffff);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.premium-col_wed_price .recommended-badge_wed_price {
    background: #c8a955; /* สีทองสำหรับ SHOPPING */
}

.special-col_wed_price .recommended-badge_wed_price {
    background: #c8a955; /* สีม่วงสำหรับ SPECIAL */
}

.package-col_wed_price:not(.premium-col_wed_price):not(.special-col_wed_price) .recommended-badge_wed_price {
    background: #c8a955; /* สีน้ำเงินเข้มสำหรับ CORPORATE และ CATALOG */
}

.section-header_wed_price td {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 1.15rem !important;
    padding: 15px 25px !important;
    text-align: left !important;
}

.pricing-table_wed_price .section-header_wed_price td {
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #dc2626 !important;
    background: var(--primary-light) !important;
    text-align: left !important;
    vertical-align: middle !important;
    letter-spacing: 0.01em;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

/* Note Section - More refined */
.note-section_wed_price {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin: 50px 0;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-color);
    overflow: hidden;
}

.note-content_wed_price {
    padding: 25px 30px;
}

.note-section_wed_price p {
    margin-bottom: 10px;
    color: var(--text-light);
    line-height: 1.5;
}

.note-section_wed_price p:last-child {
    margin-bottom: 0;
}

.note-highlight_wed_price {
    color: var(--warning-color) !important;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Contact Section - More luxurious */
.contact-section_wed_price {
    text-align: center;
    margin: 80px 0 50px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-section_wed_price:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-gold);
}

.contact-content_wed_price {
    padding: 60px 40px;
}

.contact-section_wed_price h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-subtitle_wed_price {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons_wed_price {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-btn_wed_price {
    display: inline-flex;
    align-items: center;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.contact-btn_wed_price:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-btn_wed_price i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.phone-btn_wed_price {
    background: var(--success-color);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.phone-btn_wed_price:hover {
    background: #047857;
    box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3);
}

.line-btn_wed_price {
    background: #00c300;
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.2);
}

.line-btn_wed_price:hover {
    background: #00a700;
    box-shadow: 0 6px 15px rgba(0, 195, 0, 0.3);
}

.email-btn_wed_price {
    background: var(--accent-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.email-btn_wed_price:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container_wed_price {
        padding: 40px 20px;
    }
    
    header h1 {
        font-size: 2.8rem;
    }
    
    .subtitle_wed_price {
        font-size: 1.2rem;
    }
    
    .pricing-table_wed_price th, .pricing-table_wed_price td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
    
    .package-title_wed_price {
        font-size: 1.2rem;
    }
    
    .package-price_wed_price {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-packages_wed_price {
        display: flex;
    }
    
    .pricing-table-container_wed_price {
        display: none;
    }
    
    .header-content_wed_price {
        padding: 40px 30px;
    }
    
    header h1 {
        font-size: 2.4rem;
    }
    
    .subtitle_wed_price {
        font-size: 1.1rem;
    }
    
    .contact-buttons_wed_price {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-btn_wed_price {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    
    .footer-content_wed_price {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .social-links_wed_price {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container_wed_price {
        padding: 30px 15px;
    }
    
    header {
        margin-bottom: 50px;
    }
    
    .header-content_wed_price {
        padding: 30px 20px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .subtitle_wed_price {
        font-size: 1rem;
    }
}

/* === Sticky footer package comparison === */
.package-comparison_wed_price {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    overflow-x: auto;
    background: var(--white);
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    scroll-snap-type: x mandatory;
    z-index: 10;
}

.package-comparison_wed_price .package_wed_price {
    flex: 0 0 25%;
    padding: 1.5rem;
    text-align: center;
    scroll-snap-align: start;
    border-left: 1px solid var(--border-color);
}

.package-comparison_wed_price .package_wed_price:first-child {
    border-left: none;
}

.package-comparison_wed_price h3 {
    margin-bottom: .5rem;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.package-comparison_wed_price .price_wed_price {
    font-size: 1.5rem;
    font-weight: bold;
    margin: .5rem 0;
}

.package-comparison_wed_price .tagline_wed_price {
    font-size: .9rem;
    color: var(--text-light);
}

.package-comparison_wed_price .label-recommended_wed_price {
    display: inline-block;
    margin-top: .5rem;
    padding: .25rem .5rem;
    background: var(--secondary-color);
    color: var(--white);
    font-size: .75rem;
    border-radius: 2px;
}

/* AOS custom smoothness (optional) */
[data-aos] {
    will-change: transform, opacity;
}

.sticky-navbar_wed_price {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0a1f44;
    color: #fff;
    z-index: 10000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0;
    transition: box-shadow 0.2s;
}

.sticky-navbar_wed_price .navbar-content_wed_price {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0 30px;
    height: 58px;
}

.sticky-navbar_wed_price a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 0 12px;
    line-height: 58px;
    transition: color 0.2s;
}

.sticky-navbar_wed_price a:hover {
    color: #c8a955;
}

@media (max-width: 768px) {
    .sticky-navbar_wed_price .navbar-content_wed_price {
        gap: 10px;
        padding: 0 10px;
        font-size: 0.98rem;
    }
    .sticky-navbar_wed_price a {
        padding: 0 6px;
        font-size: 0.98rem;
    }
}

.sticky-pricing-bar_wed_price {
    position: sticky;
    top: 58px; /* ให้แถบนี้อยู่ใต้ navbar sticky ถ้ามี */
    z-index: 999;
    background: #fff;
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 18px 0 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 0 0 20px 20px;
}

.sticky-pricing-bar_wed_price .package-card_wed_price {
    min-width: 180px;
    max-width: 220px;
    flex: 1 1 0;
    margin: 0;
    box-shadow: none;
    border: 1.5px solid var(--border-color);
    transition: box-shadow 0.2s, border 0.2s;
}

.sticky-pricing-bar_wed_price .package-card_wed_price.premium_wed_price {
    border: 2px solid var(--secondary-color);
    background: var(--secondary-light);
}

.sticky-pricing-bar_wed_price .package-header_wed_price {
    padding: 18px 10px 10px 10px;
}

.sticky-pricing-bar_wed_price .price_wed_price {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.sticky-pricing-bar_wed_price .description_wed_price {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sticky-pricing-bar_wed_price .popular-tag_wed_price {
    top: -10px;
    font-size: 0.85rem;
    padding: 5px 14px;
}

@media (max-width: 1024px) {
    .sticky-pricing-bar_wed_price {
        gap: 10px;
        padding: 10px 0 6px 0;
    }
    .sticky-pricing-bar_wed_price .package-card_wed_price {
        min-width: 140px;
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .sticky-pricing-bar_wed_price {
        flex-wrap: nowrap;
        overflow-x: auto;
        border-radius: 0 0 12px 12px;
        padding: 6px 0 4px 0;
    }
    .sticky-pricing-bar_wed_price .package-card_wed_price {
        min-width: 120px;
        max-width: 150px;
        font-size: 0.92rem;
    }
    .sticky-pricing-bar_wed_price .package-header_wed_price {
        padding: 10px 4px 6px 4px;
    }
}

.sticky-pricing-row_wed_price {
    position: sticky;
    top: 85px; /* ถ้ามี navbar sticky ให้แถวนี้อยู่ใต้ navbar */
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-radius: 0 0 20px 20px;
    transition: box-shadow 0.2s;
    margin-top: 20px;
}

.sticky-pricing-row_wed_price th {
    background: #fff;
}

.sticky-pricing-row_wed_price .feature-col_wed_price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    letter-spacing: 0.05em;
    vertical-align: middle;
    background: #fff;
}

@media (max-width: 1024px) {
    .sticky-pricing-row_wed_price {
        top: 0;
        border-radius: 0 0 12px 12px;
    }
}

.section-header_wed_price strong,
.feature-group_wed_price h4 strong {
    font-size: 1.25em;
    font-weight: 800;
    color: #dc2626;
    display: block;
}

/* เพิ่มส่วน responsive สำหรับมือถือ */
@media (max-width: 480px) {
    .header-content_wed_price {
        padding: 25px 15px;
    }
    
    header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .subtitle_wed_price {
        font-size: 1rem;
    }
    
    .package-card_wed_price {
        border-radius: var(--border-radius-sm);
    }
    
    .package-header_wed_price h3 {
        font-size: 1.5rem;
    }
    
    .price_wed_price {
        font-size: 2.2rem;
    }
    
    .description_wed_price {
        font-size: 0.95rem;
    }
    
    .feature-group_wed_price h4 {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .feature-item_wed_price {
        font-size: 0.9rem;
    }
    
    .contact-section_wed_price h2 {
        font-size: 1.8rem;
    }
    
    .contact-subtitle_wed_price {
        font-size: 1rem;
    }
    
    .contact-btn_wed_price {
        min-width: auto;
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .note-highlight_wed_price {
        font-size: 1rem;
    }
}

/* เพิ่มส่วน responsive สำหรับหน้าจอขนาดเล็กมาก (เช่น iPhone 5/SE) */
@media (max-width: 320px) {
    header h1 {
        font-size: 1.6rem;
    }
    
    .package-header_wed_price h3 {
        font-size: 1.3rem;
    }
    
    .price_wed_price {
        font-size: 1.8rem;
    }
    
    .show-features_wed_price {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .contact-section_wed_price h2 {
        font-size: 1.5rem;
    }
}

/* เพิ่ม animation สำหรับการแสดงผลบนมือถือ */
.package-features_wed_price {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    overflow: hidden;
}

/* ปรับปรุงการแสดงผลบนแท็บเล็ตขนาดเล็ก */
@media (max-width: 600px) and (min-width: 481px) {
    header h1 {
        font-size: 2rem;
    }
    
    .package-header_wed_price h3 {
        font-size: 1.6rem;
    }
    
    .price_wed_price {
        font-size: 2.4rem;
    }
}

/* ปรับปรุงการแสดงผลบนมือถือแนวนอน */
@media (max-height: 480px) and (orientation: landscape) {
    .header-content_wed_price {
        padding: 20px;
    }
    
    header h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .subtitle_wed_price {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .package-card_wed_price {
        margin-bottom: 15px;
    }
}