/*
 * Main Theme Styles for School Theme
 * Component-specific styles organized by section
 */

/* ==========================================================================
   HEADER & NAVIGATION STYLES
   ========================================================================== */

/* Top contact bar */
.top-contact-bar {
    background-color: #f8f9fa;
    color: #333;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
}

.top-contact-bar .contact-info {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
}

.top-contact-bar .contact-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-contact-bar .social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #ff6b35;
}

.top-contact-bar .contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-phone i {
    font-size: 0.9rem;
}

.contact-phone a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.top-contact-bar .contact-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-info {
    color: #666;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f8f9fa;
    color: #333;
    border-color: #ccc;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e55a2b;
    color: #fff;
}

.btn-secondary {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c82333;
    color: #fff;
}

/* Main header */
.site-header {
    background-color: #6c757d;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    padding: 20px 0;
}

.site-branding {
    flex: 0 0 auto;
}

.site-brand-container {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.site-logo img {
    max-height: 70px;
    width: auto;
    display: block;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.site-logo-text .site-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.3px;
    text-align: center;
}

.site-logo-text .site-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo-text .site-title a:hover {
    color: #ff6b35;
}

.site-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #e9ecef;
    margin: 2px 0 0 0;
    font-style: italic;
    opacity: 0.9;
}

/* Main navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 15px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: #fff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-text {
    font-size: 0.8rem;
    margin-top: 2px;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    text-transform: capitalize;
}

.nav-menu a:hover,
.nav-menu a:focus,
.nav-menu .current-menu-item > a {
    color: #fff;
    border-bottom-color: #ff6b35;
    background-color: #8b9499;
}

/* Dropdown menus */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #6c757d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 2px solid #ff6b35;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #8b9499;
    border-left: none;
    border-right: none;
    border-top: none;
}

.nav-menu .sub-menu a:hover {
    background-color: #ff6b35;
    color: #fff;
    border-bottom-color: #e55a2b;
}

/* WhatsApp button */
.header-whatsapp {
    flex: 0 0 auto;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    color: #fff;
    transform: translateY(-1px);
}

.whatsapp-btn i {
    font-size: 1.1rem;
}



/* ==========================================================================
   HERO SLIDER SECTION STYLES
   ========================================================================== */

.hero-slider-section {
    position: relative;
    height: 480px;
    max-height: 480px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    text-align: center;
}

.hero-slide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-slide-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slide-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slide-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Navigation arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-nav:hover {
    background: rgba(255, 107, 53, 0.9);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slide indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.hero-slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-indicator.active {
    background: #ff6b35;
    border-color: #ff6b35;
}

.hero-slider-indicator:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   ACADEMIC LEVELS SECTION
   ========================================================================== */

.academic-levels-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.academic-levels-grid {
    gap: 30px;
}

.academic-level-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.academic-level-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.level-image {
    height: 200px;
    overflow: hidden;
}

.level-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.academic-level-item:hover .level-image img {
    transform: scale(1.05);
}

.level-content {
    padding: 30px;
}

.level-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.level-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ==========================================================================
   NEWS SECTION STYLES
   ========================================================================== */

.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-grid {
    gap: 30px;
}

.news-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-thumbnail {
    height: 200px;
    overflow: hidden;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: #3498db;
}

.news-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #2980b9;
}

.news-more {
    margin-top: 50px;
}

/* ==========================================================================
   GALLERY PREVIEW STYLES
   ========================================================================== */

.gallery-preview-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-preview-grid {
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Gallery caption overlay */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Hover overlay effect */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Enhanced placeholder styling */
.gallery-item.placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.3s ease;
}

.gallery-item.placeholder:hover {
    transform: none;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #adb5bd;
}

.placeholder-image {
    text-align: center;
    color: #6c757d;
    padding: 20px;
    max-width: 200px;
}

.placeholder-image i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #adb5bd;
}

.placeholder-image span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.placeholder-help {
    font-size: 0.8rem !important;
    color: #6c757d !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    opacity: 0.8;
}

