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

 :root {
     --color-primary-dark: #041A2F;
     --color-primary-mid: #072B46;
     --color-teal-deep: #0A5065;
     --color-teal-bright: #0C7B84;
     --color-accent: #15989C;
     --color-accent-hover: #0f7f83;
     --color-white: #ffffff;
     --color-card-border: #D5E1E2;
     --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
     --shadow-card: 3px 5px 32px -5px rgba(25, 128, 133, 0.12);
     --radius-card: 0.75rem;
     --radius-btn: 0.5rem;
     --transition-default: all 0.25s ease;
 }

 body {
     font-family: 'Satoshi', sans-serif;
     background: #ffffff;
     line-height: 1.5;
     -webkit-font-smoothing: antialiased;
     overflow-x: hidden;
 }

 /* ---------- HERO SECTION (professional prefix) ---------- */
 .Course-page-section-hero {
     position: relative;
     background: linear-gradient(115deg,
             #041A2F 0%,
             #072B46 32%,
             #0A5065 68%,
             #0C7B84 100%);
     padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 5rem) clamp(5rem, 10vw, 7.5rem);
 }

 .Course-page-section-hero-container {
     max-width: 80rem;
     /* 1280px */
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: clamp(1.5rem, 3vw, 3rem);
 }

 /* left column */
 .Course-page-section-left {
     flex: 1 1 48%;
     min-width: 260px;
 }

 .Course-page-section-title {
     font-size: clamp(1.5rem, 2.2vw, 2.5rem);
     font-weight: 700;
     line-height: 1.25;
     letter-spacing: -0.01em;
     color: var(--color-white);
     margin-bottom: 1.25rem;
 }

 .Course-page-section-description {
     font-size: 0.9375rem;
     line-height: 1.5;
     color: rgba(255, 255, 255, 0.92);
     margin-bottom: 1.75rem;
     text-align: justify;
     max-width: 95%;
     /* See More Effect */
     position: relative;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }


 /* button group */
 .Course-page-section-buttons {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 1rem;
     margin-bottom: 2rem;
 }

 .btn-primary-course {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.75rem 1.75rem;
     border: none;
     border-radius: var(--radius-btn);
     background: var(--color-accent);
     color: var(--color-white);
     font-size: 0.9375rem;
     font-weight: 550;
     letter-spacing: 0.3px;
     cursor: pointer;
     transition: var(--transition-default);
     line-height: 1.2;
 }

 .btn-primary-course:hover {
     background: var(--color-accent-hover);
     transform: translateY(-1px);
 }

 .btn-outline-course {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0.75rem 1.75rem;
     border-radius: var(--radius-btn);
     border: 1px solid var(--color-accent);
     background: rgba(255, 255, 255, 0.08);
     color: var(--color-white);
     font-size: 0.9375rem;
     font-weight: 450;
     cursor: pointer;
     transition: var(--transition-default);
     backdrop-filter: blur(2px);
 }

 .btn-outline-course:hover {
     background: rgba(255, 255, 255, 0.18);
     border-color: #3ccfd3;
 }

 /* stats box — no fixed width/height, fully fluid */
 .Course-page-section-stats {
     display: inline-flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 1rem;
     background: rgba(0, 242, 255, 0.1);
     border-radius: 0.75rem;
     padding: 0.75rem 1.25rem;
     backdrop-filter: blur(2px);
     width: auto;
 }

 .Course-page-section-stat-item {
     display: flex;
     flex-direction: column;
     gap: 0.25rem;
 }

 .stat-top-row {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .stat-icon-svg {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 1.75rem;
     height: 1.75rem;
 }

 .stat-icon-svg svg {
     width: 100%;
     height: auto;
 }

 .stat-number {
     font-size: 1.25rem;
     font-weight: 800;
     color: var(--color-white);
     line-height: 1;
 }

 .stat-label {
     font-size: 0.7rem;
     text-transform: uppercase;
     font-weight: 700;
     letter-spacing: 0.03em;
     color: rgba(255, 255, 255, 0.85);
 }

 .stat-divider {
     width: 1px;
     height: 2.2rem;
     background: rgba(170, 211, 249, 0.3);
 }

 /* right image (no fixed dimensions) */
 .Course-page-section-right {
     flex: 1 1 35%;
     min-width: 240px;
 }

 .Course-page-section-banner {
     width: 100%;
     border-radius: 1rem;
     overflow: hidden;
     box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
     transition: transform 0.2s ease;
 }

 .Course-page-section-banner img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: cover;
 }

 /* ---------- FEATURE CARDS GRID (MNC premium style) ---------- */
 .Course-page-section-cards-grid {
     max-width: 80rem;
     margin: -3rem auto 1rem auto;
     position: relative;
     z-index: 12;
     padding: 0 1.5rem;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 1.75rem;
 }

 .Course-page-section-card {
     background: #ffffff;
     border: 0.5px solid var(--color-card-border);
     border-radius: var(--radius-card);
     padding: 1.25rem;
     display: flex;
     align-items: flex-start;
     gap: 1rem;
     transition: var(--transition-default);
     box-shadow: var(--shadow-card);
 }

 .Course-page-section-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 18px 30px -12px rgba(21, 152, 156, 0.2);
 }

 .Course-page-section-card-icon {
     flex-shrink: 0;
     width: 3.5rem;
     height: 3.5rem;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(1, 73, 128, 0.1), rgba(54, 188, 186, 0.1));
 }

 .Course-page-section-card-icon svg {
     width: 2.2rem;
     height: 2.2rem;
     display: block;
 }

 .Course-page-section-card-content h3 {
     font-size: 1.125rem;
     font-weight: 700;
     color: #010E17;
     margin-bottom: 0.5rem;
     line-height: 1.3;
 }

 .Course-page-section-card-content p {
     font-size: 0.8125rem;
     line-height: 1.45;
     color: #1f3b4a;
 }

 /* ---------- FULLY RESPONSIVE (no fixed px heights/widths) ---------- */
 @media (max-width: 1024px) {
     .Course-page-section-hero-container {
         flex-direction: column;
         text-align: center;
     }

     .Course-page-section-left {
         text-align: left;
         max-width: 100%;
     }

     .Course-page-section-description {
         max-width: 100%;
         text-align: left;
     }

     .Course-page-section-buttons {
         justify-content: flex-start;
     }

     .Course-page-section-stats {
         justify-content: center;
         width: auto;
     }

     .Course-page-section-right {
         max-width: 550px;
         margin: 0 auto;
     }
 }

 @media (max-width: 768px) {
     .Course-page-section-hero {
         padding: 2rem 1.25rem 4rem 1.25rem;
     }

     .Course-page-section-title {
         font-size: clamp(1.7rem, 6vw, 2.2rem);
     }

     .Course-page-section-description {
         font-size: 0.875rem;
     }

     .Course-page-section-buttons {
         flex-direction: column;
         align-items: stretch;
     }

     .btn-primary-course,
     .btn-outline-course {
         width: 100%;
         text-align: center;
     }

     .Course-page-section-stats {
         width: 100%;
         justify-content: space-between;
         gap: 0.8rem;
     }

     .stat-divider {
         height: 2rem;
     }

     .Course-page-section-cards-grid {
         gap: 1.25rem;
         margin-top: -2.5rem;
         padding: 0 1rem;
     }

     .Course-page-section-card {
         padding: 1rem;
     }
 }

 @media (max-width: 480px) {
     .Course-page-section-stats {
         flex-wrap: wrap;
         justify-content: center;
         gap: 0.5rem;
     }

     .stat-divider {
         display: none;
     }

     .Course-page-section-stat-item {
         flex: 1 0 auto;
         align-items: center;
         text-align: center;
     }

     .stat-top-row {
         justify-content: center;
     }

     .Course-page-section-card-icon {
         width: 2.8rem;
         height: 2.8rem;
     }

     .Course-page-section-card-icon svg {
         width: 1.8rem;
         height: 1.8rem;
     }
 }

 /* small polish for accessibility & hover effects */
 button {
     background: none;
     border: none;
     font-family: inherit;
 }

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

 /* consistent focus ring */
 .btn-primary-course:focus-visible,
 .btn-outline-course:focus-visible {
     outline: 2px solid #b9f6f0;
     outline-offset: 2px;
 }

 /* course overview section  */

 .course-overview-section-wrapper {
     max-width: 1280px;
     margin: 0 auto;
     display: flex;
     gap: 70px;
     /* CHANGED: Stretch ensures left side grows to match right side height */
     align-items: stretch;
     flex-wrap: wrap;
     position: relative;
     margin-top: 55px;
     padding: 2rem 1.5rem;
 }

 /* ========= LEFT SIDE (TABS CONTAINER) ========= */
 .course-overview-section-tabsContainer {
     flex: 1;
     min-width: 280px;
     width: 100%;
     max-width: 780px;
     /* CHANGED: Flex layout allows the inner panel to expand */
     display: flex;
     flex-direction: column;

 }

 /* TAB HEADERS: FULL WIDTH & EQUAL SPLIT */
 .course-overview-section-tabHeaders {
     display: flex;
     width: 100%;
     gap: 0;
     background: transparent;
 }

 .course-overview-section-tabBtn {
     flex: 1;
     width: auto;
     min-width: 0;
     height: 56px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #F0F9FC;
     border: 1px solid #D0E5EA;
     border-radius: 14px 14px 0 0;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: 0.3px;
     color: #1C7C80;
     cursor: pointer;
     transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
     font-family: 'Inter', 'Source Sans 3', sans-serif;
     text-align: center;
     white-space: nowrap;
     padding: 0 12px;
 }

 @media (max-width: 640px) {
     .course-overview-section-tabBtn {
         white-space: normal;
         font-size: 14px;
         padding: 0 8px;
         height: 52px;
     }
 }

 .course-overview-section-tabBtn.active {
     background: #FFFFFF;
     border-color: #137C7F;
     border-bottom: none;
     font-weight: 700;
     color: #0C2F4A;
     position: relative;
     z-index: 2;
     border-top: 4px solid #137C7F;
     box-shadow: 0 -2px 6px rgba(19, 124, 127, 0.05);
 }

 .course-overview-section-tabBtn.active::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -2px;
     width: 100%;
     height: 3px;
     background: white;
 }

 .course-overview-section-contentPanel {
     /* CHANGED: Flex-grow makes this panel fill the remaining height */
     flex-grow: 1;
     background: #FFFFFF;
     border: 1px solid #137C7F;
     border-top: none;
     border-radius: 0 0 20px 20px;
     padding: 32px 32px 40px;
     box-shadow: 0 12px 30px rgba(19, 124, 127, 0.08);
     transition: all 0.2s;
 }

 .course-overview-section-tabPane {
     display: none;
     animation: courseFadeIn 0.3s ease;
 }

 .course-overview-section-tabPane.active {
     display: block;
 }

 @keyframes courseFadeIn {
     0% {
         opacity: 0;
         transform: translateY(6px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .course-overview-section-description {
     font-size: 15px;
     line-height: 1.5;
     letter-spacing: 0.2px;
     color: #4A5A6E;
     margin-bottom: 42px;
     max-width: 94%;
 }

 .course-overview-section-sectionBlock {
     margin-bottom: 42px;
 }

 .course-overview-section-sectionTitle {
     font-size: 18px;
     font-weight: 700;
     letter-spacing: -0.2px;
     margin-bottom: 20px;
     color: #0E2A38;
     border-left: 4px solid #137C7F;
     padding-left: 14px;
 }

 .course-overview-section-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 18px 40px;
 }

 .course-overview-section-point {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     font-size: 15px;
     line-height: 1.45;
     color: #2C3E50;
 }

 .course-overview-section-checkMark {
     color: #137C7F;
     font-size: 20px;
     font-weight: 700;
     line-height: 1;
     margin-top: 2px;
     min-width: 20px;
 }

 .course-overview-section-verticalList {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 /* ========= RIGHT CARD – STICKY ========= */
 .course-overview-section-paymentCard {
     width: 400px;
     max-width: 100%;
     flex-shrink: 0;
     background: #FFFFFF;
     border: 1px solid #DFECEF;
     border-radius: 24px;
     box-shadow: 0 18px 36px -12px rgba(0, 32, 64, 0.12);
     padding: 32px 28px;
     transition: transform 0.2s;
     position: sticky;
     top: 32px;
     align-self: flex-start;
     /* Keeps the card from stretching vertically */
 }

 .course-overview-section-paymentCard::-webkit-scrollbar {
     width: 4px;
 }

 .course-overview-section-paymentCard::-webkit-scrollbar-track {
     background: #EFF2F5;
     border-radius: 10px;
 }

 .course-overview-section-paymentCard::-webkit-scrollbar-thumb {
     background: #B9D3DC;
     border-radius: 10px;
 }

 .course-overview-section-courseTitle {
     font-size: 24px;
     font-weight: 800;
     line-height: 1.3;
     letter-spacing: -0.3px;
     color: #124263;
     margin-bottom: 8px;
 }

 .course-overview-section-meta {
     font-size: 14px;
     font-weight: 500;
     color: #4F6F8F;
     margin-bottom: 16px;
     letter-spacing: 0.2px;
 }

 .course-overview-section-pricingWrapper {
     display: flex;
     align-items: baseline;
     flex-wrap: wrap;
     gap: 12px 16px;
     margin-bottom: 18px;
 }

 .course-overview-section-discountBadge {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: #E9F6F0;
     padding: 4px 10px 4px 12px;
     border-radius: 40px;
     font-size: 14px;
     font-weight: 700;
     color: #1C7C42;
     letter-spacing: 0.2px;
 }

 .course-overview-section-downArrow {
     font-size: 14px;
     font-weight: 800;
     display: inline-block;
     transform: translateY(0px);
 }

 .course-overview-section-strikedPrice {
     font-size: 18px;
     font-weight: 500;
     color: #8E9EAD;
     text-decoration: line-through;
     letter-spacing: 0.2px;
 }

 .course-overview-section-finalPrice {
     font-size: 34px;
     font-weight: 800;
     color: #137C7F;
     letter-spacing: -0.5px;
     line-height: 1.2;
 }

 .course-overview-section-priceHint {
     font-size: 13px;
     color: #6A7F96;
     margin-top: 4px;
     width: 100%;
 }

 .course-overview-section-divider {
     border: none;
     border-top: 1px solid #E7EDF2;
     margin: 16px 0 22px;
 }

 .course-overview-section-offersHeader {
     display: flex;
     justify-content: space-between;
     align-items: baseline;
     margin-bottom: 14px;
 }

 .course-overview-section-offersHeader h4 {
     font-size: 16px;
     font-weight: 700;
     color: #1E2F3E;
 }

 .course-overview-section-couponLink {
     font-size: 13px;
     font-weight: 600;
     color: #137C7F;
     text-decoration: none;
     letter-spacing: 0.2px;
     transition: opacity 0.2s;
     cursor: pointer;
 }

 .course-overview-section-couponLink:hover {
     opacity: 0.8;
     text-decoration: underline;
 }

 .course-overview-section-couponBox {
     border: 1px solid #CBE5E8;
     border-radius: 12px;
     padding: 12px 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #FEFEFB;
     margin-bottom: 28px;
     flex-wrap: wrap;
     gap: 10px;
 }

 .course-overview-section-couponLeft {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
 }

 .course-overview-section-couponCode {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 13px;
     font-weight: 700;
     color: #0E6F9E;
     background: #EFF7FA;
     padding: 5px 12px;
     border-radius: 40px;
     letter-spacing: 0.3px;
 }

 .course-overview-section-couponSave {
     font-size: 13px;
     font-weight: 700;
     color: #137C7F;
 }

 .course-overview-section-removeCoupon {
     color: #D14545;
     font-size: 13px;
     font-weight: 600;
     cursor: pointer;
     background: none;
     border: none;
     font-family: inherit;
 }

 .course-overview-section-summaryTitle {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 16px;
     color: #1A2F3F;
 }

 .course-overview-section-summaryRow {
     display: flex;
     justify-content: space-between;
     margin-bottom: 12px;
     font-size: 14px;
     color: #4F6579;
     letter-spacing: 0.2px;
 }

 .course-overview-section-totalBlock {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 24px 0 28px;
 }

 .course-overview-section-totalLabel {
     font-size: 18px;
     font-weight: 700;
     color: #0F2F40;
 }

 .course-overview-section-totalAmount {
     font-size: 24px;
     font-weight: 800;
     color: #137C7F;
     letter-spacing: -0.2px;
 }

 .course-overview-section-paymentBtn {
     width: 100%;
     height: 50px;
     background: #124263;
     border: none;
     border-radius: 40px;
     font-size: 15px;
     font-weight: 700;
     color: white;
     cursor: pointer;
     transition: all 0.2s;
     font-family: 'Inter', sans-serif;
     letter-spacing: 0.5px;
     box-shadow: 0 2px 8px rgba(18, 66, 99, 0.2);
 }

 .course-overview-section-paymentBtn:hover {
     background: #0C3453;
     transform: translateY(-1px);
 }

 /* ========= COUPON MODAL CSS ========= */
 .coupon-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(14, 30, 44, 0.5);
     backdrop-filter: blur(2px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 0;
     transition: opacity 0.3s ease;
     padding: 20px;
     box-sizing: border-box;
 }

 .coupon-modal-overlay.active {
     display: flex;
     opacity: 1;
 }

 .coupon-modal-content {
     background: #FFFFFF;
     width: 100%;
     max-width: 450px;
     border-radius: 24px;
     padding: 32px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     transform: translateY(20px);
     transition: transform 0.3s ease;
     max-height: 90vh;
     overflow-y: auto;
     box-sizing: border-box;
 }

 .coupon-modal-overlay.active .coupon-modal-content {
     transform: translateY(0);
 }

 .coupon-modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 24px;
 }

 .coupon-modal-title {
     font-size: 20px;
     font-weight: 700;
     color: #0E2A38;
 }

 .coupon-modal-close {
     background: none;
     border: none;
     font-size: 28px;
     cursor: pointer;
     color: #6A7F96;
     line-height: 1;
 }

 .coupon-input-group {
     display: flex;
     gap: 12px;
     margin-bottom: 28px;
 }

 .coupon-input-group input {
     flex: 1;
     padding: 12px 16px;
     border: 1px solid #DFECEF;
     border-radius: 12px;
     font-family: inherit;
     font-size: 15px;
     outline: none;
 }

 .coupon-input-group input:focus {
     border-color: #137C7F;
 }

 .coupon-input-group button {
     background: #124263;
     color: white;
     border: none;
     padding: 0 24px;
     border-radius: 12px;
     font-weight: 600;
     cursor: pointer;
     font-family: inherit;
 }

 .available-coupons-title {
     font-size: 14px;
     font-weight: 700;
     color: #4F6F8F;
     text-transform: uppercase;
     margin-bottom: 16px;
     letter-spacing: 0.5px;
 }

 .available-coupon-card {
     border: 1px solid #DFECEF;
     border-radius: 16px;
     padding: 16px;
     margin-bottom: 12px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #FEFEFB;
 }

 .ac-details .ac-code {
     display: inline-block;
     background: #EFF7FA;
     color: #0E6F9E;
     padding: 4px 12px;
     border-radius: 8px;
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 6px;
 }

 .ac-details .ac-desc {
     font-size: 13px;
     color: #6A7F96;
     line-height: 1.4;
 }

 .ac-apply-btn {
     background: none;
     border: 1px solid #137C7F;
     color: #137C7F;
     padding: 8px 16px;
     border-radius: 40px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.2s;
     font-family: inherit;
 }

 .ac-apply-btn:hover {
     background: #137C7F;
     color: white;
 }

 /* ========= SKELETON LOADER CSS ========= */
 .skeleton-loading {
     animation: skeleton-pulse 1.5s ease-in-out infinite;
     background-color: #e2e8f0;
     color: transparent !important;
     border-radius: 6px;
     display: inline-block;
     min-height: 20px;
     min-width: 100px;
     user-select: none;
 }

 .skeleton-loading * {
     visibility: hidden;
 }

 @keyframes skeleton-pulse {
     0% {
         opacity: 1;
     }

     50% {
         opacity: 0.5;
     }

     100% {
         opacity: 1;
     }
 }

 /* responsive */
 @media (max-width: 1100px) {
     .course-overview-section-wrapper {
         gap: 48px;
         flex-direction: column;
         align-items: stretch;
     }

     .course-overview-section-tabsContainer {
         max-width: 100%;
         width: 100%;
     }

     .course-overview-section-paymentCard {
         width: 100%;
         max-width: 600px;
         margin: 0 auto;
         position: relative;
         top: 0;
         align-self: center;
     }

     .course-overview-section-grid {
         grid-template-columns: 1fr;
         gap: 16px;
     }
 }

 @media (max-width: 740px) {
     .course-overview-section-tabHeaders {
         flex-wrap: nowrap;
         width: 100%;
     }

     .course-overview-section-tabBtn {
         font-size: 15px;
         height: 50px;
         white-space: nowrap;
     }

     .course-overview-section-contentPanel {
         padding: 24px 20px;
     }

     .course-overview-section-paymentCard {
         padding: 26px 20px;
     }

     .course-overview-section-finalPrice {
         font-size: 28px;
     }

     .course-overview-section-strikedPrice {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     .course-overview-section-offersHeader {
         flex-direction: column;
     }

     .course-overview-section-offersHeader h4 {
         width: 100%;
         text-align: left;
         margin-bottom: 8px;
     }

     .course-overview-section-couponLink {
         width: 100%;
         text-align: right;
         display: block;
     }

     .course-overview-section-tabBtn {
         font-size: 13px;
         height: 48px;
         white-space: normal;
         line-height: 1.2;
     }

     .course-overview-section-pricingWrapper {
         flex-direction: column;
         align-items: flex-start;
         gap: 8px;
     }

     .course-overview-section-couponBox {
         flex-direction: column;
         align-items: flex-start;
     }

     .course-overview-section-removeCoupon {
         align-self: flex-end;
     }

     .coupon-modal-content {
         padding: 24px 20px;
     }

     .coupon-input-group {
         flex-direction: column;
         gap: 8px;
     }

     .coupon-input-group button {
         width: 100%;
         padding: 12px;
     }
 }

 /* ========= COUPON INPUT ERROR ========= */
 .coupon-input-error {
     font-size: 13px;
     color: #D14545;
     font-weight: 500;
     margin-top: -20px;
     margin-bottom: 16px;
     padding-left: 4px;
     min-height: 18px;
     transition: opacity 0.2s;
 }

 .coupon-input-error:empty {
     display: none;
 }

 /* ========= NOTIFICATION MODAL ========= */
 .notify-modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(10, 20, 32, 0.55);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 10000;
     opacity: 0;
     transition: opacity 0.25s ease;
 }

 .notify-modal-overlay.active {
     display: flex;
     opacity: 1;
 }

 .notify-modal-box {
     background: #fff;
     border-radius: 24px;
     padding: 40px 36px 32px;
     max-width: 400px;
     width: 90%;
     text-align: center;
     box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
     transform: scale(0.92) translateY(16px);
     transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
 }

 .notify-modal-overlay.active .notify-modal-box {
     transform: scale(1) translateY(0);
 }

 .notify-modal-icon {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     margin: 0 auto 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     font-weight: 700;
     line-height: 1;
 }

 .notify-modal-icon.success {
     background: #E6F9F0;
     color: #1C7C42;
 }

 .notify-modal-icon.error {
     background: #FDE8E8;
     color: #D14545;
 }

 .notify-modal-icon.warning {
     background: #FFF5E6;
     color: #C58100;
 }

 .notify-modal-icon.info {
     background: #E8F4FD;
     color: #137C7F;
 }

 .notify-modal-title {
     font-size: 20px;
     font-weight: 700;
     color: #0E2A38;
     margin-bottom: 10px;
     letter-spacing: -0.3px;
 }

 .notify-modal-message {
     font-size: 14px;
     line-height: 1.55;
     color: #5A6F82;
     margin-bottom: 28px;
 }

 .notify-modal-btn {
     display: inline-block;
     min-width: 140px;
     padding: 12px 32px;
     border: none;
     border-radius: 40px;
     font-size: 15px;
     font-weight: 600;
     color: #fff;
     cursor: pointer;
     transition: all 0.2s;
     font-family: 'Inter', 'Satoshi', sans-serif;
     letter-spacing: 0.3px;
 }

 .notify-modal-btn.success {
     background: #137C7F;
 }

 .notify-modal-btn.error {
     background: #D14545;
 }

 .notify-modal-btn.warning {
     background: #C58100;
 }

 .notify-modal-btn.info {
     background: #137C7F;
 }

 .notify-modal-btn:hover {
     opacity: 0.9;
     transform: translateY(-1px);
 }

 /* faq section  */
 /* FAQ Section Wrapper */
 .faq-section {
     padding: 120px 5% 40px 5%;
     background-color: #ffff;
     /* font-family: 'Satoshi', sans-serif; */
 }

 /* FAQ Container */
 .faq-section-container {
     max-width: 800px;
     margin: 0 auto;
 }

 /* FAQ Title */
 .faq-section-title {
     text-align: center;
     font-size: 42px;
     color: #013A70;
     margin-bottom: 15px;
 }

 .faq-section-description {
     justify-self: center;
     max-width: 60%;
     text-align: center;
     font-size: 16px;
     color: #013A70;
     margin-bottom: 30px;
 }

 /* Individual FAQ Item */
 .faq-section-item {
     background-color: #ffffff;
     /* border: 1px solid #e5e5e5; */
     border-radius: 8px;
     margin-bottom: 15px;
     overflow: hidden;
     box-shadow: 0 2px 8px 5px rgba(154, 185, 216, 0.032);
 }

 /* FAQ Question (Clickable Area) */
 .faq-section-question {
     padding: 10px 20px;
     font-size: 1.1rem;
     font-weight: 600;
     color: #013A70;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     user-select: none;
     transition: background-color 0.3s ease;
 }

 .faq-section-question:hover {
     background-color: #fdfdfd;
 }

 /* FAQ Icons Container & SVG setup */
 .faq-section-icon {
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .faq-section-icon svg {
     transition: opacity 0.2s ease;
 }

 /* Hide minus icon by default */
 .faq-section-icon-minus {
     display: none;
 }

 /* When active, hide plus and show minus */
 .faq-section-active .faq-section-icon-plus {
     display: none;
 }

 .faq-section-active .faq-section-icon-minus {
     display: block;
 }

 /* FAQ Answer Wrapper */
 .faq-section-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     background-color: #ffffff;
 }

 /* FAQ Answer Inner Text */
 .faq-section-answer-text {
     padding: 0 20px 20px 20px;
     color: #555;
     line-height: 1.6;
     font-size: 1rem;
 }

 @media (max-width: 768px) {
     .faq-section {
         padding: 60px 16px 40px 16px;
     }
     .faq-section-title {
         font-size: 28px;
         line-height: 1.3;
         margin-bottom: 12px;
     }
     .faq-section-description {
         max-width: 100%;
         font-size: 14px;
         margin-bottom: 24px;
     }
     .faq-section-question {
         font-size: 1rem;
         padding: 12px 16px;
     }
     .faq-section-answer-text {
         padding: 0 16px 16px 16px;
         font-size: 0.95rem;
    }
}

/* ---------- REVIEW SECTION ---------- */
.review-section {
    padding: 80px 20px;
    background: radial-gradient(circle at center top, rgba(21,152,156,0.04) 0%, #ffffff 50%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.review-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #041A2F;
    margin-bottom: 12px;
}

.review-section-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.review-carousel-container {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 4px;
    flex: 1;
    scroll-behavior: smooth;
}

.review-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(50% - 12px);
    min-width: min(320px, 100%);
    background: #ffffff;
    border: 1px solid rgba(21,152,156,0.1);
    border-radius: 8px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(21,152,156,0.06);
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-stars {
    color: #15989C;
    font-size: 18px;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 16px;
    color: #111;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}

.review-author {
    font-weight: 700;
    color: #041A2F;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-author::before {
    content: "—";
    color: #041A2F;
    font-weight: 700;
}

.review-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-nav-btn.prev-btn {
    background: #E8F4F8;
    color: #041A2F;
    border: 1px solid rgba(4, 26, 47, 0.1);
}

.review-nav-btn.prev-btn:hover {
    background: #D4EBF3;
}

.review-nav-btn.next-btn {
    background: #041A2F;
    color: #ffffff;
}

.review-nav-btn.next-btn:hover {
    background: #072B46;
}

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

.review-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(21,152,156,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #15989C;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .review-section {
        padding: 60px 16px;
    }
    .review-section-title {
        font-size: 28px;
    }
    .review-card {
        flex: 0 0 100%;
        min-width: 280px;
        padding: 24px;
    }
    .review-nav-btn {
        display: none;
    }
}