@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=Sora:wght@600;700;800&display=swap');

/* Reset & Base Styles */
:root {
    --primary-color: #2c3e50;
    /* Navy Blue */
    --secondary-color: #3498db;
    /* Lighter Blue */
    --accent-color: #e74c3c;
    /* Red */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --font-body: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    --font-ui: 'Manrope', 'Inter', 'Roboto', 'Segoe UI', sans-serif;
    --font-brand: 'Sora', 'Manrope', 'Inter', 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
body > header {
    --header-deep: #f5f8ff;
    --header-deep-2: #fff9f2;
    --header-line: #dbe5f3;
    --header-link: #25384f;
    --header-link-active: #f28a2e;
    --header-surface: #ffffff;
    --header-login-start: #0f172a;
    --header-login-end: #1f3658;
    --header-soft-blue: #edf3ff;
    background: var(--header-surface);
    border-bottom: 1px solid var(--header-line);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: linear-gradient(90deg, var(--header-deep) 0%, var(--header-deep-2) 100%);
    color: #334155;
    padding: 10px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: var(--font-ui);
    border-bottom: 1px solid #e2ebf6;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-links a {
    color: #334155;
    margin-right: 0;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 14px;
    padding: 0 16px;
    font-weight: 700;
    font-family: var(--font-ui);
    font-size: 13px;
    border: 1px solid #d7e1ef;
    background: #ffffff;
}

.top-links a i {
    margin-right: 6px;
    color: #f28a2e;
}

.top-links #menu-btn {
    color: #b45309;
    background: #fff7ed;
    border-color: #f4cda6;
}

.top-links #menu-btn:hover {
    color: #9a3412;
    border-color: #f2b577;
    background: #ffedd5;
}

.top-links a:hover {
    color: #0f2c63;
    background: #f2f6fe;
    border-color: #c9d8eb;
}

.btn-login {
    background: linear-gradient(135deg, var(--header-login-start) 0%, var(--header-login-end) 100%) !important;
    color: white !important;
    padding: 8px 22px !important;
    border-radius: 999px !important;
    margin-right: 0 !important;
    transition: 0.3s !important;
    font-weight: 700 !important;
    letter-spacing: 0.35px !important;
    font-family: var(--font-ui) !important;
    border: 1px solid #0f172a !important;
    box-shadow: 0 9px 20px rgba(15, 23, 42, 0.24);
}

.btn-login:hover {
    background: linear-gradient(135deg, #1e293b 0%, #274264 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.28);
}

.mobile-login-btn {
    display: none !important;
}

.user-info {
    position: relative;
    margin-right: 0;
}

.user-profile-btn {
    color: #334155 !important;
    display: inline-flex !important;
    align-items: center !important;
    margin-right: 0 !important;
    cursor: pointer !important;
    border: 0 !important;
    background: transparent !important;
    padding: 0 4px !important;
}

.user-profile-btn i {
    margin-right: 8px !important;
    font-size: 16px !important;
    color: #1f4ea3 !important;
}

.user-profile-btn:hover {
    color: #1f4ea3 !important;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #ffffff;
    border: 1px solid #dbe4f2;
    border-radius: 12px;
    min-width: 220px;
    margin-top: 0;
    display: none;
    flex-direction: column;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16);
    z-index: 1001;
}

.user-dropdown.active {
    display: flex;
}

.user-dropdown a {
    color: #334155 !important;
    padding: 12px 16px !important;
    display: flex !important;
    align-items: center !important;
    transition: 0.3s !important;
    border-bottom: 1px solid #edf2f8 !important;
    margin-right: 0 !important;
}

.user-dropdown a:last-child {
    border-bottom: none !important;
}

.user-dropdown a:hover {
    background: #f5f8ff !important;
    color: #1f4ea3 !important;
}

.user-dropdown a i {
    margin-right: 10px !important;
    width: 16px !important;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icons a {
    color: #3b4f67;
    margin-left: 0;
    opacity: 0.9;
    transition: 0.3s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffffff;
    border: 1px solid #d6e2f0;
    font-size: 12px;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: #1f4ea3;
    background: #f2f7ff;
    border-color: #c2d6ed;
}

.main-header {
    padding: 16px 0 17px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border-top: 1px solid #edf2f8;
    border-bottom: 1px solid #edf2f8;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
}

.mobile-menu-icon {
    display: none;
    font-size: 20px;
    color: var(--header-link);
    cursor: pointer;
}

.logo h2 {
    color: var(--header-link);
    font-family: var(--font-brand);
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.25px;
    line-height: 1.12;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px 8px;
    max-width: 430px;
    text-transform: uppercase;
}

.logo span {
    color: var(--header-link-active);
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.navbar>ul>li {
    margin: 0;
    position: relative;
}

.navbar a {
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--header-link);
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    display: block;
    position: relative;
    letter-spacing: 0.18px;
}

.navbar > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--header-link-active);
    border-radius: 999px;
    transition: 0.28s ease;
    transform: translateX(-50%);
}