/* Animation delays for grid items */
.gallery-item[data-aos] {
    transition-delay: calc(var(--aos-delay, 0) * 1ms);
}

/* Lightbox styling improvements */
.gallery-item a[data-lightbox] {
    position: relative;
}

.gallery-item a[data-lightbox]::after {
    content: '\f065'; /* Font Awesome expand icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-item:hover a[data-lightbox]::after {
    opacity: 1;
    transform: scale(1);
}

/* Grid responsiveness for different column counts */
.gallery-preview-grid.columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-preview-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-preview-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-preview-grid.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gallery-preview-grid.columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .gallery-preview-grid.columns-3,
    .gallery-preview-grid.columns-4,
    .gallery-preview-grid.columns-5,
    .gallery-preview-grid.columns-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .placeholder-image {
        padding: 15px;
        max-width: 150px;
    }
    
    .placeholder-image i {
        font-size: 1.5rem;
    }
    
    .placeholder-help {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 480px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
    
    .placeholder-image {
        padding: 20px;
    }
}

.gallery-more {
    margin-top: 50px;
}

/* ==========================================================================
   QUICK ACTIONS SECTION
   ========================================================================== */

.quick-actions-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

.quick-actions-grid {
    gap: 30px;
}

.quick-action-item {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.quick-action-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3498db;
}

.action-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.action-description {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

.site-footer {
    background-color: #1a1a1a;
    color: #fff;
    margin-top: auto;
}

.footer-bottom {
    padding: 20px 0;
    background-color: #111;
    border-top: 1px solid #333;
}

.copyright-info {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
}

.copyright-info p {
    margin: 0;
    line-height: 1.5;
}

.copyright-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-info a:hover {
    color: #ff6b35;
}




/* ==========================================================================
   HOMEPAGE WIDGETS SECTION
   ========================================================================== */

.homepage-widgets-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.homepage-widget-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

/* ==========================================================================
   ACADEMIC PAGE TEMPLATES STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 80px 0 60px;
    position: relative;
}

.page-header::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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.breadcrumb {
    font-size: 1.1rem;
    color: #ccc;
}

.breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    margin: 0 10px;
    color: #666;
}

/* Page Content Section */
.page-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.academic-level-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Academic Hero Section */
.academic-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
}

.academic-hero-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
}

.academic-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.academic-hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.academic-hero-image {
    position: relative;
    overflow: hidden;
}

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

.academic-hero:hover .academic-hero-image img {
    transform: scale(1.05);
}

/* Academic Programs */
.academic-programs {
    padding: 80px 60px;
}

.academic-programs h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.academic-programs h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.programs-grid {
    gap: 30px;
}

.program-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.program-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    transition: transform 0.3s ease;
}

.program-item:hover .program-icon {
    transform: scale(1.1);
}

.program-item h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.program-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Academic Facilities */
.academic-facilities {
    padding: 60px;
    background-color: #f8f9fa;
}

.academic-facilities h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.academic-facilities h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a, #333);
    border-radius: 2px;
}

.facilities-grid {
    gap: 30px;
}

.facility-item {
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-left: 4px solid #ff6b35;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.facility-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Training Partnerships */
.training-partnerships {
    padding: 60px;
}

.training-partnerships h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
}

.training-partnerships h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.partnerships-grid {
    gap: 30px;
}

