/* Custom CSS for Toxin Academy Redesign */

:root {
    --primary-color: #c50000;
    --primary-dark: #9e0000;
    --primary-light: #ff4444;
    --bs-primary: #c50000;
    --bs-primary-rgb: 197, 0, 0;
    --secondary-color: #333333;
    --blue-color: #0751fe;
    /* Eski #0101ff yerine her yerde --blue-color / .text-blue-accent kullanın */
    --blue-color-rgb: 7, 81, 254;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Anasayfa quick-link (Registration / Travel / Atlas) ile aynı mavi vurgu (#0101ff yerine) */
.text-blue-accent {
    color: var(--blue-color) !important;
}

.bg-blue-accent-soft {
    background-color: rgba(var(--blue-color-rgb), 0.12) !important;
}

.bg-blue-accent-soft-hover {
    background-color: rgba(var(--blue-color-rgb), 0.06) !important;
}

.border-blue-accent {
    border-color: var(--blue-color) !important;
}

.border-start-blue-accent {
    border-left: 4px solid var(--blue-color) !important;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.page-content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Bootstrap primary override - tema rengi */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Navbar */
.navbar {
    background-color: var(--white);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

.navbar .nav-link:hover, 
.navbar .nav-link.active {
    color: var(--primary-color);
}

.navbar .navbar-toggler {
    border-color: rgba(197, 0, 0, 0.5);
    padding: 0.25rem 0.5rem;
    font-size: 1.1rem;
}

.navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(197, 0, 0, 0.25);
}

/* Nav icon buttons - circular style */
.nav-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    color: var(--gray-600);
    background: var(--white);
    transition: all 0.2s ease;
}

.nav-icon-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(197, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }

    .navbar {
        order: -1;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        padding: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        overflow-y: auto;
        display: block !important;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin-top: 40px;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid var(--gray-200);
    }

    .navbar-nav .nav-link {
        padding: 15px 0 !important;
    }

    /* Close button for sidebar */
    .navbar-toggler[aria-expanded="true"]::before {
        content: '\f00d';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 1060;
        font-size: 1.5rem;
        color: var(--secondary-color);
        cursor: pointer;
    }
}

/* Top Bar */
.top-bar {
    border-bottom: 1px solid var(--gray-200);
}

.top-bar-logo {
    height: 80px;
    width: auto;
}

.partner-logo-top {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s;
    cursor: default;
}

.partner-logo-top img {
    max-height: 75px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Site Banner */
.site-banner {
    overflow: hidden;
    line-height: 0;
    padding: 0 !important;
}

.site-banner img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .site-banner img {
        height: auto;
    }
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hero Section - Davet Yazısı */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(45deg, rgba(197, 0, 0, 0.03) 0%, rgba(197, 0, 0, 0.08) 100%);
    border-radius: 50%;
    z-index: 1;
}

.invitation-section .container {
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.invitation-section .row {
    background: linear-gradient(135deg, var(--white) 0%, #fefefe 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
}

.invitation-section .row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b6b 50%, var(--primary-color) 100%);
    z-index: 3;
}

.invitation-img-wrapper {
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.invitation-img-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    transform: translateY(-50%);
}

.invitation-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--white);
}

.invitation-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    position: relative;
}

.invitation-greeting {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    font-style: italic;
    position: relative;
}

.invitation-greeting::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
}

.invitation-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.9;
    margin-bottom: 0;
    letter-spacing: 0.01em;
    font-weight: 400;
    text-align: justify;
}

/* Decorative elements */
.invitation-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(197, 0, 0, 0.1);
    font-family: 'Times New Roman', serif;
    line-height: 1;
}

