/* ==========================================
   COURSE HERO
========================================== */

.coursepage-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.55) 40%,
            rgba(0,0,0,0.20) 100%
        ),
        var(--hero-image);

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.coursepage-hero-overlay {
    position: absolute;
    inset: 0;
}

.coursepage-hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    gap: 30px;
    align-items: end;
    padding: 80px 0 0;
}

.coursepage-hero .container {
    max-width: 1500px;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.coursepage-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.coursepage-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.coursepage-breadcrumb span {
    margin: 0 8px;
}

.coursepage-hero-title {
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 700px;
}


.coursepage-hero-description {
    max-width: 700px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    text-align: justify;
}

.coursepage-hero-content {
    padding-bottom: 0px;
}

/* ==========================================
   BUTTONS
========================================== */

.coursepage-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.coursepage-btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.coursepage-btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.coursepage-btn-outline:hover {
    background: #ffffff;
    color: #0d5c3f;
}

.coursepage-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.coursepage-btn-whatsapp:hover {
    transform: translateY(-3px);
}

/* ==========================================
   RIGHT INFORMATION CARD
========================================== */

.coursepage-hero-info {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 30px 30px 30px 30px;
    padding: 0px;

    width: 100%;
    max-width: 280px;

    margin-left: auto;
    margin-bottom: 0;
    overflow: hidden;
    
    box-shadow:
    0 15px 40px rgba(0,0,0,0.12),
    0 5px 15px rgba(0,0,0,0.06);
}

.coursepage-info-header {
    background: #0d5c3f;
    color: #ffffff;
    padding: 5px 20px;
    font-size: 20px;
    font-weight: 600;
     text-align: center;
     box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}


.coursepage-info-body {
    padding: 0px 20px 0px;
}

.coursepage-info-item {
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
    
    display: flex;
    align-items: center;
    gap: 18px;

}

.coursepage-info-item:last-child {
    border-bottom: none;
}

.coursepage-info-content {
    flex: 1;
}

.coursepage-info-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}

.coursepage-info-icon {
    width: 30px;
    flex-shrink: 0;
    text-align: center;
}

.coursepage-info-icon i {
    font-size: 24px;
    color: #4d6b5d;
}

.coursepage-info-label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777777;
    margin-bottom: 5px;
}

.coursepage-info-item strong {
    display: block;
    font-size: 15px;
    color: #222222;
    font-weight: 600;
}




/* ==========================================
   COURSE STICKY NAVIGATION
========================================== */

.coursepage-nav-wrapper {
    position: sticky;
    top: 85px; /* Adjust according to header height */
    z-index: 99;
    margin-top: -0px;
    margin-bottom: 0px;
    width: 100%;
    transition: all .3s ease;

    

}


.coursepage-nav {
    display: flex;
    align-items: center;
    background: #0d5c3f;
    border-radius: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    scrollbar-width: none;
    width: 100%;
    
    
    
}

.coursepage-nav::-webkit-scrollbar {
    display: none;
}

.coursepage-nav a {
    flex: 1;
    padding: 10px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: all 0.3s ease;
}

.coursepage-nav a:last-child {
    border-right: none;
}

.coursepage-nav a:hover {
    background: rgba(255,255,255,0.08);
}

.coursepage-nav a.active {
    background: #c9982d;
    color: #ffffff;
}


.coursepage-nav .nav-link {
    scroll-snap-align: center;
}



/* ==========================================
   COURSE OVERVIEW
========================================== */

.coursepage-overview {
    padding: 20px 0;
  
}

.coursepage-section-heading {
    max-width: 1300px;
    margin: 0 auto 60px;
    text-align: center;
}


.coursepage-section-heading h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
}

.coursepage-section-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
    max-width: 1300px;
}

.coursepage-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #0d5c3f;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    border: 2px solid #0d5c3f;
    border-radius: 50px;
    margin-bottom: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

/* ==========================================
   MAIN GRID
========================================== */

.coursepage-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

/* ==========================================
   LEFT CONTENT
========================================== */