.navbar > ul > li > a:hover::after,
.navbar > ul > li > a.active::after {
    width: calc(100% - 24px);
}

.navbar > ul > li > a:hover,
.navbar > ul > li > a.active {
    color: var(--header-link-active);
    background: rgba(231, 76, 60, 0.07);
}

.navbar .dropdown > a i {
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.25s ease;
}

.navbar .dropdown:hover > a i {
    transform: rotate(180deg);
}

.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 18px 35px rgba(24, 39, 75, 0.16);
    min-width: 240px;
    z-index: 1001;
    border: 1px solid var(--header-line);
    border-top: 3px solid var(--header-link-active);
    border-radius: 12px;
    padding: 8px 0;
    overflow: hidden;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.22s ease;
}

.navbar .dropdown:focus-within .dropdown-menu,
.navbar .dropdown.is-open .dropdown-menu {
    display: block;
    animation: fadeInUp 0.22s ease;
}

.navbar .dropdown.is-open > a i {
    transform: rotate(180deg);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-menu li {
    margin: 0;
    border-bottom: none;
}

.navbar .dropdown-menu a {
    font-family: var(--font-ui);
    padding: 11px 18px;
    font-size: 13px;
    color: #42556d;
    font-weight: 700;
    border-radius: 0;
}

.navbar .dropdown-menu a::after {
    display: none;
}

.navbar .dropdown-menu a:hover {
    background: var(--header-soft-blue);
    color: var(--header-link-active);
    padding-left: 22px;
}

/* Student Quick Navigation */
.student-quick-nav {
    background: #eceff3;
    border-top: 1px solid #e3e7ee;
    border-bottom: 1px solid #d9dee7;
}

.student-quick-nav[hidden] {
    display: none !important;
}

.student-quick-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: thin;
}

.student-quick-item {
    position: relative;
    flex-shrink: 0;
}

.student-quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    color: #60697b;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid #dde2ea;
    background: transparent;
}

.student-quick-item:first-child .student-quick-link {
    border-left: 1px solid #dde2ea;
}

.student-quick-link i {
    color: #7b8598;
    font-size: 14px;
}

.student-quick-link:hover,
.student-quick-dropdown:hover > .student-quick-link,
.student-quick-dropdown.is-active > .student-quick-link,
.student-quick-dropdown.is-open > .student-quick-link {
    background: #e4e8ef;
    color: #3f4a61;
}

.student-quick-link:hover i,
.student-quick-dropdown:hover > .student-quick-link i,
.student-quick-dropdown.is-active > .student-quick-link i,
.student-quick-dropdown.is-open > .student-quick-link i {
    color: #58637a;
}

.student-quick-caret {
    margin-left: 2px;
    font-size: 11px !important;
}

.student-quick-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 198px;
    background: var(--white);
    border: 1px solid #bcc4d2;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(30, 43, 77, 0.16);
    z-index: 1002;
    padding: 6px 0;
}

.student-quick-dropdown:hover > .student-quick-menu,
.student-quick-dropdown.is-open > .student-quick-menu {
    display: block;
}

.student-quick-menu a {
    display: block;
    padding: 11px 16px;
    color: #5f687b;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.student-quick-menu a:hover {
    background: #f0f3f8;
    color: #374156;
}

.student-quick-link.active {
    background: #e4e8ef;
    color: #3f4a61;
}

.student-quick-link.active i {
    color: #58637a;
}

.student-quick-menu a.active {
    background: #eef3f9;
    color: #374156;
    font-weight: 600;
}

@media (max-width: 768px) {
    .student-quick-nav-list {
        flex-direction: column;
    }

    .student-quick-item {
        width: 100%;
    }

    .student-quick-item:first-child .student-quick-link {
        border-left: 0;
    }

    .student-quick-link {
        border-right: 0;
        border-bottom: 1px solid #dde2ea;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .student-quick-dropdown:hover > .student-quick-menu {
        display: none;
    }

    .student-quick-dropdown.is-open > .student-quick-menu {
        display: block;
    }

    .student-quick-menu {
        position: static;
        min-width: 100%;
        border: 0;
        border-top: 1px solid #e1e7f0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        background: #f7f9fc;
    }

    .student-quick-menu a {
        font-size: 14px;
        padding: 10px 28px;
    }
}

/* Footer Modernization */
footer {
    background: #1a252f;
    color: #bdc3c7;
    padding: 70px 0 30px;
    margin-top: 50px;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    color: var(--white);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    background-size: cover;
    background-position: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    display: flex;
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.slide > .container {
    position: relative;
    z-index: 3;
}

/* Slide Content Animations */
.slide-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    padding-left: 20px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease 0.3s;
    /* Delay */
}

.slide-subtitle::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--white);
    vertical-align: middle;
    margin-left: 10px;
}

.slide-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.5s;
}

.slide-desc {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.7s;
}

.slide-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease 0.9s;
}

