/* ========================================
   Pages CSS - Hakkımızda, Blog, SSS
   ======================================== */

/* Base Page Wrapper */
.realestate-page-wrapper {
    min-height: 60vh;
    padding-bottom: 60px;
}

/* ========================================
   Hero Section
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 50%, #0b3d34 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(188, 118, 54, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Breadcrumb */
.page-breadcrumb {
    margin-bottom: 20px;
}

.page-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.page-breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: #bc7636;
}

.page-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.page-breadcrumb li.active {
    color: #fff;
}

/* Page Title */
.page-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.page-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Meta (for blog posts) */
.page-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.page-hero-meta i {
    color: #bc7636;
}

/* ========================================
   Content Section
   ======================================== */
.page-content-section {
    padding: 60px 0;
    background: #fff;
}

/* Blog detay: hero kaldırıldı, sayfa 60px üstten başlasın */
.page-blog-single {
    padding-top: 60px;
}

.page-content-wrapper {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

/* Page Video - Full Width (görselin altında) */
.page-video-fullwidth {
    width: 100vw;
    max-width: 100vw;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.page-video-fullwidth .video-container {
    width: 100%;
}

.page-video-fullwidth .video-wrapper {
    border-radius: 0;
}

/* Page Video - Inline (içerik genişliğinde, ortalı) */
.page-video-inline {
    width: 100%;
    margin: 40px auto;
}

.page-video-inline .video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.page-video-inline .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.page-video-inline .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}

/* Page Gallery */
.page-gallery {
    margin-bottom: 40px;
}

/* Featured Image (Single) */
.page-featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Images Grid (Multiple) */
.page-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.page-image-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.page-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-image-item a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

/* 2 görsel için düzen */
.page-images-grid:has(.page-image-item:nth-child(2):last-child) {
    grid-template-columns: repeat(2, 1fr);
}

/* 1 görsel için tam genişlik */
.page-images-grid:has(.page-image-item:only-child) {
    grid-template-columns: 1fr;
}

.page-images-grid:has(.page-image-item:only-child) .page-image-item {
    aspect-ratio: 16/9;
}

/* Page Content */
.page-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.page-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0b3d34;
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b3d34;
    margin: 32px 0 16px;
}

.page-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #070026;
    margin: 28px 0 14px;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content a {
    color: #bc7636;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #0b3d34;
    text-decoration: underline;
}

.page-content blockquote {
    border-left: 4px solid #bc7636;
    padding: 20px 24px;
    background: #f8faf9;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-content table th,
.page-content table td {
    padding: 12px 16px;
    border: 1px solid #e5ebe9;
    text-align: left;
}

.page-content table th {
    background: #0b3d34;
    color: #fff;
    font-weight: 600;
}

.page-content table tr:nth-child(even) {
    background: #f8faf9;
}

/* Page Meta */
.page-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid #e5ebe9;
    flex-wrap: wrap;
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
}

.page-meta i {
    color: #0b3d34;
}

/* Update Info (for legal pages) */
.page-update-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #f0f5f4;
    border-radius: 10px;
    margin-top: 40px;
    color: #0b3d34;
    font-size: 0.9rem;
}

.page-update-info i {
    color: #bc7636;
}

/* ========================================
   Blog Grid
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f0f5f4;
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 100%);
}

.blog-card-placeholder i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #bc7636;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 0.8rem;
}

.blog-card-meta i {
    font-size: 0.75rem;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #0b3d34;
}

.blog-card-excerpt {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #bc7636;
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-card-read-more {
    gap: 12px;
}

/* ========================================
   Pagination
   ======================================== */
.page-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.page-pagination .pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5ebe9;
    color: #070026;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-pagination .page-item .page-link:hover {
    background: #0b3d34;
    border-color: #0b3d34;
    color: #fff;
}

.page-pagination .page-item.active .page-link {
    background: #0b3d34;
    border-color: #0b3d34;
    color: #fff;
}

/* ========================================
   FAQ Accordion
   ======================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5ebe9;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #0b3d34;
    box-shadow: 0 4px 20px rgba(11, 61, 52, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8faf9;
}

.faq-question:not(.collapsed) {
    background: #0b3d34;
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #070026;
    line-height: 1.4;
    flex: 1;
}

.faq-question:not(.collapsed) .faq-question-text {
    color: #fff;
}

.faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f5f4;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
}

.faq-question:not(.collapsed) .faq-icon {
    background: rgba(255, 255, 255, 0.15);
}

.faq-icon i {
    font-size: 0.9rem;
    color: #0b3d34;
    transition: all 0.3s ease;
    position: absolute;
}

.faq-question:not(.collapsed) .faq-icon i {
    color: #fff;
}

.faq-icon .fa-plus {
    opacity: 1;
}

.faq-icon .fa-minus {
    opacity: 0;
}

.faq-question:not(.collapsed) .faq-icon .fa-plus {
    opacity: 0;
}

.faq-question:not(.collapsed) .faq-icon .fa-minus {
    opacity: 1;
}

.faq-answer {
    border-top: 1px solid #e5ebe9;
}

.faq-answer-content {
    padding: 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Share Buttons
   ======================================== */
