/* ========================================
   Modern Responsive CSS - Mobile First
   ======================================== */

/* CSS Variables for Easy Customization */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --border-color: #ddd;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --max-width: 1200px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

/* Layout Container */
.tlo, .tlo2 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (min-width: 768px) {
    .tlo, .tlo2, .container {
        padding: 0 30px;
    }
}

@media (min-width: 1024px) {
    .tlo, .tlo2, .container {
        padding: 0 40px;
    }
}

/* Header Styles */
#headerwrap {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

/* Logo and Menu Button Container */
#logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    #logo {
        padding: 0.6rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    #logo {
        padding: 0.75rem 2rem;
    }
}

#logo a {
    display: inline-block;
}

#logo img {
    max-width: 140px;
    max-height: 70px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Mobile Menu Button */
.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    min-width: 42px;
    height: 42px;
}

.menu-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.menu-btn svg {
    width: 1.1em;
    height: 1.1em;
}

/* Social Media Links */
.longline.social-bar {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.longline.social-bar nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .longline.social-bar nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .longline.social-bar nav {
        padding: 0 2rem;
    }
}

.longline.social-bar nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.longline.social-bar nav ul li a {
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.longline.social-bar nav ul li a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Desktop Navigation Menu */
#menuline {
    display: none;
    background: transparent;
    border-top: none;
    width: 100%;
}

#menuline nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    #menuline nav {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    #menuline nav {
        padding: 0 2rem;
    }
}

#menuline nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

#menuline nav ul li {
    margin: 0;
}

#menuline nav ul li a {
    display: block;
    padding: 0.6rem 1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
}

#menuline nav ul li:first-child a {
    border-left: none;
}

#menuline nav ul li a:hover,
#menuline nav ul li.current-menu-item a {
    background: var(--accent-color);
    color: #fff;
}

#menuline nav ul li a svg {
    margin-right: 0.25rem;
    width: 0.85em;
    height: 0.85em;
    transition: transform 0.3s ease;
}

#menuline .has-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu for Desktop */
#menuline .has-dropdown {
    position: relative;
}

#menuline .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

#menuline .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#menuline .dropdown li {
    margin: 0;
}

#menuline .dropdown li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

#menuline .dropdown li:last-child a {
    border-bottom: none;
}

#menuline .dropdown li a:hover,
#menuline .dropdown li.current-menu-item a {
    background: var(--primary-color);
    color: #fff;
    padding-right: 1.5rem;
}

