/* ===================================
   ARTIKEL INDEX PAGE (artikel/index.php)
   =================================== */
.articles-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.articles-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.articles-intro p {
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 25px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,168,204,0.15);
}

.article-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.article-meta .category {
    background: #00A8CC;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
}

.article-meta .date {
    color: #7A7A7A;
    padding: 4px 0;
}

.article-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content h2 a {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h2 a:hover {
    color: #00A8CC;
}

.article-content > p {
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.read-more {
    color: #00A8CC;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: #4CAF50;
}

.article-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===================================
   SERTIFIKASI PAGE (sertifikasi.php)
   =================================== */
.certification-section {
    padding: 60px 0;
    background: white;
}

.cert-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.cert-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.cert-intro p {
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.8;
}

.main-certifications {
    max-width: 1100px;
    margin: 0 auto;
}

.cert-card-large {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cert-badge-large {
    flex-shrink: 0;
}

.cert-badge-large img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}

.cert-details h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-number {
    font-size: 1.2rem;
    color: #00A8CC;
    margin-bottom: 10px;
}

.cert-note {
    font-size: 0.9rem;
    color: #E65100;
    font-style: italic;
    margin-bottom: 25px;
}

.cert-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #00A8CC;
    margin-top: 25px;
    margin-bottom: 12px;
}

.cert-details p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 15px;
}

.cert-details ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.cert-details ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #4A4A4A;
    line-height: 1.6;
}

.cert-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.quality-steps,
.safety-grid,
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.quality-step,
.safety-card,
.channel-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.quality-step:hover,
.safety-card:hover,
.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,168,204,0.15);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.quality-step h4,
.safety-card h4,
.channel-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-official {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
}

/* Section Title */
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 30px;
}

