/* ============================================
   FARIS AL-FUNOON PRINTING PRESS - STYLES
   ============================================ */

/* ============================================
   المتغيرات والألوان (مثل جواهر الشام)
   ============================================ */
:root {
    --bg-main: #FAF7F0;
    --bg-card: #FFFFFF;
    --text-primary: #1A2744;
    --text-secondary: #4A5568;
    
    /* ألوان الذهب الحقيقي */
    --gold: #D4AF37;
    --gold-light: #F4E5A3;
    --gold-dark: #AA771C;
    --gold-shine: #FBF5B7;
    
    /* التدرج الذهبي اللماع */
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    
    --border-light: #E2DCCF;
    --shadow: 0 4px 15px rgba(0,0,0,0.05);
    --transition: all 0.3s ease;
}

/* الوضع الليلي */
body.dark-mode {
    --bg-main: #0F172A;
    --bg-card: #1E293B;
    --text-primary: #FAF7F0;
    --text-secondary: #CBD5E1;
    --border-light: #334155;
    --shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* إعادة الضبط الأساسية */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Poppins', sans-serif;    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   شاشة التحميل
   ============================================ */
#loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.loader-text {
    color: var(--gold);
    margin-top: 20px;
    font-size: 1.2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   شريط تقدم القراءة
   ============================================ */
#scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0%;
    height: 4px;
    background-color: var(--gold);
    z-index: 1000;
    transition: width 0.1s;
}

/* ============================================
   الهيدر
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-main);
    z-index: 100;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;    width: 100%;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.logo-section:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* الهمبرجر */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    position: absolute;
    transition: var(--transition);
}

.hamburger-btn span:nth-child(1) { top: 0; }
.hamburger-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-btn span:nth-child(3) { bottom: 0; }

.hamburger-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--gold);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--gold);
}

/* القائمة الجانبية */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--bg-card);
    z-index: 99;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

[dir="ltr"] .side-menu {
    right: auto;
    left: -100%;
    transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);}

.side-menu.active {
    right: 0;
}

[dir="ltr"] .side-menu.active {
    left: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.menu-links {
    list-style: none;
    margin-bottom: auto;
}

.menu-links li {
    margin-bottom: 20px;
}

.menu-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
    text-decoration: none;
}

.menu-links a:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

[dir="ltr"] .menu-links a:hover {
    transform: translateX(5px);
}
/* ============================================
   أزرار القائمة (اللغة والوضع)
   ============================================ */