.coursepage-content-block {
    margin-bottom: 40px;
}


.coursepage-content-block h2 {
    font-size: 30px;
    color: #bfcd0a;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}



.coursepage-content-block h3 {
    font-size: 25px;
    color: #0d5c3f;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}

.coursepage-content-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 28px;
    border-radius: 20px;
    background: #d4af37;
}

.coursepage-content-block h4 {
    font-size: 20px;
    color: #0d5c3f;
    margin-bottom: 20px;
    position: relative;
    padding-left: 18px;
}

.coursepage-content-block h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 28px;
    border-radius: 20px;
    background: #d4af37;
}

.coursepage-content-block p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

/* ==========================================
   LIST
========================================== */

.coursepage-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coursepage-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.coursepage-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d5c3f;
    font-weight: 700;
}

/* LEARNING GRID  */

.coursepage-learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.coursepage-learn-grid div {
    background: #f7f9f8;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    font-weight: 500;
    color: #333;
}

/*  SIDEBAR CARD  */

.coursepage-ovrviewinfo-card {
    
    position: sticky;
    top: 120px;
    padding: 25px;
    
    background: #fff;
    border-radius: 24px;
    
    border-top: 5px solid #d4af37;
    border: 2px solid rgba(13,92,63,0.15);
    box-shadow:
        0 0 0 4px rgba(13,92,63,0.05),
        0 15px 40px rgba(0,0,0,0.08);
    
}

 
    

.coursepage-ovrviewinfo-title {
    font-size: 30px;
    font-weight: 700;
    color: #0d5c3f;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
    text-align: center;
}

.coursepage-ovrviewinfo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
    gap: 18px;
}

.coursepage-ovrviewinfo-item i {
    width: 48px;
    height: 48px;
    border: 1px solid #0d5c3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d5c3f;
    font-size: 18px;
}

.coursepage-ovrviewinfo-item div {
    flex: 1;
}


.coursepage-ovrviewinfo-item:last-child {
    border-bottom: none;
}

.coursepage-ovrviewinfo-item span {
    color: #666;
    display: block;
    font-size: 15px;
}

.coursepage-ovrviewinfo-item strong {
    color: #222;
    font-weight: 600;
    text-align: right;
    font-size: 17px;
}



.coursepage-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}


 .coursepage-whatsapp-btn {
    margin-top: 12px;
    border: 2px solid #25D366;
    color: #25D366;
}

 .coursepage-whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
}


/*  HIGHLIGHT CARDS  */

.coursepage-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
    
    
}

.coursepage-highlight-card {
    background: #fff;
    padding: 5px 15px;
    text-align: center;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.coursepage-highlight-card:hover {
    transform: translateY(-5px);
}

.coursepage-highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.coursepage-highlight-card h4 {
    font-size: 20px;
    color: #0d5c3f;
    margin-bottom: 10px;
}

.coursepage-highlight-card p {
    color: #666;
    margin: 0;
}


/*  COURSE PRICE TAG  */

.coursepage-price-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 25px 0;
    
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 15px;
    overflow: hidden;
}

.coursepage-price-box {
    text-align: center;
    padding: 20px;
}

.coursepage-price-box:first-child {
    border-right: 1px solid #ddd;
}

.coursepage-price-box span {
    display: block;
    color: #f26a21;
    font-weight: 600;
    margin-bottom: 10px;
}

.coursepage-price-box h4 {
    font-size: 40px;
    margin: 0;
    color: #111;
    
    font-weight: 700;
    line-height: 1;
}

.coursepage-price-box del {
    color: #999;
}




/* ==========================================
   COURSE BENEFITS
========================================== */

.coursepage-benefits {
    padding: 20px 0;
  
}

.coursepage-benefits-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 30px;
    align-items: center;
}

/* LEFT CONTENT */

.coursepage-benefit-item {
    margin-bottom: 45px;
}

.coursepage-benefit-item h3 {
    position: relative;
    font-size: 25px;
    color: #0d5c3f;
    margin-bottom: 30px;
    padding-left: 18px;
}