/* Test Results Section */
.test-results {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.test-results > p {
    text-align: center;
    color: #4A4A4A;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.test-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.test-table thead {
    background: linear-gradient(135deg, #00A8CC 0%, #4CAF50 100%);
    color: white;
}

.test-table thead th {
    padding: 18px 15px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.test-table tbody tr {
    border-bottom: 1px solid #E9ECEF;
    transition: background-color 0.3s ease;
}

.test-table tbody tr:hover {
    background: #F8F9FA;
}

.test-table tbody tr:nth-child(even) {
    background: #FAFAFA;
}

.test-table tbody tr:nth-child(even):hover {
    background: #F0F0F0;
}

.test-table td {
    padding: 16px 15px;
    color: #4A4A4A;
}

.test-table td:first-child {
    font-weight: 600;
    color: #1A1A1A;
}

.test-table td.pass {
    color: #4CAF50;
    font-weight: 700;
}

.table-note {
    font-size: 0.9rem;
    color: #7A7A7A;
    margin: 5px 0;
    text-align: center;
}

.table-note:first-of-type {
    margin-top: 20px;
}

/* Authenticity Check Section */
.authenticity-check {
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 20px;
}

.auth-steps h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #00A8CC;
    margin-bottom: 20px;
}

.auth-steps ol {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
}

.auth-steps ol li {
    padding: 12px 0;
    color: #4A4A4A;
    line-height: 1.7;
}

.auth-steps ol li strong {
    color: #1A1A1A;
}

/* Official Channels Section */
.official-channels {
    max-width: 1100px;
    margin: 60px auto;
}

.official-channels > p {
    text-align: center;
    color: #4A4A4A;
    font-size: 1.05rem;
    margin-bottom: 40px;
}

/* Commitment Section */
.commitment {
    max-width: 1100px;
    margin: 60px auto;
}

.commitment-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #00A8CC;
}

.commitment-box p {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.commitment-box ul {
    list-style: none;
    padding: 0;
}

.commitment-box ul li {
    padding: 10px 0;
    color: #2E7D32;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* CTA Section for sertifikasi */
.certification-section .cta-section {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #00A8CC 0%, #4CAF50 100%);
    border-radius: 20px;
    color: white;
}

.certification-section .cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.certification-section .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.certification-section .cta-section .btn {
    margin: 0 10px;
}

/* ===================================
   KONTAK PAGE (kontak.php)
   =================================== */
.contact-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,168,204,0.15);
}

.contact-card.highlight {
    border: 3px solid #00A8CC;
    background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.contact-card p {
    color: #4A4A4A;
    line-height: 1.7;
    margin-bottom: 8px;
}

.contact-card a {
    color: #00A8CC;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.response-time {
    font-size: 0.9rem !important;
    color: #7A7A7A !important;
    font-weight: 600;
}

.description {
    font-size: 0.95rem;
    margin-bottom: 15px !important;
}

.note {
    font-size: 0.85rem !important;
    color: #E65100 !important;
    font-style: italic;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00A8CC;
    box-shadow: 0 0 0 3px rgba(0,168,204,0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.form-note {
    font-size: 0.9rem;
    color: #7A7A7A;
    margin-top: 15px;
}

/* Department Contacts */
.department-contacts {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.department-contacts h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

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

.dept-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.dept-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.dept-card p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 8px;
}

.dept-card a {
    color: #00A8CC;
    text-decoration: none;
    font-weight: 600;
}

/* Social Media Section */
.social-media-section {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.social-media-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.social-media-section > p {
    color: #4A4A4A;
    margin-bottom: 30px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.youtube {
    background: #FF0000;
}

.social-btn.tiktok {
    background: #000000;
}

/* FAQ Reference */
.faq-reference {
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Business Hours */
.business-hours {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.business-hours h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 30px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.hours-table tr {
    border-bottom: 1px solid #E0E0E0;
}

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

.hours-table td {
    padding: 15px 20px;
    color: #4A4A4A;
}

.hours-table td:first-child {
    font-weight: 600;
    color: #1A1A1A;
}

.hours-table td:last-child {
    text-align: right;
    color: #00A8CC;
    font-weight: 600;
}

/* ===================================
   LEGAL PAGES (penafian-medis, kebijakan-privasi, syarat-ketentuan)
   =================================== */
.legal-header {
    background: #FFF3E0;
}

.last-updated {
    font-size: 0.9rem;
    color: #7A7A7A;
    margin-top: 10px;
}

.legal-content {
    padding: 60px 0;
    background: white;
}

.legal-content .container {
    max-width: 900px;
}

.legal-box {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid #00A8CC;
}

.legal-box.important {
    background: #FFF3E0;
    border-left-color: #FF9800;
}

.legal-box.conclusion {
    background: #E8F5E9;
    border-left-color: #4CAF50;
}

.legal-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 15px;
}

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

.legal-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #00A8CC;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E0E0E0;
}

.legal-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-section ul,
.legal-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li,
.legal-section ol li {
    color: #4A4A4A;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section ul.danger-list li {
    color: #D32F2F;
    font-weight: 600;
}

.emphasis {
    font-weight: 600;
    color: #1A1A1A;
    font-size: 1.05rem;
}

.emphasis-box {
    background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #00A8CC;
    margin: 25px 0;
}

.emphasis-box p {
    margin-bottom: 15px;
}

.emphasis-box ul {
    list-style: none;
    padding: 0;
}

.emphasis-box ul li {
    padding: 8px 0;
    color: #2E7D32;
}

.contact-box {
    background: #E3F2FD;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.contact-box h3 {
    font-family: 'Poppins', sans-serif;
    color: #00A8CC;
    margin-bottom: 15px;
}

.contact-box p {
    margin: 8px 0;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #E0E0E0;
    text-align: center;
    color: #7A7A7A;
}

.back-link {
    margin-top: 40px;
    text-align: center;
}

.back-link .btn {
    margin: 0 10px;
}

/* ===================================
   ORDER PAGE (pesan.php)
   =================================== */
.order-section {
    padding: 60px 0;
    background: #F8F9FA;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto 50px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #1A1A1A;
}

.trust-icon {
    color: #4CAF50;
    font-size: 1.3rem;
}

.order-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.products-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

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

.package-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,168,204,0.2);
}

.package-card.popular {
    border: 3px solid #00A8CC;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-card.best-value {
    border: 3px solid #4CAF50;
}

.badge-popular,
.badge-value {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #00A8CC;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-value {
    background: #4CAF50;
}

.package-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #1A1A1A;
    margin-bottom: 5px;
}

.package-duration {
    color: #7A7A7A;
    font-size: 0.95rem;
}

.package-image {
    margin: 20px 0;
    text-align: center;
}

.package-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.package-price {
    text-align: center;
    margin: 25px 0;
}

.price-original {
    color: #9E9E9E;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.price-now {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #00A8CC;
    font-weight: 700;
    margin: 8px 0;
}

.price-save {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.95rem;
}

.package-contents {
    margin: 25px 0;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 8px;
}

.package-contents p {
    font-weight: 600;
    margin-bottom: 12px;
}

.package-contents ul {
    list-style: none;
    padding: 0;
}

.package-contents ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4A4A4A;
}

.package-contents ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.btn-select-package {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.recommended {
    text-align: center;
    margin-top: 15px;
    color: #FF9800;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.package-note {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #FFF3E0;
    border-radius: 12px;
    text-align: center;
}

.package-note p {
    color: #E65100;
    font-size: 0.95rem;
    margin: 0;
}

/* Order Summary Sidebar */
.order-summary-sticky {
    position: sticky;
    top: 100px;
    max-width: 450px;
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.order-summary h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #E0E0E0;
}

.no-selection {
    text-align: center;
    color: #9E9E9E;
    padding: 30px 0;
    font-style: italic;
}

#summary-content p {
    margin: 12px 0;
    color: #4A4A4A;
}

#summary-content p strong {
    color: #1A1A1A;
}

/* Order Form */
#order-form .form-group {
    margin-bottom: 20px;
}