/* Pushy Menu (Mobile Sidebar) */
.pushy {
    position: fixed;
    width: 280px;
    height: 100%;
    top: 0;
    right: -280px;
    background: var(--primary-color);
    overflow-y: auto;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pushy.pushy-open {
    right: 0;
}

.pushy-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Logo in Sidebar */
.pushy-logo {
    padding: 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid var(--secondary-color);
}

.pushy-logo img {
    max-width: 180px;
    max-height: 60px;
    height: auto;
}

.pushy-content ul {
    list-style: none;
    padding: 1rem 0;
    flex: 1;
    overflow-y: auto;
}

/* Footer Section in Sidebar */
.pushy-footer-section {
    margin-top: auto;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

/* Social Media in Sidebar */
.pushy-social {
    padding: 1.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.pushy-social-title {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pushy-social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.pushy-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pushy-social-links a:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Copyright in Sidebar */
.pushy-copyright {
    padding: 1.5rem 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.6;
}

.pushy-copyright p {
    margin: 0.3rem 0;
}

.pushy-copyright p:first-child {
    font-weight: 600;
    color: #fff;
}

.pushy-link a {
    color: #fff;
    padding: 1rem 1.5rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.pushy-link a:hover,
.pushy-link.current-menu-item a {
    background: var(--secondary-color);
}

/* Submenu for Mobile Pushy */
.pushy-link.has-children {
    position: relative;
}

.pushy-link.has-children > a {
    padding-left: 3rem;
}

.submenu-toggle {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.submenu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.submenu-toggle i {
    transition: transform 0.3s ease;
    display: block;
    line-height: 1;
}

.submenu-toggle.active i {
    transform: rotate(180deg);
}

.pushy .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pushy .submenu.open {
    max-height: 500px;
}

.pushy .submenu li a {
    padding-right: 3rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.site-overlay.active {
    display: block;
    opacity: 1;
}

/* Slider Section */
#featured {
    margin: 0.5rem 0;
    width: 100%;
    padding: 0;
}

#slidebag {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

#sliderbig {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

#slider1_container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: calc(67vh - 70px);
    min-height: 350px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #f0f0f0;
    visibility: visible !important;
    margin: 0 auto;
}

/* Jssor Arrow Navigator */
.jssora051 {
    display: block;
    position: absolute;
    cursor: pointer;
}

.jssora051 .a {
    fill: none;
    stroke: #fff;
    stroke-width: 360;
    stroke-miterlimit: 10;
}

.jssora051:hover {
    opacity: 0.8;
}

.jssora051.jssora051dn {
    opacity: 0.5;
}

.jssora051.jssora051ds {
    opacity: 0.3;
    pointer-events: none;
}

/* Jssor Bullet Navigator */
.jssorb051 {
    position: absolute;
}

.jssorb051 .i {
    position: absolute;
    cursor: pointer;
}

.jssorb051 .i .b {
    fill: #fff;
    fill-opacity: 0.5;
}

.jssorb051 .i:hover .b {
    fill: #fff;
    fill-opacity: 0.7;
}

.jssorb051 .iav .b {
    fill: #fff;
    fill-opacity: 1;
}

.jssorb051 .i.idn {
    opacity: 0.3;
}

#slides {
    position: relative;
    width: 100%;
    height: 100%;
}

#slides > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slidecaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 1.5rem;
    z-index: 10;
}

.slidecaption h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin: 0;
}

/* Sidebar */
#sidewrap2, #sidewrap3 {
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
}

.sliderwidget {
    width: 100%;
}

.sidebar {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.widget-side {
    margin-bottom: 2rem;
}

.widget-side h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Menu Accordion */
.dcjq-accordion .menu {
    list-style: none;
}

.dcjq-accordion .menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.dcjq-accordion .menu li a:hover,
.dcjq-accordion .menu li.current-menu-item a {
    background: var(--secondary-color);
    color: #fff;
}

/* Contact Form */
.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.wpcf7 button[type="submit"] {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.wpcf7 button[type="submit"]:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Main Content */
#bloglist {
    margin: 0.75rem 0;
    width: 100%;
    padding: 0;
}

#bloglist .moduletable {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    #bloglist .moduletable {
        padding: 1.25rem;
    }
}

.moduletable h3 {
    color: var(--primary-color);
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.sprocket-mosaic {
    width: 100%;
    max-width: 100%;
}

.sprocket-mosaic-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sprocket-mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .sprocket-mosaic-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sprocket-mosaic-header {
    margin-bottom: 2rem;
}

.sprocket-mosaic-filter {
    width: 100%;
    margin-bottom: 2rem;
}

.sprocket-mosaic-filter ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sprocket-mosaic-filter ul li {
    margin: 0;
}

.sprocket-mosaic-filter ul li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sprocket-mosaic-filter ul li a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#mainheader {
    text-align: center;
    margin: 0rem 0;
}

#mainheader h2 {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
}

#mainheader h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Grid System - Mobile First */
.grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0;
    width: 100%;
}

.grid-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 100%;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.grid-item article {
    margin: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.grid-item .heading {
    padding: 1rem;
    background: #fff;
    border-bottom: 3px solid var(--primary-color);
}

.grid-item .heading h2 {
    margin: 0;
    color: var(--primary-color) !important;
    font-size: 1.125rem !important;
}

.grid-item .heading h2 a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.grid-item .heading h2 a:hover {
    color: var(--accent-color) !important;
}

.grid-item .postcontent {
    padding: 0;
    flex: 1;
    overflow: hidden;
}

.grid-item .postcontent img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .grid-item .postcontent img {
        height: 160px;
    }
}

@media (min-width: 1024px) {
    .grid-item .postcontent img {
        height: 180px;
    }
}

.grid-item:hover .postcontent img {
    transform: scale(1.05);
}

/* Article Cards */
.post {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
}

.post:hover {
transform: translateY(-5px);
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.post .heading {
padding: 0.75rem;
}

.post .entry-title {
font-size: 1rem;
margin: 0;
}

.post .entry-title a {
color: var(--primary-color);
}

.postcontent {
position: relative;
overflow: hidden;
}

.postcontent img {
width: 100%;
height: auto;
transition: var(--transition);
}

.post:hover .postcontent img {
transform: scale(1.05);
}

/* Footer */
#footer {
background: var(--primary-color);
color: #fff;
margin-top: 3rem;
padding: 2rem 0 1rem;
}