.page-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid #e5ebe9;
}

.share-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.share-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #000;
}

.share-linkedin {
    background: #0a66c2;
}

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

/* Page Navigation */
.page-navigation {
    margin-top: 30px;
}

.page-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-navigation .btn-outline-primary {
    color: #0b3d34;
    border-color: #0b3d34;
    background: transparent;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-navigation .btn-outline-primary:hover {
    background: #0b3d34;
    color: #fff;
}

/* ========================================
   Legal Pages Grid
   ======================================== */
.legal-pages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.legal-page-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: #fff;
    border: 1px solid #e5ebe9;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-page-card:hover {
    border-color: #0b3d34;
    box-shadow: 0 8px 30px rgba(11, 61, 52, 0.1);
    transform: translateY(-4px);
}

.legal-page-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 100%);
    border-radius: 14px;
    flex-shrink: 0;
}

.legal-page-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.legal-page-content {
    flex: 1;
    min-width: 0;
}

.legal-page-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.legal-page-card:hover .legal-page-title {
    color: #0b3d34;
}

.legal-page-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.legal-page-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #bc7636;
    transition: gap 0.3s ease;
}

.legal-page-card:hover .legal-page-link {
    gap: 10px;
}

.legal-page-link i {
    font-size: 0.8rem;
}

/* ========================================
   Empty State
   ======================================== */
