/*
Theme Name: Aqarat Plus
Theme URI: https://example.com/aqari-theme
Author: Mustafa Mohammed
Author URI: https://wa.me/201007259136
Description: A professional multilingual real estate WordPress theme for brokers (Arabic/English)
Version: 2.1.0
Requires at least: 5.8
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: aqari
Domain Path: /languages
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Designer: Mustafa Mohammed
Designer WhatsApp: 01007259136
*/

/*=================================
  CSS Variables
=================================*/
:root {
    /* Primary Colors */
    --primary-color: #45204c;
    --primary-light: #d89567;
    --primary-dark: #a05f35;
    --primary-darker: #8b4e28;

    /* Secondary Colors */
    --secondary-color: #df7e3a;
    --secondary-light: #2d5080;
    --secondary-dark: #152a45;
    --secondary-darker: #0d1a2b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #C17A4A 0%, #a05f35 100%);
    --gradient-secondary: linear-gradient(135deg, #1E3A5F 0%, #152a45 100%);
    --gradient-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));

    /* Text Colors */
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #999;
    --text-dark: #1a1a1a;

    /* Background Colors */
    --bg-color: #f5f7fa;
    --bg-light: #fafbfc;
    --bg-dark: #e8edf3;
    --white: #fff;

    /* Border & Divider */
    --border-color: #eee;
    --border-light: #f5f5f5;
    --divider-color: rgba(0, 0, 0, 0.08);

    /* Status Colors */
    --success-color: #25D366;
    --info-color: #3498db;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 20px;

    /* Border Radius */
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 8px 30px rgba(193, 122, 74, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-family: 'Tajawal', sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
    --spacing-2xl: 80px;
}

/*=================================
  Reset & Base Styles
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/*=================================
  Typography
=================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*=================================
  Layout
=================================*/
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

/*=================================
  Buttons
=================================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    gap: 8px;
    line-height: 1;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-darker);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-darker);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--success-color);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebc57;
    color: var(--white);
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
}

.btn-call:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/*=================================
  Header
=================================*/
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-navigation a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.current-menu-item::after {
    width: 100%;
}

.main-navigation a:hover,
.main-navigation a.current-menu-item {
    color: var(--primary-color);
}

/*=================================
  Project Cards
=================================*/
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-card-image img {
    transform: scale(1.05);
}

.project-card-content {
    padding: 25px;
}

.project-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.project-card-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.project-card-meta span {
    font-size: 14px;
    color: var(--text-light);
}

/*=================================
  Single Project Page
=================================*/
.project-hero {
    position: relative;
    height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-badges {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
}

.status-badge {
    background: var(--primary-color);
    color: var(--white);
}

.type-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-title {
    font-size: 3rem;
    margin: 0 0 15px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-location {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-gallery {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gallery:hover {
    background: rgba(255, 255, 255, 0.3);
}

.project-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--spacing-2xl);
}

/*=================================
  Cards & Boxes
=================================*/
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.card-title {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title i {
    color: var(--primary-color);
    font-size: 24px;
}

/*=================================
  Data Grid
=================================*/
.data-grid {
    display: flex;
    flex-direction: column;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.data-row:last-child {
    border-bottom: none;
}

.data-row .label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
}

.data-row .value {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 16px;
}

/*=================================
  Price Box (Inspired by uploaded image)
=================================*/
.price-box {
    background: var(--secondary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.price-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
}

.discount-badge {
    background: var(--primary-color);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
}

.price-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-detail-item {
    text-align: center;
}

.price-detail-label {
    font-size: 13px;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.price-detail-value {
    font-size: 1.3rem;
    font-weight: 700;
}

/*=================================
  Payment Plans
=================================*/
.payment-plans {
    margin-top: 20px;
}

.plans-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.plan-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    background: var(--bg-light);
    margin-bottom: 15px;
    transition: var(--transition);
}

.plan-card:hover,
.plan-card.active {
    border-color: var(--primary-color);
    background: #fffbf8;
    box-shadow: var(--shadow-sm);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.plan-name {
    background: linear-gradient(135deg, #ffe8d6, #ffd4b3);
    color: var(--primary-darker);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
}

.plan-years {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}

.plan-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.plan-details .detail span {
    font-size: 13px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.plan-details .detail strong {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 16px;
}

.feature-text p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/*=================================
  Developer Card (Inspired by uploaded image)
=================================*/
.dev-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.dev-info {
    flex: 1;
}

.dev-info h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.dev-info h4 a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.dev-info h4 a:hover {
    color: var(--primary-color);
}

.dev-info p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.view-projects-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.view-projects-link:hover {
    color: var(--primary-dark);
}

.dev-logo {
    flex-shrink: 0;
}

.dev-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    padding: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
}

/*=================================
  Sidebar
=================================*/
.sticky-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-actions .btn {
    flex: 1;
}

.lead-form-box {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.form-header h3 {
    margin: 0 0 10px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.form-header p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(193, 122, 74, 0.1);
}

.form-control::placeholder {
    color: var(--text-lighter);
}

/*=================================
  Footer
=================================*/
.site-footer {
    background: var(--secondary-darker);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--spacing-2xl);
}

.footer-widgets {
    padding: var(--spacing-2xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-column p {
    line-height: 1.8;
    font-size: 15px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/*=================================
  Responsive Design
=================================*/
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .project-layout {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .project-hero {
        height: 400px;
        padding-bottom: 40px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-location {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-contact-btns {
        width: 100%;
    }

    .hero-contact-btns .btn {
        flex: 1;
    }

    .price-box {
        padding: 25px 20px;
    }

    .price-value {
        font-size: 2rem;
    }

    .price-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .price-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .main-navigation ul {
        gap: 20px;
    }

    .sticky-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .project-title {
        font-size: 1.75rem;
    }

    .info-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.2rem;
    }
}

/*=================================
  Blog Layout
=================================*/
.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    position: relative;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

/* Sidebar Widgets Style (Ensure consistency) */
.blog-sidebar-widget-area .sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.blog-sidebar-widget-area .sidebar-widget h3.widget-title {
    font-size: 18px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
    position: relative;
    color: var(--secondary-color);
}

.blog-sidebar-widget-area .sidebar-widget h3.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Blog Content Typography */
.entry-content {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.entry-content p {
    margin-bottom: 25px;
}

.entry-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.entry-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 25px;
    padding-right: 20px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content blockquote {
    background: #f9f9f9;
    border-right: 4px solid var(--primary-color);
    padding: 20px 30px;
    font-style: italic;
    margin: 30px 0;
    color: #555;
    font-size: 20px;
}

.entry-content img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 30px 0;
}

/* Responsive Blog Layout */
@media (max-width: 991px) {
    .single-post-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        margin-top: 50px;
    }
}