.coursepage-benefit-item h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 34px;
    border-radius: 20px;
    background: #d4af37;
}

.coursepage-benefit-item p {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.8;
    font-size: 17px;
}

.coursepage-benefit-item p::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
}

/* LIST */

.coursepage-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coursepage-benefit-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    line-height: 1.8;
    color: #444;
}

.coursepage-benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0d5c3f;
    font-weight: 700;
}

.coursepage-benefit-list strong {
    color: #111;
}

/* IMAGE */

.coursepage-benefits-image {
    position: relative;
}

.coursepage-benefits-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    object-fit: cover;
}

/* Optional decorative border */

/*

.coursepage-benefits-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #d4af37;
    border-radius: 24px;
    z-index: -1;
}
*/



/* ==========================================
   COURSE CURRICULUM
========================================== */

.coursepage-curriculum {
    padding: 20px 0;
   
}

/* ==========================================
   MODULE
========================================== */

.coursepage-module {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.coursepage-module.active {
    border: 1px solid #0d5c3f;
}

/* ==========================================
   HEADER
========================================== */

.coursepage-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.coursepage-module.active .coursepage-module-header {
    background: #0d5c3f;
    color: #fff;
}

.coursepage-module.active .coursepage-module-body {
    display: block;
}

.coursepage-module.active .coursepage-module-toggle i {
    transform: rotate(180deg);
}

.coursepage-module-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.coursepage-module-title h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.coursepage-module-number {
    width: 38px;
    height: 38px;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.coursepage-module-toggle {
    width: 38px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coursepage-module-toggle i {
    font-size: 14px;
    transition: 0.3s ease;
}

/* ==========================================
   BODY
========================================== */

.coursepage-module-body {
    display: none;
    padding: 35px;
}

/* ==========================================
   CONTENT GRID
========================================== */

.coursepage-module-content {
    display: grid;
    grid-template-columns: 1.3fr 420px;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}


.coursepage-module-topics{

    display:block;
    margin-top:35px;

}

/* ==========================================
   TEXT
========================================== */

.coursepage-module-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
    text-align: justify;
}

.coursepage-module-text strong {
    color: #111;
}

/* ==========================================
   IMAGE
========================================== */

.coursepage-module-image {
    overflow: hidden;
    border-radius: 16px;
}

.coursepage-module-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ==========================================
   TOPIC GRID
========================================== */

.coursepage-topic-grid {
    columns:3;
    column-gap:40px;

    list-style:none;
    padding:0;
    margin:30px 0 0;

}

.coursepage-topic-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coursepage-topic-grid li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 2;
    color: #444;
    break-inside:avoid;
}

.coursepage-topic-grid li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}



/* ==========================================
   HOVER
========================================== */

.coursepage-module:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}


/* ==========================================
   DAILY SCHEDULE DESKTOP
========================================== */

.coursepage-schedule-desktop {
    padding: 20px 0;
  
}

.coursepage-schedule-grid {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.coursepage-schedule-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Schedule Cards */

.coursepage-schedule-card {
    background: #fff;
    padding: 22px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-left: 4px solid #d4af37;
    transition: 0.3s ease;
}

.coursepage-schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
}

.coursepage-time {
    display: block;
    color: #0d5c3f;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.coursepage-schedule-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.coursepage-schedule-card h4 i {
    color: #0d5c3f;
    width: 22px;
    text-align: center;
    font-size: 18px;
}

/* Center Box */

.coursepage-schedule-center {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.coursepage-schedule-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.coursepage-schedule-content {
    padding: 35px;
    text-align: center;
}

.coursepage-schedule-content h3 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #222;
}

.coursepage-schedule-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px
}

.coursepage-schedule-content p:last-child {
    margin-bottom: 0;
}


/* ==========================================
   ACCOMMODATION & FACILITIES
========================================== */

.coursepage-accommodation {
    padding: 20px 0;
   
}