/* Active State Animations */
.slide.active .slide-subtitle,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Buttons */
.btn-slide {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
    transition: 0.3s;
}

.btn-slide i {
    margin-left: 8px;
    transition: 0.3s;
}

.btn-slide:hover i {
    transform: translateX(5px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-filled {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-filled:hover {
    background: transparent;
    color: var(--white);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* Featured Courses */
.featured-courses {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.course-image {
    height: 200px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f1f1f1;
}

.btn-detail {
    border: none;
    background: transparent;
    padding: 0;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-detail:focus-visible {
    outline: 2px solid rgba(52, 152, 219, 0.45);
    outline-offset: 4px;
    border-radius: 8px;
}

.cart-feedback {
    min-height: 20px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2f9341;
}

.cart-feedback.is-error {
    color: #cc2f2f;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    margin-top: 50px;
}

/* Existing Styles... */

/* Page Header Styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 32px;
}

/* Content Section Styles */
.content-section {
    padding: 0 0 60px 0;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.text-content ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 20px;
}

.text-content li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.text-content h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* Bank Account Styles */
.bank-accounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.account-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.account-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
}

.account-card h3 i {
    margin-right: 10px;
}

.account-card p {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Mobile Adjustments for Content */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }

    .page-header h1 {
        font-size: 24px;
    }
}

/* Featured Carousel Section */
.featured-carousel {
    padding: 60px 0;
    background: var(--light-bg);
}

.featured-carousel .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.featured-carousel .section-title h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    margin-bottom: 40px;
}

.carousel-container {
    flex: 1;
    max-width: 1000px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    padding: 0 20px;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 250px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.carousel-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card h4 {
    padding: 20px 15px 10px;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-carousel-detail {
    display: inline-block;
    padding: 10px 25px;
    margin: 15px 0;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-carousel-detail:hover {
    background: var(--secondary-color);
    color: white;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.carousel-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-show-all {
    display: inline-block;
    padding: 14px 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.btn-show-all:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─── Detaylı Bilgi Al – Modern Redesign ─── */
.home-inquiry-strip {
    position: relative;
    padding: 72px 0 80px;
    background: linear-gradient(135deg, #0f2c63 0%, #1a406e 40%, #0d1f45 100%);
    overflow: hidden;
}

/* Decorative background blobs */
.inquiry-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.inq-deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    animation: inqPulse 8s ease-in-out infinite;
}

.inq-deco-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #f28a2e 0%, transparent 70%);
    top: -120px;
    right: -100px;
    animation-delay: 0s;
}

.inq-deco-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #4f7ce6 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-delay: 3s;
}

.inq-deco-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #f28a2e 0%, transparent 70%);
    bottom: 20%;
    right: 20%;
    animation-delay: 5s;
    opacity: 0.10;
}

@keyframes inqPulse {
    0%, 100% { transform: scale(1); opacity: 0.18; }
    50%       { transform: scale(1.12); opacity: 0.26; }
}

.home-inquiry-strip .container {
    position: relative;
    z-index: 1;
}

/* Header block */
.inquiry-header {
    text-align: center;
    margin-bottom: 40px;
}

.inquiry-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(242, 138, 46, 0.18);
    border: 1px solid rgba(242, 138, 46, 0.38);
    color: #fbbf59;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.inquiry-kicker i {
    font-size: 0.85rem;
}

.inquiry-headline {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 14px;
}

.inquiry-headline em {
    font-style: normal;
    background: linear-gradient(90deg, #f28a2e 0%, #fbbf59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inquiry-sub {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    margin: 0;
}

/* Form card – glassmorphism */
.home-inquiry-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 14px;
    align-items: end;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 28px 28px 26px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 32px 64px rgba(8, 16, 36, 0.38), inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Individual field wrapper */
.inq-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inq-field label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-left: 2px;
}

.inq-field label i {
    color: #f28a2e;
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.home-inquiry-form select,
.home-inquiry-form input {
    width: 100%;
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
    padding: 0 16px;
    font-size: 0.95rem;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.22s, background 0.22s, box-shadow 0.22s;
    appearance: none;
    -webkit-appearance: none;
}

.home-inquiry-form select option {
    background: #1a3a6b;
    color: #ffffff;
}

.home-inquiry-form select::placeholder,
.home-inquiry-form input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.home-inquiry-form select:focus,
.home-inquiry-form input:focus {
    outline: none;
    border-color: #f28a2e;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(242, 138, 46, 0.22);
}

/* Submit button */
.inq-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #f28a2e 0%, #e06510 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 8px 24px rgba(242, 138, 46, 0.40);
    letter-spacing: 0.02em;
}

.inq-submit-btn i {
    transition: transform 0.22s;
    font-size: 0.9rem;
}

.inq-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(242, 138, 46, 0.54);
    background: linear-gradient(135deg, #f79a44 0%, #ea7318 100%);
}

.inq-submit-btn:hover i {
    transform: translateX(4px);
}

.inq-submit-btn:active {
    transform: translateY(0);
}

/* Feedback */
.home-inquiry-feedback {
    min-height: 20px;
    margin: 14px 4px 0;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.home-inquiry-feedback.is-success {
    color: #6ee7b7;
}

.home-inquiry-feedback.is-error {
    color: #fca5a5;
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 150px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .featured-carousel .section-title h2 {
        font-size: 24px;
    }

    .home-inquiry-strip {
        padding: 52px 0 60px;
    }

    .home-inquiry-form {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px 18px;
    }

    .inq-submit-btn {
        width: 100%;
        height: 54px;
    }

    .inquiry-headline {
        font-size: 1.6rem;
    }
}

/* Student Reviews Section */
.student-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e6c98 0%, #1a5f7a 50%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.student-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="wave" x="0" y="0" width="120" height="120" patternUnits="userSpaceOnUse"><path d="M0,60 Q30,30 60,60 T120,60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/></pattern></defs><rect width="1200" height="600" fill="url(%23wave)"/></svg>');
    opacity: 0.5;
}

.student-reviews .container {
    position: relative;
    z-index: 1;
}

.student-reviews .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.student-reviews .section-title h2 {
    font-size: 36px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.student-reviews .section-line {
    background: white;
    height: 3px;
    width: 80px;
    margin: 0 auto;
}

.reviews-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.reviews-container {
    flex: 1;
    max-width: 1100px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
    padding: 0 20px;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-logo {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
}

.review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.reviews-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.reviews-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .student-reviews {
        padding: 60px 0;
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
        min-width: 200px;
        padding: 30px;
    }

    .reviews-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .student-reviews .section-title h2 {
        font-size: 28px;
    }
}

/* Education & Certification Process Section */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-section .section-line {
    background: var(--secondary-color);
    height: 3px;
    width: 80px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    border-radius: 0;
    padding: 0;
    color: var(--primary-color);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.process-card:hover {
    transform: translateY(-10px);
}

/* Step 1 - Orange */
.process-card.step-1 {
    background: transparent;
}

/* Step 2 - Pink */
.process-card.step-2 {
    background: transparent;
}

/* Step 3 - Purple */
.process-card.step-3 {
    background: transparent;
}

/* Step 4 - Dark Blue */
.process-card.step-4 {
    background: transparent;
}

.process-card .step-icon {
    width: 100%;
    height: 200px;
    margin: 0 0 20px 0;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.process-card .step-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.process-card .step-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    opacity: 1;
    color: #555;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-card {
        padding: 0;
        min-height: auto;
    }

    .process-section .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-card {
        padding: 0;
        min-height: auto;
    }

    .process-card .step-icon {
        font-size: 40px;
    }

    .process-card .step-number {
        font-size: 36px;
    }

    .process-section .section-title h2 {
        font-size: 24px;
    }
}

/* ICCW Statistics Section */
.iccw-stats {
    padding: 80px 0;
    background: white;
}

.iccw-stats .container {
    text-align: center;
}

.iccw-stats h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.iccw-stats p {
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-circle-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Stat colors */
.stat-1 .stat-circle {
    background: transparent;
}

.stat-2 .stat-circle {
    background: transparent;
}

.stat-3 .stat-circle {
    background: transparent;
}

.stat-4 .stat-circle {
    background: transparent;
}

.stat-content {
    text-align: center;
    background: #f5f5f5;
    padding: 25px;
    border-radius: 12px;
    min-width: 180px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.stat-number::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

.stat-content p {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .iccw-stats {
        padding: 60px 0;
    }

    .iccw-stats h2 {
        font-size: 24px;
    }

    .iccw-stats p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        display: none;
    }

    .stat-content {
        min-width: 150px;
        padding: 20px;
    }

    .stat-number {
        font-size: 32px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #0e6c98 0%, #1a5f7a 50%, #2c3e50 100%);
    color: white;
    text-align: left;
    padding: 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.12), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(14, 108, 152, 0.35), transparent 45%);
    opacity: 0.9;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 28px 32px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(7, 27, 41, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.footer-cta p {
    color: white;
    font-size: 16px;
    margin: 0;
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

.btn-footer-cta {
    background: white;
    color: #0e6c98;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-main {
    padding: 60px 0 30px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: start;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-col h3 span {
    color: #FFD700;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.footer-brand p {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.footer-tagline {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    padding-left: 0;
}

.footer-links a::before {
    content: '>';
    color: #FFD700;
    font-weight: 700;
    font-size: 12px;
    font-family: inherit;
}

.footer-links a:hover {
    color: white;
    transform: translateX(4px);
    padding-left: 0;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-size: 13px;
    margin-bottom: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact .label {
    font-weight: 700;
    color: white;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover {
    background: white;
    color: #0e6c98;
    transform: translateY(-5px);
    border-color: white;
}

.footer-payments {
    text-align: center;
    padding: 26px 22px 24px;
    background: linear-gradient(125deg, rgba(30, 52, 106, 0.76), rgba(20, 39, 86, 0.74));
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 30px;
    display: grid;
    gap: 14px;
}

.footer-payments-title {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    font-weight: 700;
}

.footer-payments img {
    width: min(700px, 100%);
    height: auto;
    margin: 0 auto;
    display: block;
    background: #ffffff;
    border-radius: 26px;
    padding: 14px 24px;
    box-shadow: 0 12px 26px rgba(7, 17, 47, 0.28);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-links-bottom a {
    color: white;
    font-size: 13px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer-links-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    color: white;
    opacity: 0.8;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 30px 0;
    }

    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 22px;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .btn-footer-cta {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-col h3 {
        font-size: 18px;
    }

    .footer-links-bottom {
        gap: 15px;
        font-size: 12px;
    }
}

/* Corporate, Blog, Contact, Courses Page Refresh */
body.page-corporate,
body.page-blog,
body.page-contact,
body.page-courses {
    --editorial-ink: #0f2336;
    --editorial-ink-soft: #55697e;
    --editorial-brand: #0b7f9a;
    --editorial-brand-dark: #13518b;
    --editorial-accent: #f19a4a;
    --editorial-surface: #ffffff;
    --editorial-surface-soft: #f3f8fc;
    --editorial-line: #d6e2ee;
    --editorial-shadow: 0 24px 48px rgba(20, 45, 78, 0.12);
    background:
        radial-gradient(circle at 85% 8%, rgba(11, 127, 154, 0.11), transparent 32%),
        radial-gradient(circle at 12% 14%, rgba(241, 154, 74, 0.16), transparent 28%),
        #edf3f8;
}

body.page-courses {
    --courses-accent: #f28a2e;
    --courses-accent-dark: #d77722;
    --courses-ink: #15283d;
    --courses-muted: #566d82;
    --courses-line: #d7e3ef;
    --courses-surface: #ffffff;
    --courses-shadow: 0 16px 30px rgba(16, 40, 69, 0.1);
    --courses-radius-lg: 22px;
    --courses-radius-md: 14px;
    --courses-transition: 240ms cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(circle at 9% 3%, rgba(242, 138, 46, 0.17), transparent 33%),
        radial-gradient(circle at 88% 8%, rgba(28, 81, 128, 0.16), transparent 37%),
        #eef4fa;
}

body.page-corporate main,
body.page-blog main,
body.page-contact main,
body.page-courses main {
    font-family: 'Manrope', sans-serif;
    color: var(--editorial-ink);
    padding-bottom: 10px;
}

body.page-corporate h1,
body.page-corporate h2,
body.page-corporate h3,
body.page-blog h1,
body.page-blog h2,
body.page-blog h3,
body.page-contact h1,
body.page-contact h2,
body.page-contact h3,
body.page-courses h1,
body.page-courses h2,
body.page-courses h3 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.2px;
}

.page-bank .stat-value--small {
    font-size: 16px;
    line-height: 1.4;
    color: #1c4b72;
    word-break: break-word;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.bank-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 16px 30px rgba(15, 38, 63, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.bank-card:hover {
    transform: translateY(-4px);
    border-color: #efbe8b;
    box-shadow: 0 20px 34px rgba(15, 38, 63, 0.12);
}

.bank-card__header {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.bank-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e2f3ff 0%, #fff0df 100%);
    color: #115b87;
    font-size: 20px;
}

.bank-card__header h3 {
    margin: 0;
    font-size: 22px;
    color: #152d44;
}

.bank-card__header p {
    margin: 2px 0 0;
    color: #60798f;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.bank-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.bank-details li {
    border: 1px solid #d7e4ef;
    background: #f7fbff;
    border-radius: 12px;
    padding: 10px 12px;
    display: grid;
    gap: 4px;
}

.bank-details span {
    color: #607b92;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.bank-details strong {
    color: #15324a;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    word-break: break-word;
}

.bank-note {
    border: 1px solid var(--editorial-line);
    border-radius: 24px;
    padding: 26px;
    background: linear-gradient(138deg, #123b5c 0%, #14607f 58%, #da8d39 100%);
    box-shadow: 0 22px 40px rgba(14, 37, 60, 0.17);
    color: #ffffff;
}

.bank-note .eyebrow {
    margin-bottom: 10px;
}

.bank-note h3 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.8vw, 31px);
    line-height: 1.3;
    max-width: 34ch;
}

.bank-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
    max-width: 72ch;
}

.bank-note .hero-btn {
    margin-top: 18px;
}

.page-hero {
    padding: 66px 0 28px;
}

.page-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
}

.page-hero__layout--single {
    grid-template-columns: minmax(0, 1fr);
}

.hero-content {
    background: linear-gradient(150deg, #0f2235 0%, #15446a 55%, #0b7f9a 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--editorial-shadow);
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.2), transparent 30%),
        radial-gradient(circle at 18% 88%, rgba(241, 154, 74, 0.28), transparent 38%);
    pointer-events: none;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--editorial-accent);
    border-radius: 999px;
}

.hero-content h1 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    margin: 0 0 16px 0;
}

.hero-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    font-size: 16px;
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e9f5ff 100%);
    color: #10446c;
    border: 1px solid rgba(255, 255, 255, 0.58);
    transition: 0.24s ease;
    cursor: pointer;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(10, 29, 48, 0.22);
}

.hero-btn--ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.62);
}

.hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 18px 34px rgba(15, 33, 59, 0.08);
}

.panel-title {
    margin: 0 0 20px 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #36506a;
    text-transform: uppercase;
}

.stat-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.stat-item {
    background: var(--editorial-surface-soft);
    border: 1px solid var(--editorial-line);
    border-radius: 16px;
    padding: 16px;
    display: grid;
    gap: 4px;
}

.stat-value {
    font-family: 'Sora', sans-serif;
    color: #124878;
    font-size: 26px;
    line-height: 1;
}

.stat-label {
    color: #55708a;
    font-size: 13px;
    font-weight: 600;
}

.page-block {
    padding: 34px 0;
}

.page-block--compact {
    padding-top: 10px;
}

body.page-courses .catalog-list-controls {
    padding: 0;
}

body.page-courses .page-hero {
    padding: 58px 0 24px;
}

body.page-courses .hero-content {
    background: linear-gradient(142deg, #13253c 0%, #23456f 58%, #d98834 100%);
    border-radius: var(--courses-radius-lg);
    padding: clamp(28px, 4vw, 42px);
    box-shadow: 0 26px 44px rgba(18, 42, 70, 0.2);
}

body.page-courses .hero-content::before {
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.24), transparent 33%),
        radial-gradient(circle at 18% 86%, rgba(242, 138, 46, 0.36), transparent 40%);
}

body.page-courses .hero-content h1 {
    max-width: 22ch;
}

body.page-courses .hero-content p {
    max-width: 64ch;
}

body.page-courses .eyebrow::before {
    background: #f6af66;
}

body.page-courses .hero-actions {
    margin-top: 24px;
}

body.page-courses .hero-btn {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border-color: transparent;
    background: linear-gradient(135deg, #f6a546 0%, #ea8e2e 100%);
    color: #ffffff;
    transition:
        transform var(--courses-transition),
        box-shadow var(--courses-transition),
        background var(--courses-transition),
        color var(--courses-transition),
        border-color var(--courses-transition);
}

body.page-courses .hero-btn:hover {
    background: linear-gradient(135deg, #f9b361 0%, #ed973b 100%);
    box-shadow: 0 14px 26px rgba(18, 40, 66, 0.28);
}

body.page-courses .hero-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
}

body.page-courses .hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

body.page-courses .catalog-list-controls-inner {
    background: var(--courses-surface);
    border: 1px solid var(--courses-line);
    border-radius: var(--courses-radius-lg);
    box-shadow: 0 18px 34px rgba(16, 39, 68, 0.08);
    padding: 14px;
    gap: 12px;
}

body.page-courses .catalog-search {
    width: min(620px, 100%);
}

body.page-courses .catalog-search input {
    height: 52px;
    border-radius: var(--courses-radius-md);
    border-color: #cfdeea;
    background: #f8fbff;
    transition:
        border-color var(--courses-transition),
        box-shadow var(--courses-transition),
        background var(--courses-transition);
}

body.page-courses .catalog-search input:focus {
    border-color: #e5a35f;
    box-shadow: 0 0 0 4px rgba(242, 138, 46, 0.16);
    background: #ffffff;
}

body.page-courses .catalog-featured-toggle {
    border: 1px solid #d8e4ef;
    border-radius: var(--courses-radius-md);
    min-height: 52px;
    padding: 0 14px;
    background: #f8fbff;
    font-weight: 600;
    color: #284963;
    transition:
        border-color var(--courses-transition),
        background var(--courses-transition),
        color var(--courses-transition);
}

body.page-courses .catalog-featured-toggle:hover {
    border-color: #f0b377;
    background: #fff7ef;
    color: #1f3952;
}

body.page-courses .catalog-featured-toggle input {
    accent-color: var(--courses-accent);
}

body.page-courses .catalog-result-count {
    margin-left: auto;
    font-weight: 700;
    color: #536a7f;
}

body.page-courses .catalog-courses-section {
    padding: 18px 0 60px;
}

body.page-courses .catalog-courses-grid {
    gap: 20px;
}

body.page-courses .catalog-course-card {
    border-radius: var(--courses-radius-lg);
    border: 1px solid var(--courses-line);
    box-shadow: var(--courses-shadow);
    transition:
        transform var(--courses-transition),
        box-shadow var(--courses-transition),
        border-color var(--courses-transition);
}

body.page-courses .catalog-course-card:hover {
    transform: translateY(-4px);
    border-color: #efbe8c;
    box-shadow: 0 24px 42px rgba(15, 35, 58, 0.14);
}

body.page-courses .catalog-course-image {
    transition: transform var(--courses-transition);
}

body.page-courses .catalog-course-body {
    padding: 20px;
}

body.page-courses .catalog-course-title {
    color: var(--courses-ink);
    font-size: 1.07rem;
}

body.page-courses .catalog-course-intro {
    color: var(--courses-muted);
}

body.page-courses .catalog-course-link {
    border-color: var(--courses-accent);
    color: var(--courses-accent-dark);
    transition: all var(--courses-transition);
}

body.page-courses .catalog-course-link:hover {
    background: var(--courses-accent);
    border-color: var(--courses-accent);
    color: #ffffff;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading .eyebrow {
    color: #335169;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    color: var(--editorial-ink);
    max-width: 22ch;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.value-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 28px rgba(12, 37, 64, 0.07);
    transition: 0.24s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(12, 37, 64, 0.12);
}

.value-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e2f3ff 0%, #d9f5ef 100%);
    color: #0f5a86;
    font-size: 20px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.value-card p {
    margin: 0;
    color: var(--editorial-ink-soft);
    font-size: 15px;
    line-height: 1.7;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.story-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(20, 44, 74, 0.08);
}

.story-year {
    margin: 0 0 10px 0;
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #1d5f83;
    background: #e7f4fb;
}

.story-card h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
}

.story-card p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.7;
}

