@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #07111f;
    padding: 80px 20px;
    color: #fff;
}

/* SECTION */

.course-feature-section {
    max-width: 1450px;
    margin: auto;
}

/* WRAPPER */

.feature-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    /* align-items: center; */
}

/* IMAGE */

.feature-image {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 900px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* OVERLAY */

.image-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.2)); */
}

/* FLOATING BADGE */

.floating-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    padding: 14px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* CONTENT */

.feature-content {
    position: relative;
}

/* TAG */

.top-tag {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(14, 165, 233, 0.15);
    color: #38bdf8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* TITLE */

.feature-content h1 {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 30px;
    font-weight: 800;
    text-transform: capitalize;
}

/* MAIN TEXT */

.main-text {
    color: #94a3b8;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* FEATURE BOX */

.feature-box {
    padding: 20px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

/* BOX TITLE */

.box-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

/* LIST */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ITEM */

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.feature-item span {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 18px;
}

/* ICON */

.check-icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fb923c, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.orange {
    background: linear-gradient(135deg, #fb923c, #f97316);
}

/* HIGHLIGHT */

.highlight-text {
    padding: 28px 35px;
    border-left: 5px solid #0ea5e9;
    background: rgba(14, 165, 233, 0.08);
    border-radius: 20px;
    font-size: 28px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

/* BUTTONS */

.feature-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-buttons a {
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

/* PRIMARY */

.primary-btn {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: #fff;
}

/* SECONDARY */

.secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.feature-buttons a:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .feature-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-image {
        height: 700px;
    }

}

@media(max-width:768px) {

    body {
        padding: 50px 15px;
    }

    .feature-image {
        height: 500px;
        border-radius: 28px;
    }

    .feature-content h1 {
        font-size: 40px;
    }

    .main-text {
        font-size: 17px;
    }

    .box-title {
        font-size: 26px;
    }

    .highlight-text {
        font-size: 22px;
        padding: 24px;
    }

    .feature-box {
        padding: 25px;
    }

    .feature-buttons {
        flex-direction: column;
    }

    .feature-buttons a {
        text-align: center;
    }

}

/* MAIN SECTION */

.pricing-main-section {
    max-width: 1400px;
    margin: auto;
}

/* TABS */

.year-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    border: none;
    padding: 18px 35px;
    border-radius: 100px;
    background: #dddddd;
    color: #111;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
}

.tab-btn.active {
    background: #000;
    color: #fff;
}

.tab-btn:hover {
    transform: translateY(-3px);
}

/* TAB */

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn .4s ease;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* GRID */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    align-items: start;
}

/* CARD */

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* TAG */

.course-tag {
    display: inline-block;
    background: #000;
    color: #38987f;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* TITLE */

.price-card h2 {
    font-size: 54px;
    color: #333;
    margin-bottom: 30px;
}

/* SEATS */

.seat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.seat-box span {
    color: #a1a1a1;
    font-size: 18px;
}

.seat-box strong {
    font-size: 34px;
    color: #333;
}

/* PRICE BLOCK */

.price-block {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.price-block:last-child {
    border-bottom: none;
}

.price-block h4 {
    text-align: center;
    color: #38987f;
    font-size: 28px;
    margin-bottom: 20px;
}

/* PRICE */

.price {
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
}

.price span {
    color: #38987f;
}

/* TEXT */

.price-block p {
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTONS */

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-group a {
    flex: 1;
    text-align: center;
    padding: 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

/* REGISTER */

.btn-group a:first-child {
    background: #38987f;
    color: #fff;
}

/* PAY */

.btn-group a:last-child {
    background: #111;
    color: #fff;
}

.btn-group a:hover {
    transform: translateY(-3px);
}

/* BANK CARD */

.bank-card {
    background: #38987f;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* BANK TITLE */

.bank-card h2 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
}

/* BANK LIST */

.bank-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.bank-row span {
    font-size: 18px;
    color: #111;
}

.bank-row strong {
    font-size: 18px;
    color: #000;
    text-align: right;
}

/* MOBILE */

@media(max-width:768px) {

    .tab-btn {
        width: 100%;
        text-align: center;
        font-size: 15px;
    }

    .price-card h2 {
        font-size: 40px;
    }

    .price {
        font-size: 45px;
    }

    .btn-group {
        flex-direction: column;
    }

    .bank-card h2 {
        font-size: 34px;
    }

    .bank-row {
        flex-direction: column;
    }

    .bank-row strong {
        text-align: left;
    }

}


/* SECTION */

.master-station-section {
    max-width: 1450px;
    margin: auto;
}

/* WRAPPER */

.master-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* IMAGE BOX */

.master-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 900px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.master-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.master-image-box:hover img {
    transform: scale(1.06);
}

/* OVERLAY */

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.3));
}

/* FLOATING CARD */

.floating-card {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-card span {
    color: #14b8a6;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-card h3 {
    font-size: 34px;
    margin-top: 10px;
    line-height: 1.3;
}

/* CONTENT */

.master-content {
    position: relative;
}

/* TAG */

.section-tag {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(125, 211, 252, 0.1);
    color: #14b8a6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* TITLE */

.master-content h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

/* INTRO */

.intro-text {
    color: #94a3b8;
    font-size: 21px;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* FEATURE GRID */

.master-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* FEATURE CARD */

.feature-card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #14b8a6;
}

.feature-number {
    font-size: 52px;
    font-weight: 800;
    color: #14b8a6;
    margin-bottom: 12px;
}

.feature-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* DESCRIPTION */

.description-box {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 35px;
}

.description-box p {
    color: #d1d5db;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.description-box p:last-child {
    margin-bottom: 0;
}

/* HIGHLIGHT */

.highlight-line {
    font-size: 34px;
    line-height: 1.5;
    color: #99f6e4;
    font-weight: 700;
    margin-bottom: 40px;
    font-style: italic;
}

/* BUTTONS */

.master-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.master-buttons a {
    padding: 18px 34px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

/* PRIMARY */

.btn-primary {
    background: linear-gradient(135deg, #14b8a6, #077a77);
    color: #fff;
}

/* SECONDARY */

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.master-buttons a:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:1100px) {

    .master-wrapper {
        grid-template-columns: 1fr;
    }

    .master-image-box {
        height: 700px;
    }

}

@media(max-width:768px) {

    body {
        padding: 50px 15px;
    }

    .master-image-box {
        height: 500px;
        border-radius: 28px;
    }

    .master-content h1 {
        font-size: 42px;
    }

    .intro-text {
        font-size: 17px;
    }

    .master-features {
        grid-template-columns: 1fr;
    }

    .highlight-line {
        font-size: 24px;
    }

    .master-buttons {
        flex-direction: column;
    }

    .master-buttons a {
        text-align: center;
    }

}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    margin-bottom: 0px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    transition: all 0.4s ease;
}