.coursepage-section-title {
    max-width: 850px;
    margin: 0 auto 50px;
}

.coursepage-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0d5c3f;
    margin-bottom: 20px;
    position: relative;
}

.coursepage-section-title h2::after {
    content: "";
    width: 70px;
    height: 3px;
    background: #c7a34b;
    display: block;
    margin: 18px auto 0;
}

.coursepage-section-title p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Features */

.coursepage-accommodation-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    margin-bottom: 50px;
}

.coursepage-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.coursepage-feature-item i {
    width: 50px;
    height: 50px;
    background: rgba(13, 92, 63, 0.08);
    color: #0d5c3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.coursepage-feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

.coursepage-feature-item p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

/* Gallery */

.coursepage-accommodation-gallery {
    overflow: hidden;
}

.coursepage-accommodation-gallery .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
}

.coursepage-accommodation-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: 0.4s;
}

.coursepage-accommodation-gallery img:hover {
    transform: scale(1.04);
}



/* ==========================================
   OUR LOCATION
========================================== */

.coursepage-location {
    padding: 20px 0;
   
}

.coursepage-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

/* Left Content */

.coursepage-location-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c0392b;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.coursepage-location-content h2 {
    font-size: 42px;
    line-height: 1.3;
    color: #222;
    margin-bottom: 25px;
}

.coursepage-location-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Right Side */

.coursepage-location-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 4px;
    color: #c0392b;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.coursepage-landmarks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
}

.coursepage-landmark-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid #e6e6e6;
}

.coursepage-landmark-icon {
    width: 55px;
    height: 55px;
    border: 2px solid #d62828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d62828;
    font-size: 20px;
    flex-shrink: 0;
}

.coursepage-landmark-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.coursepage-landmark-content span {
    font-size: 14px;
    color: #888;
}

.coursepage-landmark-content p {
    font-size: 14px;
    color: #888;
}

/* Highlight Box */

.coursepage-location-box {
    margin-top: 15px;
    background: #fff;
    border-left: 4px solid #0d5c3f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.coursepage-location-box h4 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
}

.coursepage-location-box p {
    margin: 0;
    color: #555;
    line-height: 1.8;
    
    
}



/* ==========================================
   COURSE DATES & RESERVATION
========================================== */

.coursepage-date,
.coursepage-room-selection,
.coursepage-availability-wrapper {
    border-right: 1px solid rgba(13,92,63,0.12);
    padding-right: 5px;
    min-height: 20px;
}

.coursepage-date label,
.coursepage-room-selection > label,
.coursepage-availability-wrapper label,
.coursepage-action label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    white-space: nowrap;
}

.coursepage-dates-table {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Availability Column */

.coursepage-availability-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    height: 100%;
    padding-top: 4px;
}

/* Booking Column */

.coursepage-action {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
    height: 100%;
    align-items: flex-start;
    padding-top: 4px;
}



.coursepage-date-row {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr 1fr 1fr;
    gap: 30px;
    align-items: start;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border: 1px solid rgba(13,92,63,0.08);
    transition: 0.3s ease;
    justify-items: stretch;
}

.coursepage-date-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.coursepage-date strong {
    font-size: 19px;
    color: #0d5c3f;
    font-weight: 500;
    line-height: 1.4;
}

.coursepage-room-selection {
    display: flex;
    flex-direction: column;
    gap: 5px;
  
}

.coursepage-room-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #333;
     font-weight: 500;
}

.coursepage-room-option input[type="radio"] {
    accent-color: #0d5c3f;
    width: 18px;
    height: 18px;
}

.coursepage-price strong {
    font-size: 30px;
    color: #c89b3c;
    font-weight: 700;
}

.coursepage-availability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    min-width: 150px;
}

.coursepage-availability.available {
    background: #e7f7ee;
    color: #0d8a4b;
}

.coursepage-availability.full {
    background: #fdecec;
    color: #d73b3b;
}

.coursepage-reserve-btn {
    background: #0d5c3f;
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    min-width: 190px;
    text-align: center;
}