@media (max-width: 991px) {
    .invitation-section .row {
        flex-direction: column;
        border-radius: 20px;
    }

    .invitation-img-wrapper {
        padding: 40px 35px 35px;
    }

    .invitation-img-wrapper::after {
        display: none;
    }

    .invitation-img {
        max-width: 200px;
        max-height: 240px;
    }

    .invitation-content {
        padding: 40px 35px;
        min-height: auto;
    }

    .invitation-content::before {
        top: 15px;
        left: 15px;
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section::before {
        display: none;
    }

    .invitation-section .row {
        border-radius: 16px;
        margin: 0 10px;
    }

    .invitation-img-wrapper {
        padding: 30px 25px 25px;
    }

    .invitation-img {
        max-width: 170px;
        max-height: 210px;
        border-radius: 16px;
    }

    .invitation-content {
        padding: 30px 25px;
    }

    .invitation-greeting {
        font-size: 1.1rem;
    }

    .invitation-text {
        font-size: 1rem;
        text-align: left;
    }

    .invitation-content::before {
        font-size: 2.5rem;
        top: 10px;
        left: 10px;
    }
}

/* Faculty Section */
.faculty-section {
    background-color: var(--white);
}

.faculty-list-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.faculty-column {
    padding: 0 25px;
}

.faculty-column:first-child {
    padding-left: 0;
}

.faculty-column:last-child {
    padding-right: 0;
    border-left: 1px solid var(--gray-200);
}

@media (max-width: 991px) {
    .faculty-column {
        padding: 0;
    }

    .faculty-column:last-child {
        border-left: none;
    }

    .faculty-column:first-child {
        border-bottom: 1px solid var(--gray-200);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.faculty-member {
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
}

.faculty-member:last-child {
    border-bottom: none;
}

.faculty-member::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Faculty sayfası - profil fotoğrafları (kırmızı borderin solunda) */
.faculty-list-with-photos .faculty-member {
    display: flex;
    align-items: center;
    gap: 15px;
}

.faculty-list-with-photos .faculty-member::before {
    display: none;
}

.faculty-list-with-photos .faculty-member-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gray-200);
    margin-left: 20px
}

.faculty-list-with-photos .faculty-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faculty-list-with-photos .faculty-member-content {
    flex: 1;
    position: relative;
    padding-left: 15px;
}

.faculty-list-with-photos .faculty-member-content::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--blue-color);
    border-radius: 2px;
}

.faculty-list-with-photos .faculty-member-content .faculty-info {
    padding-left: 0;
}

.faculty-member h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 600;
    padding-left: 15px;
}

.faculty-list-with-photos .faculty-member-content h5 {
    padding-left: 0;
}

.faculty-member h5 a {
    color: inherit;
    text-decoration: none;
}

.faculty-member h5 a:hover {
    color: var(--primary-color);
}

.faculty-member .faculty-info {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    padding-left: 15px;
}

.faculty-member .faculty-info em {
    font-style: italic;
}

/* Agenda Section */
.agenda-section {
    background-color: var(--white);
    padding: 80px 0;
}

.course-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    height: 100%;
    border-top: 4px solid var(--primary-color);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: none !important;
}

.course-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.course-card h4 a {
    color: var(--secondary-color);
}

.course-card h4 a:hover {
    color: var(--primary-color);
}

.course-card .course-meta {
    margin-top: auto;
    border-top: 1px solid var(--gray-200);
    padding-top: 15px;
}

.course-card .course-meta .date {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.course-card .course-meta .date i {
    margin-right: 8px;
}

.course-card .course-meta .status {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.course-card .course-meta .status.open {
    color: #28a745;
}

.course-card .course-meta .status.full {
    color: var(--primary-color);
}

.course-card .course-meta .status.completed {
    color: var(--gray-600);
}

/* Partners Section */
.partners-section {
    background-color: var(--white);
}

.partners-section .partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.partners-section .partner-logo img {
    max-width: 100%;
    max-height: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partners-section .partner-logo:hover {
    border-color: var(--primary-color);
}

.partners-section .partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Quick Links Section */
.quick-links-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.quick-link-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-color);
}

.quick-link-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.quick-link-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(var(--blue-color-rgb), 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--blue-color);
    transition: all 0.3s ease;
}

.quick-link-card:hover .card-icon {
    background: var(--blue-color);
    color: var(--white);
}

.quick-link-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.quick-link-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.quick-link-card .card-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.quick-link-card .card-link i {
    transition: transform 0.3s ease;
}

.quick-link-card:hover .card-link i {
    transform: translateX(5px);
}

/* Other Websites Section */
.other-websites-section {
    background-color: var(--white);
    padding: 80px 0;
    position: relative;
}

.websites-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.website-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.website-item:hover {
    background: rgba(197, 0, 0, 0.03);
}