.menu-actions {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.action-btn {
    flex: 1;
    padding: 10px;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

/* Hover ذهبي للأزرار */
.action-btn:hover,
.action-btn.active {
    background: var(--gold-gradient);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.action-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background-color: var(--bg-main);
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* الأزرار */
.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    text-decoration: none;
}
.btn-primary,
.btn-secondary {
    background: var(--gold-gradient);
    color: #1A2744;
    border: 2px solid #BF953F;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover,
.btn-secondary:hover {
    background: linear-gradient(135deg, #FCF6BA 0%, #FBF5B7 25%, #F4E5A3 50%, #FCF6BA 75%, #F4E5A3 100%);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
    background: var(--gold-gradient);
    color: #1A2744;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    font-weight: 700;
    border: 2px solid #BF953F;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #FCF6BA 0%, #FBF5B7 25%, #F4E5A3 50%, #FCF6BA 75%, #F4E5A3 100%);
    border-color: #D4AF37;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* ============================================
   الأقسام العامة
   ============================================ */
section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);}

.gradient-text {
    color: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background-color: var(--bg-card);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-image img {
    width: 100%;    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* ============================================
   Why Us Section
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ============================================
   Countdown Section
   ============================================ */
.countdown-section {    background-color: var(--bg-card);
    text-align: center;
}

.countdown-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-box {
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    padding: 30px 25px;
    min-width: 100px;
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.time-box label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.time-separator {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

.countdown-btn {
    font-size: 1.1rem;    padding: 15px 40px;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    background-color: var(--bg-main);
}

.search-container {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 1px solid var(--gold);
    border-radius: 30px;
    background-color: var(--bg-card);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

[dir="rtl"] .search-container input {
    padding: 15px 50px 15px 20px;
}

[dir="ltr"] .search-container input {
    padding: 15px 20px 15px 50px;
}

.search-container input:focus {
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--gold);
    z-index: 1;
    pointer-events: none;
    font-size: 1.2rem;}

[dir="rtl"] .search-icon {
    right: 20px;
    left: auto;
}

[dir="ltr"] .search-icon {
    left: 20px;
    right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.product-card.hidden {
    display: none;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--border-light);
}

.product-image img {
    width: 100%;
    height: 100%;    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ============================================
   Vision 2030 Section
   ============================================ */
.vision-section {
    background-color: var(--bg-main);
    text-align: center;
}

.vision-overlay {
    display: none;
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}
.vision-badge img {
    width: 150px;
    margin: 0 auto 30px;
}

.vision-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.vision-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-item span:last-child {
    display: block;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background-color: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-main);
    padding: 30px 25px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card > p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.client-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.client-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Working Hours Section
   ============================================ */
.working-hours-section {
    background-color: var(--bg-main);
}
.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background-color: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.status-dot.closed {
    background-color: #7A1F2B;
    box-shadow: 0 0 8px #7A1F2B;
}

.status-open {
    color: var(--gold);
}

.status-closed {
    color: #7A1F2B;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 10px;}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    transition: var(--transition);
}

.hour-row:last-child {
    border-bottom: none;
}

.hour-row.today {
    background-color: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    font-weight: 700;
    border-radius: 8px;
    border-bottom: none;
}

.hour-row.friday {
    background-color: rgba(122, 31, 43, 0.1);
    color: #7A1F2B;
}

.day-status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.day-status.open {
    background-color: rgba(201, 169, 97, 0.2);
    color: var(--gold);
}

.day-status.closed {
    background-color: rgba(122, 31, 43, 0.2);
    color: #7A1F2B;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {    background-color: var(--bg-card);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    text-align: right;
    direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.3);
}
.submit-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* Contact Buttons - كلها ذهبية */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    color: #1A2744;
    width: 100%;
    text-decoration: none;
    background: var(--gold-gradient);
    border: 2px solid #BF953F;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #FCF6BA 0%, #FBF5B7 25%, #F4E5A3 50%, #FCF6BA 75%, #F4E5A3 100%);
    border-color: #D4AF37;
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(212, 169, 97, 0.4);
}

.contact-btn-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-btn-info {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   Footer
   ============================================ */
   /* Footer - الوضع النهاري (بيج) */
/* Footer - الوضع النهاري (بيج) */
footer {
    text-align: center;
    padding: 30px;
    background-color: #FAF7F0;
    color: var(--text-primary);
    font-size: 0.9rem;
    border-top: 2px solid var(--gold);
}

/* تحديث ألوان الفوتر في الوضع النهاري */
body:not(.dark-mode) footer {
    background-color: #FAF7F0;
    color: var(--text-primary);
}

body:not(.dark-mode) footer h3,
body:not(.dark-mode) footer h4,
body:not(.dark-mode) footer p,
body:not(.dark-mode) footer a {
    color: var(--text-primary);
}

body:not(.dark-mode) footer .designer-link {
    color: var(--gold);
}

/* Footer - الوضع الليلي (كحلي) */
body.dark-mode footer {
    background-color: #0F172A;
    color: #FAF7F0;
}

body.dark-mode footer h3,
body.dark-mode footer h4,
body.dark-mode footer p,
body.dark-mode footer a {
    color: #FAF7F0;
}

body.dark-mode footer .designer-link {
    color: var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: right;
}

.footer-brand img {
    width: 60px;
    margin: 0 auto 15px;
}

.footer-brand h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: #fff;
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    color: #fff;
}

.designer-credit {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #fff;
}

.designer-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.designer-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* ============================================
   Floating Buttons - كلها ذهبية
   ============================================ */
.floating-btn {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 90;    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
    background: var(--gold-gradient);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.floating-call {
    top: 80px;
    left: 20px;
}

.floating-whatsapp {
    bottom: 20px;
    left: 20px;
}

.floating-whatsapp svg {
    fill: #1A2744;
}

.floating-top {
    bottom: 20px;
    right: 20px;
    opacity: 0;
    visibility: hidden;
}

.floating-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .about-content,
    .contact-content {        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .time-box {
        min-width: 70px;
        padding: 20px 15px;
    }
    
    .time-box span {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }    
    .floating-call {
        top: 70px;
        left: 15px;
    }
    
    .floating-whatsapp {
        bottom: 15px;
        left: 15px;
    }
    
    .floating-top {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-box {
        min-width: 60px;
        padding: 15px 10px;
    }
}
/* ============================================
   تحسينات إضافية للتجاوب
   ============================================ */

/* للأجهزة اللوحية (Tablets) */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 4%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* للهواتف الكبيرة (Large Phones) */
@media (max-width: 640px) {
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .menu-actions {
        flex-direction: column;
    }    
    .action-btn {
        width: 100%;
    }
}

/* للهواتف الصغيرة جداً (Small Phones) */
@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .logo-text span {
        font-size: 0.75rem;
    }
    
    section {
        padding: 40px 3%;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .time-box {
        min-width: 50px;
        padding: 15px 10px;
    }
    
    .time-box span {
        font-size: 1.5rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
        .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        padding: 0;
    }
}
/* أيقونات الفوتر ذهبية */
.footer-icon {
    color: var(--gold);
    vertical-align: middle;
    margin-left: 8px;
    stroke: var(--gold) !important;
}

[dir="ltr"] .footer-icon {
    margin-left: 0;
    margin-right: 8px;
}