.coursepage-reserve-btn:hover {
    background: #c89b3c;
    transform: translateY(-2px);
}

.coursepage-reserve-btn:disabled {
    background: #bdbdbd;
    cursor: not-allowed;
    transform: none;
}

.coursepage-dates-note {
    margin-top: 35px;
    text-align: center;
}

.coursepage-dates-note p {
    max-width: 850px;
    margin: auto;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.coursepage-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
}




/* ==========================================
   COMING SOON
========================================== */

.coursepage-coming-soon {
    max-width: 750px;
    margin: 20px auto 0;
    padding: 10px 10px;
    background: #fff;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(13,92,63,0.08);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.coursepage-coming-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    border-radius: 50%;
    background: rgba(200,155,60,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.coursepage-coming-icon i {
    font-size: 42px;
    color: #0d5c3f;
}

.coursepage-coming-soon h4 {
    font-size: 40px;
    color: #0d5c3f;
    margin-bottom: 20px;
    font-family: var(--title-font);
    font-weight: 600;
}

.coursepage-coming-soon p {
    max-width: 560px;
    margin: 0 auto 35px;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.coursepage-coming-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.coursepage-coming-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

/* Contact Button */

.coursepage-coming-btn.contact {
    background: transparent;
    color: #0d5c3f;
    border: 2px solid #0d5c3f;
}

.coursepage-coming-btn.contact:hover {
    background: #0d5c3f;
    color: #fff;
}

/* WhatsApp Button */

.coursepage-coming-btn.whatsapp {
    background: #0d5c3f;
    color: #fff;
}

.coursepage-coming-btn.whatsapp:hover {
    background: #c89b3c;
    color: #fff;
}



/* ==========================================
   COURSE NOTE
========================================== */

.coursepage-note {
    margin-top: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(13,92,63,0.10);
    background: #f8fbf8;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.coursepage-note-label {
    background: #0d5c3f;
    color: #fff;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
}

.coursepage-note-label::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 18px solid #0d5c3f;
}

.coursepage-note-label i {
    font-size: 16px;
}

.coursepage-note-content {
    flex: 1;
    padding: 16px 30px 16px 40px;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================
   Dress Code
========================================== */

.coursepage-yogadress { /* Curriculam Name ChNGe*/
    padding: 20px 0;
   
}

/* ==========================================
   MODULE
========================================== */

.coursepage-dresscode { /* Module name change */
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.3s ease;
}


/* ==========================================
   CONTENT GRID
========================================== */

.coursepage-dresscode-content {
    display: grid;
    grid-template-columns: 1.3fr 420px;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

/* ==========================================
   TEXT
========================================== */

.coursepage-dresscode-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.9;
    text-align: justify;
}

.coursepage-dresscode-text strong {
    color: #111;
}

/* ==========================================
   IMAGE
========================================== */

.coursepage-dresscode-image {
    overflow: hidden;
    border-radius: 16px;
}

.coursepage-dresscode-image img {
    /* width: 100%; */
   /*  height: 300px; */
    height: fit-content;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* ==========================================
   TOPIC GRID
========================================== */

.coursepage-dresscodetopic-grid { /* dresscode extra name added*/
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.coursepage-dresscodetopic-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coursepage-dresscodetopic-grid li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: #444;
}

.coursepage-dresscodetopic-grid li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

/* ==========================================
   HOVER
========================================== */

.coursepage-dresscode:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}




/*==================================================
ONLINE SCHEDULE V4
==================================================*/

.yk-online-schedule{
    padding:20px 0;
}

.yk-online-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.08);
    
    max-width:880px;
    margin:0 auto;
}

.yk-container-md{

    max-width:1100px;
    margin:0 auto;

}

.yk-container-lg{

    max-width:1280px;
    margin:0 auto;

}

/* HEADER */

.yk-online-header{

    background:linear-gradient(135deg,#0d5c3f,#0d5c3f);

    padding:5px;

    text-align:center;

    color:#fff;

}

.yk-online-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.yk-online-header h2{

    margin:0;

    font-size:35px;

    color:#fff;

}

.yk-online-meta{

    display:flex;

    justify-content:center;

    gap:35px;

    margin-top:20px;

    flex-wrap:wrap;

}

.yk-online-meta span{

    display:flex;

    align-items:center;

    gap:8px;

    font-weight:600;

}

/* LIST */

.yk-online-list{

    padding:50px;

}

/* ROW */

.yk-online-row{

    display:grid;

    grid-template-columns:170px 1fr;

    gap:30px;

    align-items:center;

    margin-bottom:22px;

}

.yk-online-row:last-child{

    margin-bottom:0;

}

/* TIME */

.yk-online-time{

    text-align:center;

}

.yk-online-time-badge{

    display:inline-block;

    background:#146b4d;

    color:#fff;

    padding:12px 18px;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    min-width:120px;
    margin-top:10px;

}

.yk-online-break-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#fff4dd;

    font-size:28px;

}

.yk-online-time small{

    display:block;

    margin-top:10px;

    color:#888;

    font-size:13px;

}

/* SESSION */

.yk-online-session{

    background:#fff;

    border:1px solid #ececec;

    border-left:5px solid #146b4d;

    border-radius:30px;

    padding:15px;

    transition:.35s;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.yk-online-session:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.yk-online-session h3{

    margin:0 0 10px;
    font-size:24px;
    color:#222;
    
    
     display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
   

}

.coursepage-schedule-card h3 i {
    color: #0d5c3f;
    width: 22px;
    text-align: center;
    font-size: 18px;
}



.yk-online-session p{

    margin:0;

    color:#666;

    line-height:1.8;

}

/* BREAK */

.yk-online-break .yk-online-session{

    background:#fffaf0;

    border-left-color:#c38a00;

}

.yk-online-break .yk-online-session h3{

    color:#c38a00;

}

/* FOOTER */

.yk-online-footer{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    padding:15px;

    background:#fafafa;

    border-top:1px solid #eee;

}

.yk-online-feature{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    font-weight:600;

    color:#146b4d;

}

.yk-online-feature i{

    color:#c38a00;

}


.yk-online-mobile{

    display:none;

}



/* ==========================================
   Arun
========================================== */
.about-features{
    background:#fff;
}

.feature-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:18px;
    padding:35px 30px;
    height:100%;
    transition:.3s ease;
    text-align:center;
}

.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.feature-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f3f7ef;
    color:#1d6d43;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.feature-card h4{
    font-size:24px;
    margin-bottom:15px;
    color:#163b2d;
    font-weight:600;
}