.partnership-item {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partnership-item:hover {
    background-color: #fff;
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnership-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.partnership-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Academic Achievements */
.academic-achievements {
    padding: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

.academic-achievements h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
}

.academic-achievements h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    border-radius: 2px;
}

.achievements-grid {
    gap: 40px;
}

.achievement-item {
    text-align: center;
    padding: 40px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: #ff6b35;
    transform: translateY(-10px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    line-height: 1;
}

.achievement-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

/* Page Custom Content */
.page-custom-content {
    padding: 60px;
    border-top: 1px solid #eee;
}

.page-custom-content h1,
.page-custom-content h2,
.page-custom-content h3,
.page-custom-content h4,
.page-custom-content h5,
.page-custom-content h6 {
    color: #1a1a1a;
}

.page-custom-content a {
    color: #ff6b35;
}

.page-custom-content a:hover {
    color: #e55a2b;
}

/* ==========================================================================
   HAKKIMIZDA PAGE STYLES
   ========================================================================== */

/* About Page Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::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 100 100"><defs><pattern id="about-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
    opacity: 0.1;
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 10px;
    line-height: 1.6;
    color: #e9ecef;
    opacity: 0.9;
}

/* About Content Section */
.about-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-section {
    margin-bottom: 80px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    width: 100%;
    height: 100%;
}

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

.image-wrapper:hover img {
    transform: scale(1.05);
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mission-card,
.vision-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-card .card-title {
    color: #ff6b35;
}

.vision-card .card-title {
    color: #1a1a1a;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    flex-grow: 1;
}

/* Values Section */
.values-section {
    text-align: center;
}

.values-section .section-header {
    margin-bottom: 60px;
}

.values-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.values-section .section-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.value-item {
    background: #fff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    flex-grow: 1;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    padding: 60px 40px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ==========================================================================
   SINGLE POST STYLES
   ========================================================================== */

/* Single Post Layout */
.single-post-section {
    background-color: #fff;
    padding: 40px 0;
}

.single-post .content-layout {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
}

.single-post .content-layout.has-sidebar {
    grid-template-columns: 2fr 1fr;
}

.single-post .main-content {
    min-width: 0; /* Prevent overflow */
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 30px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-item {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: #ff6b35;
}

.breadcrumb-separator {
    color: #ccc;
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}

/* Single Post Article */
.single-post-article {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Entry Header */
.entry-header {
    margin-bottom: 30px;
}

.entry-header .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Post Meta */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.entry-meta > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-categories .post-category {
    background-color: #ff6b35;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.post-categories .post-category:hover {
    background-color: #e55a2b;
}

.post-date time {
    color: #666;
    font-weight: 500;
}

.post-author .author-label {
    color: #999;
    font-size: 0.85rem;
}

.post-author .author-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.post-author .author-link:hover {
    color: #ff6b35;
}

.post-comments .comments-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-comments .comments-link:hover {
    color: #ff6b35;
}

/* Featured Image */
.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail .featured-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.image-caption {
    padding: 10px 15px;
    background-color: #f8f9fa;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
    border-radius: 0 0 8px 8px;
}

/* Post Video */
.post-video {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.post-video iframe {
    width: 100%;
    border-radius: 8px;
}

/* Entry Content */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #1a1a1a;
    margin: 30px 0 20px 0;
    font-weight: 600;
}

.entry-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 10px;
}

.entry-content h3 {
    font-size: 1.6rem;
}

.entry-content h4 {
    font-size: 1.3rem;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid #ff6b35;
    padding: 20px 25px;
    margin: 30px 0;
    font-size: 1.1rem;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.entry-content code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e74c3c;
}

.entry-content pre {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.entry-content pre code {
    background: none;
    padding: 0;
    color: inherit;
}

/* Page Links */
.page-links {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 30px 0;
    font-weight: 500;
}

.page-links a {
    display: inline-block;
    padding: 8px 12px;
    background-color: #ff6b35;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.page-links a:hover {
    background-color: #e55a2b;
}

.page-links .current {
    padding: 8px 12px;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 4px;
}

/* Entry Footer */
.entry-footer {
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 40px;
}

/* Post Tags */
.post-tags {
    margin-bottom: 25px;
}

.tags-label {
    color: #666;
    font-weight: 500;
    margin-right: 10px;
}

.post-tags a {
    display: inline-block;
    background-color: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background-color: #ff6b35;
    color: #fff;
}

/* Share Buttons */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-label {
    color: #666;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.share-button.facebook {
    background-color: #3b5998;
    color: #fff;
}

.share-button.facebook:hover {
    background-color: #2d4373;
    transform: translateY(-2px);
}

.share-button.twitter {
    background-color: #1da1f2;
    color: #fff;
}

.share-button.twitter:hover {
    background-color: #0d8bd9;
    transform: translateY(-2px);
}

.share-button.whatsapp {
    background-color: #25d366;
    color: #fff;
}

.share-button.whatsapp:hover {
    background-color: #1aab50;
    transform: translateY(-2px);
}

.share-button.email {
    background-color: #34495e;
    color: #fff;
}

.share-button.email:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

/* Post Navigation Section */
.post-navigation-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.post-nav-grid {
    gap: 30px;
}

.nav-link {
    display: block;
    padding: 25px;
    background-color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.nav-link:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-direction {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.nav-next .nav-direction {
    justify-content: flex-end;
    text-align: right;
}

.nav-title {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
    display: block;
}

.nav-next .nav-title {
    text-align: right;
}

.nav-empty {
    /* Empty space for alignment when no previous/next post */
}

/* Author Bio Section */
.author-bio-section {
    background-color: #fff;
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.author-bio {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid #ff6b35;
}

.author-info {
    flex: 1;
}

.author-name {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Related Posts Section */
.related-posts-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.related-posts-grid {
    gap: 30px;
    margin-top: 40px;
}

.related-post-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-post-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.related-post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 25px;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.related-post-meta time {
    color: #666;
}

.related-post-category a {
    background-color: #ff6b35;
    color: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.75rem;
}

.related-post-title {
    margin-bottom: 12px;
}

.related-post-title a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: #ff6b35;
}

.related-post-excerpt {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.related-post-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-post-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Comments Section */
.comments-section {
    background-color: #fff;
    padding: 40px 0;
}

/* Sidebar */
.sidebar {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar .widget {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sidebar .widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar .widget-title {
    color: #1a1a1a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .widget li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.sidebar .widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar .widget a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar .widget a:hover {
    color: #ff6b35;
}

/* ==========================================================================
   TECHNOLOGY HIGH SCHOOL PAGE STYLES
   ========================================================================== */

/* Technology Page Layout */
.teknoloji-lisesi-page {
    background-color: #fff;
}

/* Technology Programs Section */
.technology-programs-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.programs-grid {
    gap: 30px;
    margin-top: 40px;
}

.program-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.program-item:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.program-icon i {
    font-size: 2rem;
    color: #fff;
}

.program-item:hover .program-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.program-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Success Stories Section */
.success-stories-section {
    background-color: #fff;
    padding: 60px 0;
}

.success-grid {
    gap: 30px;
    margin-top: 40px;
}

.success-item {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b35;
    position: relative;
    overflow: hidden;
}

.success-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #e55a2b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.success-item:hover::before {
    transform: scaleX(1);
}

.success-item:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.success-content {
    position: relative;
    z-index: 1;
}

.success-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.success-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.success-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 0;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: #e9ecef;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
}

.cta-buttons .btn-primary {
    background-color: #ff6b35;
    border: 2px solid #ff6b35;
}

.cta-buttons .btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background-color: #fff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   HEALTH VOCATIONAL HIGH SCHOOL PAGE STYLES
   ========================================================================== */

/* Health Page Layout */
.saglik-meslek-lisesi-page {
    background-color: #fff;
}

/* Health Programs Section */
.health-programs-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.health-programs-section .programs-grid {
    gap: 30px;
    margin-top: 40px;
}

.health-programs-section .program-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.health-programs-section .program-item:hover {
    transform: translateY(-10px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.health-programs-section .program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.health-programs-section .program-icon i {
    font-size: 2rem;
    color: #fff;
}

.health-programs-section .program-item:hover .program-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.health-programs-section .program-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.health-programs-section .program-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Health-specific Success Stories Section Styling */
.saglik-meslek-lisesi-page .success-stories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.saglik-meslek-lisesi-page .success-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 5px solid #27ae60;
    position: relative;
    overflow: hidden;
}

.saglik-meslek-lisesi-page .success-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.saglik-meslek-lisesi-page .success-item:hover::before {
    transform: scaleX(1);
}

.saglik-meslek-lisesi-page .success-item:hover {
    transform: translateY(-5px);
    background-color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left-color: #ff6b35;
}

.saglik-meslek-lisesi-page .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #27ae60;
    line-height: 1;
    transition: color 0.3s ease;
}

.saglik-meslek-lisesi-page .success-item:hover .stat-number {
    color: #ff6b35;
}

/* Health-specific Call-to-Action Section */
.saglik-meslek-lisesi-page .cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 80px 0;
    color: #fff;
}

.saglik-meslek-lisesi-page .cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

.saglik-meslek-lisesi-page .cta-description {
    font-size: 1.2rem;
    color: #e8f5e8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.saglik-meslek-lisesi-page .cta-buttons .btn-primary {
    background-color: #fff;
    color: #27ae60;
    border: 2px solid #fff;
}

.saglik-meslek-lisesi-page .cta-buttons .btn-primary:hover {
    background-color: #f8f9fa;
    color: #1e7e34;
    border-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.saglik-meslek-lisesi-page .cta-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.saglik-meslek-lisesi-page .cta-buttons .btn-secondary:hover {
    background-color: #fff;
    color: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Health-specific Academic Levels Section */
.saglik-meslek-lisesi-page #saglik-academic-levels {
    background-color: #fff;
}

.saglik-meslek-lisesi-page .academic-level-item {
    background-color: #fff;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.saglik-meslek-lisesi-page .academic-level-item:hover {
    border-color: #27ae60;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.1);
}

/* Mobile Responsive Design for Health Page */
@media (max-width: 1024px) {
    .health-programs-section .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .health-programs-section {
        padding: 40px 0;
    }
    
    .saglik-meslek-lisesi-page .cta-section {
        padding: 60px 0;
    }
    
    .health-programs-section .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .health-programs-section .program-item {
        padding: 30px 20px;
    }
    
    .saglik-meslek-lisesi-page .success-item {
        padding: 30px 20px;
    }
    
    .saglik-meslek-lisesi-page .cta-title {
        font-size: 2.2rem;
    }
    
    .saglik-meslek-lisesi-page .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .health-programs-section .program-icon {
        width: 60px;
        height: 60px;
    }
    
    .health-programs-section .program-icon i {
        font-size: 1.5rem;
    }
    
    .health-programs-section .program-title {
        font-size: 1.2rem;
    }
    
    .saglik-meslek-lisesi-page .success-title {
        font-size: 1.1rem;
    }
    
    .saglik-meslek-lisesi-page .stat-number {
        font-size: 2rem;
    }
    
    .saglik-meslek-lisesi-page .cta-title {
        font-size: 1.8rem;
    }
    
    .saglik-meslek-lisesi-page .cta-description {
        font-size: 1rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact page container */
.contact-page {
    background-color: #f8f9fa;
}

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    padding: 80px 0 60px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::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 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.contact-hero-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.contact-hero-section .section-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.contact-grid {
    gap: 60px;
    align-items: flex-start;
}

/* Contact Form Column */
.contact-form-column {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-form-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-form-wrapper .form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-wrapper .form-title i {
    color: #ff6b35;
    font-size: 1.8rem;
}

.contact-form-wrapper .form-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Contact Form 7 Styling */
.contact-form .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form .wpcf7-form-control-wrap {
    position: relative;
    width: 100%;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form .wpcf7-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.contact-form .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #e55a2b 0%, #d4491f 100%);
}

.contact-form-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.contact-form-placeholder p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Information Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* WhatsApp Section */
.contact-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-whatsapp::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.whatsapp-icon {
    font-size: 3rem;
    color: #fff;
}

.whatsapp-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.whatsapp-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #25d366;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #128c7e;
}

.whatsapp-button i {
    font-size: 1.3rem;
}

/* Contact Details */
.contact-details {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.details-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
}

.details-title i {
    color: #ff6b35;
    font-size: 1.6rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:hover {
    background-color: #f8f9fa;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.contact-value {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-value a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Map Section */
.contact-map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-map-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-map-section .section-title i {
    color: #ff6b35;
    font-size: 2.2rem;
}

.contact-map-section .section-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    background-color: #fff;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    padding: 80px 20px;
    text-align: center;
    color: #6c757d;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.map-placeholder p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.contact-cta-section .cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta-section .cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-cta-section .btn-lg {
    padding: 20px 40px;
    font-size: 1.2rem;
}

.contact-cta-section .btn-primary {
    background-color: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.contact-cta-section .btn-primary:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.contact-cta-section .btn-secondary {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
}

.contact-cta-section .btn-secondary:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 40px;
    }
    
    .contact-form-column,
    .contact-details {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-hero-section .section-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-section .section-description {
        font-size: 1.1rem;
    }
    
    .contact-content-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-column,
    .contact-details {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper .form-title {
        font-size: 1.6rem;
    }
    
    .whatsapp-title {
        font-size: 1.5rem;
    }
    
    .details-title {
        font-size: 1.5rem;
    }
    
    .contact-map-section {
        padding: 60px 0;
    }
    
    .contact-map-section .section-title {
        font-size: 2rem;
    }
    
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-section .cta-title {
        font-size: 2.2rem;
    }
    
    .contact-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta-section .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        padding: 40px 0 30px;
    }
    
    .contact-hero-section .section-title {
        font-size: 2rem;
    }
    
    .contact-hero-section .section-description {
        font-size: 1rem;
    }
    
    .contact-content-section {
        padding: 40px 0;
    }
    
    .contact-form-column,
    .contact-details {
        padding: 25px 15px;
    }
    
    .contact-whatsapp {
        padding: 30px 20px;
    }
    
    .whatsapp-icon {
        font-size: 2.5rem;
    }
    
    .whatsapp-title {
        font-size: 1.3rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .map-wrapper,
    .map-placeholder {
        height: 300px;
    }
    
    .contact-cta-section .cta-title {
        font-size: 1.8rem;
    }
    
    .contact-cta-section .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   ELEGANT NEWS PAGE STYLES
   ========================================================================== */

/* News Page Hero Section */
.news-hero-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.news-hero-section::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 100 100"><defs><pattern id="news-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23news-grid)"/></svg>');
    opacity: 0.1;
}

.news-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Additional styles for better visual hierarchy */
.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

/* Enhanced breadcrumb styles */
.breadcrumb-nav {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #e9ecef;
}

.breadcrumb-nav a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 10px;
    color: #adb5bd;
}

.news-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.news-hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 10px;
    line-height: 1.6;
    color: #e9ecef;
    opacity: 0.9;
}

/* News Content Section */
.news-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

/* Featured News Section */
.featured-news-section {
    margin-bottom: 80px;
}

.featured-news-section .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: center;
}

.title-icon {
    font-size: 2rem;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-news-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.featured-news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-main {
    grid-row: span 2;
}

.featured-side {
    display: flex;
    flex-direction: row;
    height: fit-content;
}

.featured-side .featured-thumbnail {
    flex: 0 0 40%;
    height: 200px;
}

.featured-side .featured-content {
    flex: 1;
    padding: 25px;
}

.featured-thumbnail {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.featured-main .featured-thumbnail {
    height: 400px;
}

.featured-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news-item:hover .featured-thumbnail img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.featured-content {
    padding: 30px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.featured-category a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-main .featured-title {
    font-size: 2.2rem;
}

.featured-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #ff6b35;
}

.featured-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.featured-read-more {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    margin-top: 20px;
}

.featured-read-more:hover {
    background: #e55a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Filters Section */
.news-filters-section {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.filter-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
}

/* Search Form */
.search-form {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.search-form:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.search-field {
    padding: 12px 20px;
    border: none;
    background: transparent;
    outline: none;
    width: 250px;
    font-size: 0.9rem;
}

.search-submit {
    padding: 12px 20px;
    background: #ff6b35;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-submit:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

.filter-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* All News Section */
.all-news-section {
    margin-top: 60px;
}

.news-stats {
    margin-bottom: 30px;
    text-align: center;
}

.total-posts {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media screen and (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

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

.news-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.news-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: #ff6b35;
}

.news-card-excerpt {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.news-card-link {
    display: inline-block;
    padding: 12px 25px;
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #ff6b35;
    text-align: center;
    margin-top: auto;
    align-self: flex-start;
}

.news-card-link:hover {
    background: #e55a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.read-icon {
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 107, 53, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.news-card-category a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   ERROR 404 PAGE STYLES
   ========================================================================== */

/* Error Hero Section */
.error-hero-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.error-hero-section::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 100 100"><defs><pattern id="error-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ff6b35" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23error-grid)"/></svg>');
    opacity: 0.1;
}

.error-number {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff6b35;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.error-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.error-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #e9ecef;
    opacity: 0.9;
}

.error-actions {
    margin-top: 30px;
}

.error-actions .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Error Content Section */
.error-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.error-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.error-search-section {
    text-align: center;
    margin-bottom: 60px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.error-search-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.error-search-section p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-search-form {
    max-width: 500px;
    margin: 0 auto;
}

.error-search-form .search-form {
    display: flex;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.error-search-form .search-form:focus-within {
    border-color: #ff6b35;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.error-search-form .search-field {
    padding: 15px 20px;
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 1rem;
}

.error-search-form .search-submit {
    padding: 15px 25px;
    background: #ff6b35;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.error-search-form .search-submit:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Error Content Grid */
.error-content-grid {
    gap: 30px;
    margin-bottom: 60px;
}

.error-section {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.error-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.error-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
    padding-bottom: 10px;
}

.error-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff6b35;
    border-radius: 3px;
}

.popular-pages-list,
.academic-levels-list,
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popular-pages-list li,
.academic-levels-list li,
.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f3f5;
}

.popular-pages-list li:last-child,
.academic-levels-list li:last-child,
.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-pages-list a,
.academic-levels-list a,
.recent-posts-list a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.popular-pages-list a:hover,
.academic-levels-list a:hover,
.recent-posts-list a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.recent-posts-list time {
    display: block;
    font-size: 0.85rem;
    color: #adb5bd;
    margin-top: 5px;
}

.default-pages-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.default-pages-list li {
    margin-bottom: 15px;
}

.default-pages-list a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.default-pages-list a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Error Contact Section */
.error-contact-section {
    text-align: center;
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.error-contact-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.error-contact-section p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options {
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-option h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-option p {
    margin-bottom: 0;
}

.contact-option a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-option a:hover {
    color: #e55a2b;
    text-decoration: underline;
}


.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid #f8f9fa;
}

.news-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.author-avatar {
    font-size: 1.2rem;
}

.news-card-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-card-stats span {
    font-size: 0.85rem;
    color: #7f8c8d;
}

.btn-primary {
    background-color: #ff6b35;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #e55a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}


.link-arrow {
    transition: transform 0.3s ease;
}

.news-card-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Pagination */
.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

.news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #fff;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.news-pagination .page-numbers:hover,
.news-pagination .page-numbers.current {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

.nav-icon {
    font-size: 0.9rem;
}

/* No News Found */
.no-news-found {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.no-news-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.no-news-found h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.no-news-found p {
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for News Page */
@media (max-width: 1024px) {
    .featured-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-side {
        flex-direction: column;
    }
    
    .featured-side .featured-thumbnail {
        flex: none;
        height: 200px;
    }
    
    .filters-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-left,
    .filter-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .news-hero-title {
        font-size: 2.5rem;
    }
    
    .news-hero-description {
        font-size: 1.1rem;
    }
    
    .featured-news-section .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .search-field {
        width: 200px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .filter-left {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .filter-right {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .news-hero-title {
        font-size: 2rem;
    }
    
    .featured-main .featured-title {
        font-size: 1.6rem;
    }
    
    .featured-title {
        font-size: 1.4rem;
    }
    
    .search-field {
        width: 150px;
    }
    
    .news-content-section {
        padding: 40px 0;
    }
    
    .featured-news-section {
        margin-bottom: 40px;
    }
}