.impact-strip {
    background: linear-gradient(135deg, #103654 0%, #0d5f7c 54%, #108a96 100%);
    border-radius: 24px;
    padding: 30px 30px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    color: #ffffff;
}

.impact-strip h3 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.3;
    max-width: 34ch;
}

.impact-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.metric-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

body.page-vision-mission .hero-content {
    background: linear-gradient(145deg, #0f2b4d 0%, #1b5f93 55%, #e29137 100%);
}

body.page-vision-mission .hero-content p {
    max-width: 64ch;
}

body.page-vision-mission .hero-panel .stat-value {
    font-size: 22px;
    letter-spacing: 0.6px;
}

body.page-vision-mission .hero-panel .stat-label {
    font-size: 14px;
    line-height: 1.5;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.vision-mission-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 16px 30px rgba(15, 36, 60, 0.08);
    transition: 0.24s ease;
}

.vision-mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(15, 36, 60, 0.13);
}

.vision-mission-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e2f2ff 0%, #fce9d7 100%);
    color: #175b87;
    font-size: 20px;
    margin-bottom: 14px;
}

.vision-mission-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #153e5d;
}

.vision-mission-card p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.75;
    font-size: 15px;
}

.blog-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 20px;
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 36px rgba(13, 38, 66, 0.09);
}