.website-content h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.website-content p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.website-arrow {
    width: 40px;
    height: 40px;
    background: rgba(197, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.website-item:hover .website-arrow {
    background: var(--primary-color);
    color: var(--white);
}

.websites-divider {
    width: 1px;
    background: var(--gray-200);
    align-self: stretch;
}

/* Home: MSK + newsletter — unified panel */
.other-websites-newsletter-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.websites-newsletter-section-title {
    margin-bottom: 0.75rem;
}

.websites-newsletter-section-lead {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.websites-newsletter-unified {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.websites-newsletter-unified__msk {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 2rem 2rem 2rem 2.25rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    transition: background-color 0.25s ease;
}

.websites-newsletter-unified__msk:hover {
    background-color: rgba(197, 0, 0, 0.04);
    color: inherit;
}

.websites-newsletter-unified__msk-body {
    min-width: 0;
}

.websites-newsletter-unified__msk-title {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.websites-newsletter-unified__msk-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

.websites-newsletter-unified__msk-arrow {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(197, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.websites-newsletter-unified__msk:hover .websites-newsletter-unified__msk-arrow {
    background: var(--primary-color);
    color: var(--white);
}

.websites-newsletter-unified__divider {
    width: 1px;
    background: var(--gray-200);
    flex-shrink: 0;
    align-self: stretch;
}

.websites-newsletter-unified__newsletter {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem 2.25rem 2rem 2rem;
    background: var(--secondary-color);
    min-width: 0;
}

.websites-newsletter-unified__newsletter-text {
    min-width: 0;
}

.websites-newsletter-unified__newsletter-heading {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.websites-newsletter-unified__newsletter-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    line-height: 1.5;
}

.websites-newsletter-unified__btn {
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
    .websites-newsletter-unified {
        flex-direction: column;
    }

    .websites-newsletter-unified__divider {
        width: 100%;
        height: 1px;
    }

    .websites-newsletter-unified__newsletter {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.75rem;
    }

    .websites-newsletter-unified__msk {
        padding: 1.75rem 1.5rem;
    }
}

.program-related-list li {
    margin-bottom: 0.35rem;
}

.program-related-list a {
    font-weight: 400;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.newsletter-content h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 0, 0, 0.3);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(197, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .websites-wrapper {
        flex-direction: column;
    }

    .websites-divider {
        width: 100%;
        height: 1px;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .newsletter-content {
        margin-bottom: 20px;
    }

    .contact-content-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .quick-link-card {
        padding: 30px 25px;
    }

    .quick-link-card .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .website-item {
        padding: 25px 20px;
    }

    .newsletter-box {
        padding: 35px 25px;
    }

    .newsletter-content h3 {
        font-size: 1.4rem;
    }

    .newsletter-btn {
        padding: 14px 28px;
    }

    .contact-content-wrapper {
        padding: 30px 25px;
    }

    .contact-line {
        font-size: 0.9rem;
    }

    .contact-notes {
        font-size: 0.85rem;
    }
}

/* Atlas Section */
.atlas-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../../images/places/view-fribourg-city-switzerland.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.atlas-section h2 {
    color: var(--white);
}

.atlas-section h2:after {
    background-color: var(--white);
}

.atlas-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.atlas-section .btn-atlas {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

/* Contact Section */
.contact-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* World Map Background */
.world-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    animation: slideWorldMap 150s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.world-map-img {
    flex-shrink: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.04;
}

@keyframes slideWorldMap {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    color: var(--primary-color);
}

.contact-section h2:after {
    background-color: var(--primary-color);
}

.contact-content-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 30px;

}

.contact-line {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-line strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-line a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-line a:hover {
    color: var(--primary-color);
}

.contact-notes {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.7;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

/* Modern Footer */
.footer-section {
    background-color: #111;
    color: #fff;
    padding: 0;
    margin-top: auto;
}

.footer-widget {
    margin-bottom: 40px;
}

.widget-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
    display: inline-block;
}

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

.contact-info i {
    font-size: 1.1rem;
}

.footer-bottom {
    background-color: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.grafil-logo-link:hover img {
    opacity: 1 !important;
}

/* ============================================
   INNER PAGE STYLES
   ============================================ */

/* Page Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../images/places/view-fribourg-city-switzerland.jpg') no-repeat center center/cover;
    opacity: 0.15;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.page-hero .lead {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 650px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}

.page-hero .breadcrumb-item.active {
    color: var(--white);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Page Content Area */
.page-content {
    padding: 60px 0 80px;
    background-color: var(--light-bg);
}

.page-content.white-bg {
    background-color: var(--white);
}

/* Content Cards */
.content-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
    font-size: 15px
}

.content-card:hover {
    box-shadow: var(--shadow-md);
}

.content-card.featured {
    border-top: 4px solid var(--primary-color);
}

/* Travel — Venue: üst çizgi anasayfa quick-link mavisi */
#venue .content-card.featured {
    border-top-color: var(--blue-color);
}

#venue .content-card h3 {
    color: var(--blue-color);
}

#venue .info-box .icon {
    background: var(--blue-color);
}

/* Travel — Getting Here: uçak ikonları, başlıklar (anasayfa mavisi) */
#airports .content-card .card-icon {
    background: rgba(var(--blue-color-rgb), 0.12);
    color: var(--blue-color);
}

#airports .content-card h3,
#airports .content-card h4 {
    color: var(--blue-color);
}

/* Travel — Hotels: önerilen oteller başlığı ve kart başlıkları */
#hotels .content-card h3,
#hotels .hotel-card h5 {
    color: var(--blue-color) !important;
}

.content-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Info Boxes */
.info-box {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.info-box .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.info-box .content h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-box .content p {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Action Buttons Group */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.action-buttons .btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.action-buttons .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.action-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.action-buttons .btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
}

.action-buttons .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
}

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

/* Program List Styles - Redesigned for reliable icon display */
.program-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list li {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list li .icon {
    width: 36px;
    min-width: 36px;
    height: 36px;
    background: rgba(197, 0, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-right: 16px;
    margin-top: 2px;
}

/* FontAwesome 6 solid icons require font-weight 900 */
.program-list li .icon i,
.program-list li .icon .fa,
.program-list li .icon .fas {
    font-size: 0.95rem;
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.program-list li .icon.hands-on {
    background: rgba(25, 135, 84, 0.12);
    color: var(--success-color);
}

.program-list li .icon.hands-on i,
.program-list li .icon.hands-on .fa,
.program-list li .icon.hands-on .fas {
    font-size: 1rem;
}

.program-list li span:not(.icon) {
    flex: 1;
    line-height: 1.5;
}

/* Card icon (header) - ensure FA6 solid icons render */
.content-card .card-icon i,
.content-card .card-icon .fa,
.content-card .card-icon .fas {
    font-weight: 900;
    font-style: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Faculty Grid for Inner Pages */
.faculty-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.faculty-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.faculty-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faculty-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 15px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.faculty-item h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.faculty-item small {
    color: var(--gray-600);
    font-size: 0.8rem;
}

/* Section Divider */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, transparent 100%);
    border: none;
    margin: 40px 0;
    max-width: 200px;
}

/* Tab Navigation for Inner Pages - Classic Tabs */
.inner-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 2px solid var(--gray-200);
}

.inner-tabs .tab-btn {
    padding: 15px 35px;
    border: none;
    background: transparent;
    border-radius: 0;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.inner-tabs .tab-btn:hover {
    color: var(--blue-color);
    background: rgba(var(--blue-color-rgb), 0.06);
}

.inner-tabs .tab-btn.active {
    background: transparent;
    color: var(--blue-color);
    border-bottom-color: var(--blue-color);
    box-shadow: none;
}

@media (max-width: 768px) {
    .inner-tabs {
        border-bottom: none;
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }
    
    .inner-tabs .tab-btn {
        width: 100%;
        justify-content: flex-start;
        border-bottom: none;
        border-left: 4px solid transparent;
        background: var(--white);
        border-radius: 8px;
        padding: 15px 20px;
        box-shadow: var(--shadow-sm);
        margin-bottom: 0;
    }

    .inner-tabs .tab-btn.active {
        border-left-color: var(--blue-color);
        background: var(--white);
        color: var(--blue-color);
    }
}

/* Stat Cards */
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-color);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.stat-card .label {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Timeline Style */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-300);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item h5 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-item .time {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Enhanced Course Cards for Agenda */
.course-card-enhanced {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.course-card-enhanced:hover {
    box-shadow: var(--shadow-md);
}

.course-card-enhanced .card-header-band {
    height: 4px;
    flex-shrink: 0;
}

.course-card-enhanced.band-green .card-header-band {
    background-color: var(--success-color);
}

.course-card-enhanced.band-red .card-header-band {
    background-color: var(--primary-color);
}

.course-card-enhanced.band-gray .card-header-band {
    background-color: var(--gray-600);
}

.course-card-enhanced .card-body {
    padding: 16px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-card-enhanced h4 {
    font-size: 1.25rem;
    line-height: 1.35;
    margin-bottom: 10px;
    flex-grow: 1;
    text-transform: uppercase
}

.course-card-enhanced h4 a {
    color: var(--blue-color);
}

.course-card-enhanced h4 a:hover {
    color: var(--primary-color);
}

.course-card-enhanced .course-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    margin-top: auto;
}

.course-card-enhanced .course-date .date-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
}

.course-card-enhanced .course-date .date-text {
    font-weight: 400;
    color: var(--secondary-color);
}

.course-card-enhanced .card-footer {
    padding: 10px 18px;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.course-card-enhanced .card-footer a {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enhanced Faculty Cards */
.faculty-card-enhanced {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.faculty-card-enhanced:hover {
    box-shadow: var(--shadow-md);
}

.faculty-card-enhanced .img-wrapper {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-100));
}

.faculty-card-enhanced .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.faculty-card-enhanced .faculty-info {
    padding: 20px;
    text-align: center;
}

.faculty-card-enhanced .faculty-info h5 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.faculty-card-enhanced .faculty-info h5 a:hover {
    color: var(--primary-color);
}

.faculty-card-enhanced .faculty-info .role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.faculty-card-enhanced .faculty-info .specialty {
    color: var(--gray-600);
    font-size: 0.85rem;
}

/* Enhanced Program Accordion */
.program-accordion .accordion-item {
    border: none;
    border-radius: var(--border-radius) !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.program-accordion .accordion-button {
    padding: 25px 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--secondary-color);
    background: var(--white);
}
.program-accordion .accordion-button > .fa {
    color: var(--blue-color);
}

.program-accordion .accordion-button-msk-icon > .fa {
    color: var(--primary-color);
}

.program-accordion .accordion-button-msk-icon:not(.collapsed) > .fa {
    color: #fff;
}

.program-accordion .accordion-button:not(.collapsed)>.fa{
    color: #fff;
}

.program-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.program-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.program-accordion .accordion-button::after {
    background-size: 1rem;
}

.program-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.program-accordion .accordion-body {
    padding: 25px 30px;
    background: var(--white);
}

.travel-getting-there-accordion {
    margin-bottom: 0;
}

.travel-getting-there-accordion .accordion-body .content-card:last-child {
    margin-bottom: 0;
}

/* Registration Page Styles */
.registration-cta-card {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 32px 40px;
    box-shadow: var(--shadow-sm);
}

.registration-cta-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.registration-cta-card a[href^="mailto"] {
    color: var(--primary-color);
    font-weight: 500;
}

.registration-cta-card a[href^="mailto"]:hover {
    text-decoration: underline;
}

.registration-info-card {
    border-left: 4px solid var(--blue-color);
}

.registration-info-card h4 {
    font-size: 1.1rem;
    color: var(--blue-color);
}

.registration-includes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-includes-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.registration-includes-list li i {
    position: absolute;
    left: 0;
    width: 18px;
    text-align: center;
}

.registration-bank-table th {
    width: 220px;
    font-weight: 600;
    color: var(--secondary-color);
    padding: 12px 16px;
    vertical-align: middle;
}

.registration-bank-table td {
    padding: 12px 16px;
}

.registration-bank-table code {
    background: var(--gray-100);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.95em;
}

.registration-footer a:hover {
    color: var(--primary-color) !important;
}

/* Registration Footer Cards - Şık link kartları */
.registration-footer-cards {
    margin-top: 2rem;
}

.registration-footer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.registration-footer-card i:first-child {
    font-size: 1.25rem;
    color: var(--primary-color);
    width: 28px;
    text-align: center;
}

.registration-footer-card span {
    flex: 1;
    font-weight: 500;
}

.registration-footer-card .fa-arrow-right {
    font-size: 0.85rem;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.registration-footer-card:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.registration-footer-card:hover .fa-arrow-right {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Hotel Cards */
.hotel-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.hotel-card h5 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.hotel-card .address {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.hotel-card .contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-right: 15px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Year Section Header */
.year-header {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.back-link:hover {
    color: var(--white);
    opacity: 1;
}

/* PDF Modal Styles */
.pdf-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdf-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 1000px;
    height: 90%;
    border-radius: var(--border-radius);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: zoomIn 0.3s ease;
}

.pdf-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-100);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.pdf-modal-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.1rem;
}

.pdf-close-btn {
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 0;
}

.pdf-close-btn:hover {
    color: var(--primary-color);
}

.pdf-frame {
    width: 100%;
    height: 100%;
    border: none;
    flex-grow: 1;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .inner-tabs {
        flex-direction: column;
    }

    .inner-tabs .tab-btn {
        width: 100%;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .content-card {
        padding: 20px;
    }

    .registration-cta-card {
        padding: 25px 20px;
    }

    .registration-cta-card .btn {
        width: 100%;
    }
}