.page-about .empty-state,
.page-blogs .empty-state,
.page-faq .empty-state,
.page-legal-list .empty-state {
    text-align: center;
    padding: 80px 40px;
    background: #f8faf9;
    border-radius: 20px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1199px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .page-hero {
        padding: 50px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-content-section {
        padding: 40px 0;
    }
}

@media (max-width: 991px) {
    .page-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-excerpt {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .legal-pages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .legal-page-card {
        padding: 20px;
    }
    
    .page-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .page-image-item {
        aspect-ratio: 16/9;
    }
    
    .page-content-section {
        padding: 30px 0;
    }
    
    .page-content {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 20px;
    }
    
    .page-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-hero-meta {
        gap: 12px;
    }
    
    .page-hero-meta span {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-breadcrumb li {
        font-size: 0.8rem;
    }
    
    .blog-card-body {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 1.05rem;
    }
    
    .page-pagination .page-item .page-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* ========================================
   Premium About Page Styles
   ======================================== */
.page-about-breadcrumb {
    background: #f8faf9;
    padding: 20px 0;
    border-bottom: 1px solid #e5ebe9;
}

.page-about-premium {
    padding: 80px 0;
    background: #fff;
}

.page-about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.page-about-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-about-description {
    font-size: 1.15rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Statistics Section */
.page-about-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 220px;
    border: 1px solid rgba(11, 61, 52, 0.08);
}

.page-stat-badge:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(11, 61, 52, 0.15);
    border-color: rgba(11, 61, 52, 0.15);
}

.stat-content {
    width: 100%;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0b3d34;
    margin: 0 0 8px 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ebd6b1 0%, #bc7636 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

/* Gallery Section */
.page-about-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
}

.about-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.about-gallery-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-gallery-item {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 190px;
}

.page-about-gallery-simple {
    margin-bottom: 60px;
}

/* Text Content */
.page-about-text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.page-about-text-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0b3d34;
    margin: 40px 0 20px;
}

.page-about-text-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b3d34;
    margin: 32px 0 16px;
}

.page-about-text-content p {
    margin-bottom: 20px;
}

.page-about-text-content ul,
.page-about-text-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.page-about-text-content li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .page-about-title {
        font-size: 2.25rem;
    }
    
    .page-about-description {
        font-size: 1.05rem;
    }
    
    .page-about-gallery {
        grid-template-columns: 1fr;
    }
    
    .about-gallery-main img {
        min-height: 300px;
    }
    
    .about-gallery-side {
        flex-direction: row;
    }
    
    .about-gallery-item {
        flex: 1;
    }
    
    .about-gallery-item img {
        min-height: 200px;
    }
    
    .page-about-stats {
        gap: 16px;
    }
    
    .page-stat-badge {
        min-width: 180px;
        padding: 28px 32px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .page-about-premium {
        padding: 50px 0;
    }
    
    .page-about-header {
        margin-bottom: 40px;
    }
    
    .page-about-title {
        font-size: 1.75rem;
    }
    
    .page-about-description {
        font-size: 1rem;
    }
    
    .page-about-stats {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .page-stat-badge {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 28px 32px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .page-about-gallery {
        margin-bottom: 40px;
    }
    
    .about-gallery-side {
        flex-direction: column;
    }
    
    .about-gallery-item img {
        min-height: 150px;
    }
    
    .page-about-text-content {
        font-size: 1rem;
    }
}

/* ========================================
   Premium Blog Page Styles
   ======================================== */
.page-blogs-breadcrumb {
    background: #f8faf9;
    padding: 20px 0;
    border-bottom: 1px solid #e5ebe9;
}

.page-blogs-content {
    padding: 60px 0;
    background: #fff;
}

/* Blog Page Header */
.blog-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #070026;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Featured Article */
.blog-featured-section {
    margin-bottom: 60px;
}

.blog-featured-article {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.blog-featured-article:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.featured-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-article-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

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

.blog-featured-article:hover .featured-article-image img {
    transform: scale(1.05);
}

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.featured-category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0b3d34;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-article-content {
    padding: 32px;
}

.featured-article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.featured-article-date i {
    color: #0b3d34;
}

.featured-article-title {
    font-size: 2rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 16px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-featured-article:hover .featured-article-title {
    color: #0b3d34;
}

.featured-article-excerpt {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.featured-article-author {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b3d34;
    font-weight: 600;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.blog-featured-article:hover .featured-read-more {
    gap: 12px;
}

.featured-read-more i {
    font-size: 0.9rem;
}

/* Recent Articles Sidebar */
.blog-recent-sidebar {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.recent-sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 24px 0;
}

.recent-articles-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.recent-article-item {
    border-bottom: 1px solid #e5ebe9;
    padding-bottom: 24px;
}

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

.recent-article-link {
    display: flex;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.recent-article-link:hover {
    transform: translateX(4px);
}

.recent-article-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recent-article-link:hover .recent-article-thumb img {
    transform: scale(1.1);
}

.recent-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-thumb-placeholder i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.recent-article-info {
    flex: 1;
    min-width: 0;
}

.recent-article-title {
    font-size: 1rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.recent-article-link:hover .recent-article-title {
    color: #0b3d34;
}

.recent-article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.recent-article-date i {
    color: #0b3d34;
    font-size: 0.75rem;
}

.recent-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0b3d34;
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap 0.3s ease;
}

.recent-article-link:hover .recent-read-more {
    gap: 10px;
}

.recent-read-more i {
    font-size: 0.75rem;
}

/* Latest Articles Section */
.blog-latest-section {
    margin-top: 60px;
}

.latest-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 40px 0;
    letter-spacing: -0.02em;
}

.latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.latest-article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.latest-article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.latest-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.latest-article-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.latest-article-card:hover .latest-article-image img {
    transform: scale(1.08);
}

.latest-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b3d34 0%, #0a4d42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.latest-image-placeholder i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.latest-category-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #0b3d34;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.latest-article-content {
    padding: 24px;
}

.latest-article-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #070026;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.latest-article-card:hover .latest-article-title {
    color: #0b3d34;
}

.latest-article-excerpt {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.latest-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b3d34;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.latest-article-card:hover .latest-read-more {
    gap: 12px;
}

.latest-read-more i {
    font-size: 0.8rem;
}

/* Standard Grid (for other pages) */
.blog-standard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive */
@media (max-width: 1199px) {
    .latest-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .blog-page-title {
        font-size: 2.5rem;
    }
    
    .blog-featured-section .row {
        flex-direction: column;
    }
    
    .blog-recent-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .latest-articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-standard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .page-blogs-content {
        padding: 40px 0;
    }
    
    .blog-page-header {
        margin-bottom: 30px;
    }
    
    .blog-page-title {
        font-size: 2rem;
    }
    
    .blog-featured-section {
        margin-bottom: 40px;
    }
    
    .featured-article-image {
        height: 280px;
    }
    
    .featured-article-content {
        padding: 24px;
    }
    
    .featured-article-title {
        font-size: 1.5rem;
    }
    
    .blog-recent-sidebar {
        padding: 24px;
    }
    
    .blog-latest-section {
        margin-top: 40px;
    }
    
    .latest-section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .latest-articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-standard-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-article-image {
        height: 200px;
    }
}