.feature-card p{
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:16px;
}



/*=========================================
Our Mission
=========================================*/

.mission-vision{
    background:#f9f8f5;
    padding:70px 0;
}

.mv-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    border:1px solid #edf1ea;
}

.mv-card:hover{
    transform:translateY(-6px);
}

.mv-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#f4f7ef;
    color:#1d6b43;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.mv-card h3{
    margin-bottom:15px;
    font-size:34px;
}

.mv-card p{
    margin:0;
    color:#666;
    line-height:1.9;
}

/* about us name yogakulam */

.name-section img{
    width:100%;
    max-height:550px;
    object-fit:cover;
    border-radius:20px;
}





/* ==========================================
   RETREAT DATE SELECT
========================================== */

.retreat-date-select {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.retreat-date-select select {
    height: 38px;
    padding: 0 10px 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background-color: #fff;
    color: #0D5C3F;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    appearance: auto;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.retreat-date-select select:hover {
    border-color: #0D5C3F;
}

.retreat-date-select select:focus {
    border-color: #0D5C3F;
    box-shadow: 0 0 0 2px rgba(13, 92, 63, 0.08);
}

/* Month dropdown */
.retreat-date-select #retreat-month {
    min-width: 138px;
}

/* Day dropdown */
.retreat-date-select #retreat-day {
    min-width: 52px;
    padding-left: 10px;
    padding-right: 24px;
}