#order-form label {
    display: block;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

#order-form input,
#order-form select,
#order-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

#order-form input:focus,
#order-form select:focus,
#order-form textarea:focus {
    outline: none;
    border-color: #00A8CC;
    box-shadow: 0 0 0 3px rgba(0,168,204,0.1);
}

#order-form textarea {
    resize: vertical;
    min-height: 80px;
}

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

.shipping-cost {
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.shipping-cost p {
    margin: 0;
    color: #4A4A4A;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#shipping-cost {
    font-weight: 700;
    color: #00A8CC;
}

.total-payment {
    background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid #00A8CC;
}

.total-payment p {
    margin: 5px 0;
    font-size: 1.05rem;
}

.total-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem !important;
    color: #00A8CC;
    font-weight: 700;
}

.btn-block {
    width: 100%;
    margin-top: 25px;
}

/* Payment Methods */
.payment-methods-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #E0E0E0;
}

.payment-methods-info > p {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1A1A1A;
}

.payment-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.payment-logos img {
    height: 30px;
    width: auto;
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.payment-logos img:hover {
    filter: grayscale(0%);
}

.payment-note {
    font-size: 0.9rem !important;
    color: #7A7A7A !important;
    text-align: center;
}

/* Guarantee Box */
.guarantee-box {
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid #4CAF50;
}

.guarantee-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guarantee-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guarantee-box ul li {
    padding: 10px 0;
    color: #2E7D32;
    font-weight: 600;
    line-height: 1.6;
}

/* Why Order Now Section */
.why-order-now {
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.why-order-now h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,168,204,0.15);
}

.benefit-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.benefit-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #4A4A4A;
    line-height: 1.7;
}

/* FAQ Order Section */
.faq-order {
    max-width: 900px;
    margin: 60px auto;
}

.faq-order h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #00A8CC;
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #00A8CC;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4A4A4A;
    line-height: 1.7;
    margin: 0;
}

/* Security Badges */
.security-badges {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 20px;
}

.security-badges h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 30px;
}

.security-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.security-item img {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.security-item p {
    font-size: 0.9rem;
    color: #4A4A4A;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-card-large {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .dept-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-cards {
        grid-template-columns: 1fr;
    }
    
    .package-card.popular {
        transform: scale(1);
    }
    
    .test-table {
        font-size: 0.85rem;
    }
    
    .test-table thead th,
    .test-table td {
        padding: 10px 8px;
    }
    
    /* Order page mobile */
    .order-summary-sticky {
        position: static;
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-icons {
        gap: 25px;
    }
}