.tagcloud {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin: 1rem 0;
}

.tagcloud a {
background: rgba(255,255,255,0.1);
color: #fff;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.875rem;
transition: var(--transition);
}

.tagcloud a:hover {
background: var(--secondary-color);
}

.copy {
text-align: center;
padding: 1.5rem 0;
border-top: 1px solid rgba(255,255,255,0.1);
margin-top: 2rem;
}

.copy a {
color: var(--secondary-color);
font-weight: bold;
}

/* Floating Buttons */
#WhatsApp_, #callnowbutton {
position: fixed;
width: 60px;
height: 60px;
border-radius: 50%;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
z-index: 999;
transition: var(--transition);
background-size: 60%;
background-position: center;
background-repeat: no-repeat;
}

#WhatsApp_ {
bottom: 80px;
left: 20px;
background-color: #25D366;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z"/></svg>');
}

#callnowbutton {
bottom: 20px;
left: 20px;
background-color: var(--accent-color);
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z"/></svg>');
}

#WhatsApp_:hover, #callnowbutton:hover {
transform: scale(1.1);
}

/* Utility Classes */
.clear {
clear: both;
}

hr {
border: none;
border-top: 1px solid var(--border-color);
margin: 2rem 0;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .tlo, .tlo2 {
        padding: 0 1.5rem;
    }
    
    #column {
        padding: 0 1.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    #column.right-sidebar {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 2rem;
        align-items: start;
        padding: 0 1.5rem;
    }
    
    #column.right-sidebar > #featured {
        grid-column: 1 / -1;
        width: 100%;
    }
    
    #column.right-sidebar > #bloglist {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
    }
    
    #column.right-sidebar > #sidewrap2 {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
    }
    
    #logo {
        padding: 0.6rem 1.5rem;
        max-width: 1200px;
    }
    
    #logo img {
        max-width: 150px;
        max-height: 75px;
    }
    
    .menu-btn {
        display: flex;
        min-width: 45px;
        height: 45px;
        padding: 0.5rem 0.75rem;
    }
    
    #slider1_container {
        height: calc(67vh - 75px);
        min-height: 380px;
    }
    
    #slidebag {
        width: 100%;
    }
    
    /* إخفاء القائمة الجانبية Pushy على التابلت */
    .pushy {
        display: none !important;
    }
    
    .site-overlay {
        display: none !important;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .tlo, .tlo2 {
        padding: 0 2rem;
    }
    
    #column {
        padding: 0 2rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .menu-btn {
        display: none !important;
    }
    
    #menuline {
        display: flex !important;
    }
    
    #menuline nav ul {
        justify-content: flex-start;
    }
    
    #logo {
        justify-content: space-between;
        padding: 0.75rem 2rem;
        max-width: 1200px;
    }
    
    #logo img {
        max-width: 160px;
        max-height: 80px;
    }
    
    .pushy {
        display: none !important;
    }
    
    /* إخفاء السايدبار وجعل المحتوى بعرض كامل */
    #column.right-sidebar {
        display: block !important;
        padding: 0 2rem;
    }
    
    #column.right-sidebar > #sidewrap2 {
        display: none !important;
    }
    
    #column.right-sidebar > #bloglist,
    #column.right-sidebar > #featured {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    #slider1_container {
        height: calc(67vh - 80px);
        min-height: 400px;
    }
    
    #slidebag {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .slidecaption {
        padding: 2rem;
    }
    
    .slidecaption h2 {
        font-size: 2rem;
    }
}

/* Large Desktop (1440px and up) */
@media (min-width: 1440px) {
    html {
        font-size: 18px;
    }
}

/* Print Styles */
@media print {
    #headerwrap, #footer, .menu-btn, #WhatsApp_, #callnowbutton {
        display: none;
    }
    
    body {
        background: #fff;
    }
}

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

/* Loading Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.post {
    animation: fadeIn 0.5s ease-out;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1a1a1a;
        --text-color: #e0e0e0;
        --primary-color: #2c3e50;
        --border-color: #444;
    }
    
    .post, .sidebar {
        background: #2a2a2a;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