.blog-feature__media {
    border-radius: 18px;
    min-height: 280px;
    background:
        linear-gradient(155deg, rgba(11, 127, 154, 0.86), rgba(19, 81, 139, 0.88)),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.45), transparent 33%),
        radial-gradient(circle at 20% 78%, rgba(241, 154, 74, 0.6), transparent 38%);
    position: relative;
    overflow: hidden;
}

.blog-feature__media::after {
    content: 'FEST INSIGHT';
    position: absolute;
    left: 16px;
    bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-feature__content {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 6px 4px;
}

.meta-line {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: #5d7488;
    font-size: 13px;
    font-weight: 700;
}

.blog-feature__content h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.blog-feature__content p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.7;
}

.tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-chip {
    padding: 5px 10px;
    border-radius: 999px;
    background: #e8f3fb;
    color: #174f7c;
    border: 1px solid #cce0f0;
    font-size: 12px;
    font-weight: 700;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0e5f88;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3px;
    width: fit-content;
}

.inline-link:hover {
    color: #0c4565;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(14, 38, 66, 0.08);
    display: grid;
}

.blog-card__cover {
    height: 128px;
    background: linear-gradient(135deg, #2e7cb0 0%, #3cbf9f 100%);
}

.blog-card__cover.tone-1 {
    background: linear-gradient(135deg, #0f4f80 0%, #13a3a0 100%);
}

.blog-card__cover.tone-2 {
    background: linear-gradient(135deg, #1e6c98 0%, #f59d49 100%);
}

.blog-card__cover.tone-3 {
    background: linear-gradient(135deg, #104773 0%, #2f88b8 58%, #61c4aa 100%);
}

.blog-card__cover.tone-4 {
    background: linear-gradient(135deg, #1f5a90 0%, #6cc8ae 100%);
}

.blog-card__cover.tone-5 {
    background: linear-gradient(135deg, #2f7ea7 0%, #1e9f8f 100%);
}

.blog-card__cover.tone-6 {
    background: linear-gradient(135deg, #0f476f 0%, #4ea8d2 52%, #f3ab5f 100%);
}

.blog-card__body {
    padding: 20px;
    display: grid;
    gap: 10px;
}

.card-meta {
    margin: 0;
    color: #5e7488;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.blog-card__body h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.3;
}

.blog-card__body p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.65;
}

.newsletter-card {
    background: linear-gradient(138deg, #123e61 0%, #116183 58%, #148f9a 100%);
    border-radius: 24px;
    color: #ffffff;
    padding: 26px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.75fr);
    gap: 22px;
    align-items: center;
}

.newsletter-card h3 {
    margin: 6px 0 10px 0;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.25;
    max-width: 25ch;
}

.newsletter-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.newsletter-form input {
    flex: 1 1 200px;
    min-height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 0 16px;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #ffffff;
    color: #0e4b73;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.3fr);
    gap: 20px;
}

.contact-sidebar,
.contact-form-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 24px;
    box-shadow: 0 18px 30px rgba(17, 42, 70, 0.08);
}

.contact-sidebar {
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 18px;
}

.contact-sidebar h2,
.contact-form-card h2 {
    margin: 0;
    font-size: 28px;
}

.contact-sidebar p,
.contact-form-card p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.7;
}

.contact-method-list {
    display: grid;
    gap: 10px;
}

.contact-method {
    border: 1px solid #d6e5f1;
    border-radius: 16px;
    padding: 12px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    background: #f6fbff;
}

.contact-method:hover {
    border-color: #bdd6e8;
    background: #edf6fd;
}

.contact-method__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e0f1ff 0%, #d9f6ee 100%);
    color: #155e8d;
}

.contact-method__meta {
    display: grid;
    gap: 1px;
}

.contact-method__meta strong {
    color: #1a4465;
    font-size: 14px;
}

.contact-method__meta span {
    color: #587086;
    font-size: 14px;
}

.contact-hours {
    border-top: 1px solid #deebf6;
    padding-top: 14px;
    display: grid;
    gap: 6px;
}

.contact-hours h3 {
    margin: 0;
    font-size: 18px;
}

.contact-form-card {
    padding: 24px;
    display: grid;
    gap: 16px;
}

.contact-form-modern {
    display: grid;
    gap: 14px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-form-modern label {
    display: grid;
    gap: 6px;
    color: #2a4d68;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    border: 1px solid #cfdde9;
    background: #f8fbfe;
    border-radius: 12px;
    padding: 12px 14px;
    font-family: inherit;
    color: #17344d;
    font-size: 15px;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus,
.newsletter-form input:focus {
    outline: 2px solid rgba(20, 116, 164, 0.2);
    border-color: #71a8cc;
}

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

.contact-form-modern .hero-btn {
    border: 0;
    background: linear-gradient(135deg, #1d729e 0%, #1863a6 100%);
    color: #ffffff;
    width: fit-content;
}

.map-preview {
    border: 1px dashed #b8cfdf;
    border-radius: 16px;
    background: #f2f8fc;
    padding: 14px;
    display: grid;
    gap: 8px;
}

.map-preview p {
    margin: 0;
    color: #32556f;
    font-size: 14px;
}

.map-preview i {
    margin-right: 6px;
    color: #1a6996;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.faq-card {
    background: var(--editorial-surface);
    border: 1px solid var(--editorial-line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 14px 26px rgba(12, 37, 64, 0.07);
}

.faq-card h3 {
    margin: 0 0 8px 0;
    font-size: 19px;
}

.faq-card p {
    margin: 0;
    color: var(--editorial-ink-soft);
    line-height: 1.7;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: riseIn 0.62s ease forwards;
}

.reveal[data-delay="1"] {
    animation-delay: 0.1s;
}

.reveal[data-delay="2"] {
    animation-delay: 0.2s;
}

.reveal[data-delay="3"] {
    animation-delay: 0.3s;
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .value-grid,
    .blog-grid,
    .faq-grid,
    .bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .story-grid,
    .blog-feature,
    .contact-layout,
    .newsletter-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .newsletter-form {
        justify-content: flex-start;
    }

    .page-hero__layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 44px 0 12px;
    }

    .hero-content {
        border-radius: 20px;
        padding: 30px 24px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-panel,
    .contact-sidebar,
    .contact-form-card,
    .newsletter-card {
        border-radius: 18px;
    }

    .value-grid,
    .story-grid,
    .blog-grid,
    .faq-grid,
    .bank-grid,
    .vision-mission-grid,
    .contact-form-row {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-feature {
        padding: 14px;
    }

    .blog-feature__media {
        min-height: 210px;
    }

    .impact-strip {
        grid-template-columns: minmax(0, 1fr);
        padding: 24px;
    }

    .vision-mission-card {
        border-radius: 18px;
        padding: 20px;
    }

    .impact-strip .hero-btn {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }

    .bank-card {
        padding: 18px;
    }

    .bank-note {
        padding: 22px 18px;
    }

    .bank-note .hero-btn {
        width: 100%;
    }

    body.page-courses .catalog-list-controls-inner {
        padding: 12px;
    }

    body.page-courses .catalog-search {
        width: 100%;
    }

    body.page-courses .catalog-featured-toggle {
        width: 100%;
        justify-content: flex-start;
    }

    body.page-courses .catalog-result-count {
        margin-left: 0;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .value-card:hover,
    .hero-btn:hover {
        transform: none;
    }
}
