/* المتغيرات الجذرية */
:root {
    --primary: #dd8a3c;
    --secondary: #e69a4b;
    --accent1: #eaa153;
    --accent2: #f3b164;
    --accent3: #f7b96c;
    --brown-dark: #5c3d2e;
    --beige: #deb887;
    --text-dark: #333;
    --text-light: #fff;
    --gradient-bg: linear-gradient(135deg, #f7b96c, #e69a4b, #dd8a3c);
}

/* تنسيق عام */
body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    background: var(--gradient-bg);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.top-bar {
    background-color: var(--brown-dark);
    color: var(--text-light);
    display: flex;
    justify-content: space-around;
    padding: 15px 20px;
    align-items: center;
    font-size: 1em;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--beige);
}

.top-bar img {
    height: 70px;
    object-fit: contain;
}
.top-bar .slogan {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--accent3);
}

.date-time {
    font-size: 1.1em;
    color: var(--beige);
}

.phone a, .support a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.phone a:hover, .support a:hover {
    color: var(--accent2);
}




header {
    background: linear-gradient(to bottom, var(--brown-dark), var(--primary), var(--secondary), var(--accent1));
    padding: 8px 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--beige);
    position: sticky;
    top: 0;
    z-index: 999999;
}

.logo {
    font-size: 2em;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 100px;
    object-fit: contain;
}

/* Navigation */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  font-weight: bold;
  padding: 18px;
  transition: all 0.7s ease;
  border-radius: 5px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 22px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}


nav ul li a:hover {
   background-color: var(--brown-dark);
  color: var(--text-light);
  transform: scale(1.05);
  border-radius: 20px;
}

nav ul li a.nav-link {
 background-color: var(--brown-dark);
  padding: 12px;
  border-radius: 12px;
  color: #ffffff;
  
}


.nav-link {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 22px;
}

.nav-link a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}


.nav-link a:hover {
   background-color: var(--brown-dark);
  color: var(--text-light);
  transform: scale(1.05);
  border-radius: 20px;
}

.nav-link a.active {
  background-color: var(--brown-dark);
  color: var(--text-light);
  padding: 12px;
  border-radius: 12px;
  
}
 

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #00000067, #00000094, #835225a7, #e69b4b4c), url('./407a058c8c625572881f6fd6e54fa518.jpg');
    color: var(--text-light);
    padding: 100px 20px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow: hidden;
    animation: fadeInBackground 0.5s ease-in-out;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: #deb887cc 1px solid;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero h1 {
    font-size: 3.5em;
    color: var(--accent3);
    margin: 20px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideIn 1.5s ease-out;
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f3e5d4;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1.5s ease-in-out 0.5s backwards;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-subtitle {
    font-size: 1.6em;
    color: #deb887;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease-in-out;
}

.order-btn {
    background: var(--secondary);
    color: var(--text-light);
    padding: 15px 35px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.order-btn:hover {
    background: var(--accent1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    color: #fff;
}

.stat-number {
    font-size: 1.8em;
    font-weight: 700;
    display: block;
}

.hero-image-placeholder {
    margin: 30px 0;
    max-width: 700px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

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

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

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 20px;
    z-index: 1;
}

.social-link {
    color: #fff;
    font-size: 1.8em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    color: #deb887;
    transform: scale(1.2);
}

.hero-callout {
    padding: 20px 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    z-index: 1;
}

.callout-text {
    font-size: 1.2em;
    color: #f3e5d4;
    margin: 0;
}

.callout-phone {
    display: block;
    margin-top: 10px;
    font-size: 1.3em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.callout-phone:hover {
    color: #000000;
}

/* تحسين قسم .about */
.about {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeIn 2s ease-in-out;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.1), rgba(0, 0, 0, 0.05));
    width: 100%;
    color: #333;
}

.about-title {
    font-size: 2.8em;
    color: #5c3d2e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    animation: slideIn 1.5s ease-out;
}

.about-description {
    font-size: 1.3em;
    color: #ffffff;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
    padding: 0 20px;
    font-weight: 500;
    animation: fadeInUp 1.5s ease-in-out 0.5s backwards;
}

.experience-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #dd8a3c;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.experience-badge:hover {
    transform: scale(1.05);
    background: rgba(245, 224, 179, 0.9);
}

/* تحسين قسم الفيديو */
.video-placeholder {
    background-color: #0000003e;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    padding: 15px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: fadeIn 1s ease-in-out;
}

.video-placeholder video {
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease;
}

.video-placeholder video:hover {
    transform: scale(1.02);
}

.why-choose-us {
    padding: 40px 20px;
    background: linear-gradient(to bottom, #f7e4bc, #fff);
    border-radius: 15px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.why-title {
    font-size: 2.5em;
    color: #5c3d2e;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.intro-text, .closing-text {
    font-size: 1.2em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
}

.why-list {
    list-style: none;
    padding: 0;
    text-align: right;
}

.why-item {
    font-size: 1.1em;
    color: #444;
    margin: 15px 0;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-left: 5px solid #dd8a3c;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateX(10px);
    background: rgba(221, 138, 60, 0.1);
}

.closing-text {
    font-size: 1.3em;
    color: #333;
    line-height: 1.6;
    margin-top: 30px;
    padding: 10px 10px;
    font-weight: 500;
    cursor: default;
}

strong {
    color: #dd8a3c;
    font-weight: 600;
}

/* تحسين قسم .importance */
.importance {
    padding: 100px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInGlow 2.5s ease-in-out;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.2), rgba(92, 61, 46, 0.05));
    width: 100%;
    color: #333;
}

.importance-title {
    font-size: 3.2em;
    color: #5c3d2e;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    animation: slideInBounce 2s ease-out;
}

.importance-intro {
    font-size: 1.4em;
    color: #4a3c2f;
    line-height: 2;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 20px 30px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    animation: fadeInUp 1.8s ease-in-out 0.5s backwards;
}

.importance-highlight {
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.highlight-title {
    font-size: 2em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.highlight-card {
    padding: 20px;
    background: var(--brown-dark);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.highlight-card i {
    font-size: 2em;
    color: #ffffff;
    margin-bottom: 10px;
}

.highlight-card h4 {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.importance-list {
    list-style: none;
    padding: 0;
    max-width: 5000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.importance-item {
    font-size: 1.2em;
    color: #4a3c2f;
    margin: 15px 0;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: right;
}

.importance-item::before {
    position: absolute;
    right: 10px;
    color: #dd8a3c;
    font-size: 1.3em;
    font-weight: bold;
}

.importance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* تحسين قسم الصورة */
.image-placeholder {
    max-width: 100%;
    margin: 50px auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.image-placeholder p {
    font-size: 1.2em;
    color: #4a3c2f;
    margin-bottom: 15px;
    font-weight: 500;
    cursor: default;
}

.image-caption {
    font-size: 1em;
    color: #4a3c2f;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* تحسين قسم الدعوة */
.importance-callout {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(221, 138, 60, 0.1), rgba(245, 222, 179, 0.3));
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInGlow 2s ease-in-out;
}

.callout-text {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.callout-phone {
    font-size: 1.4em;
    color: #ffffff;
    text-decoration: none;
    margin: 20px;
    transition: color 0.3s ease;
}

.callout-phone:hover {
    color: #000000;
}

.callout-phone i {
    margin-left: 5px;
}

.callout-button {
    background: #dd8a3c;
    color: #fff;
    border: 5px solid transparent;
    padding: 10px;
    cursor: pointer;
    border-radius: 18px;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.3s ease;
    margin: 15px;
}

.callout-button:hover {
    transition: 0.2s;
    background: var(--brown-dark);
}

/* تحسين قسم الشهادات */
.importance-testimonial {
    margin: 50px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-title {
    font-size: 2em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimonial-quote {
    font-size: 1.3em;
    color: #ffffff;
    line-height: 1.6;
    margin: 15px 0;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: "“";
    font-size: 2em;
    color: #dd8a3c;
    position: absolute;
    left: -20px;
    top: -10px;
}

.testimonial-quote::after {
    content: "”";
    font-size: 2em;
    color: #dd8a3c;
    position: absolute;
    right: -20px;
    bottom: -10px;
}

/* تحسين قسم المعرض */
.importance-gallery {
    margin: 50px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-title {
    font-size: 2em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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




/*خريطة حولى*/


.contact-map-section {
    padding: 80px 50px;
    text-align: center;
    margin: 20px 0;
    border-radius: 15px;
    flex: 1;
}
.contact-map {
    margin-bottom: 40px;
}

.map-title {
    font-size: 1.6em;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.contact-map p {
    font-size: 2.5em;
    font-weight: 600;
    color: var(--text-light);
}




/* تحسين قسم التواصل */
.importance-contact {
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-title {
    font-size: 2em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info {
    font-size: 1.1em;
    color: #4a3c2f;
    margin-bottom: 20px;
}

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

.social-link {
    font-size: 1.5em;
    color: #dd8a3c;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #5c3d2e;
}

/* تحسين قسم الشهادات */
.importance-testimonials {
    padding: 80px 50px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(245, 222, 179, 0.2), rgba(92, 61, 46, 0.05));
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

.testimonial-title {
    font-size: 2.5em;
    color: #5c3d2e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-quote:hover {
    transform: translateY(-5px);
}

.testimonial-quote p {
    font-size: 1.1em;
    color: #4a3c2f;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 0.9em;
    color: #5c3d2e;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.rating {
    margin-top: 10px;
}

.star {
    color: #dd8a3c;
    font-size: 1.2em;
}

/* تحسين قسم النموذج */
.testimonial-form {
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.form-title {
    font-size: 1.8em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#testimonial-input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(221, 138, 60, 0.5);
    border-radius: 10px;
    resize: vertical;
    font-size: 1em;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.7);
    transition: border-color 0.3s ease;
}

#testimonial-input:focus {
    border-color: #dd8a3c;
    outline: none;
}

.rating-input {
    margin-bottom: 20px;
    text-align: left;
}

.rating-input label {
    font-size: 1.1em;
    color: #4a3c2f;
    margin-right: 10px;
}

.stars {
    display: inline-flex;
    cursor: pointer;
}

.stars i {
    font-size: 1.5em;
    color: #ccc;
    margin-right: 5px;
}

.stars i.active {
    color: #dd8a3c;
}

.submit-button {
    padding: 12px 30px;
    font-size: 1.2em;
    color: #fff;
    background: #dd8a3c;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background: #5c3d2e;
    transform: scale(1.05);
}

/* تحسين قسم التواصل */
.importance-contact {
    padding: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 50px;
}

.contact-title {
    font-size: 2em;
    color: #5c3d2e;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-info {
    font-size: 1.1em;
    color: #4a3c2f;
    margin-bottom: 20px;
}

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

.social-link {
    font-size: 1.5em;
    color: #dd8a3c;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #5c3d2e;
}


/* تحسين أيقونات التواصل في الأسفل كدوائر */
.contact-section {
    position: relative;
}

.contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.contact-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; /* مسافة بين النص والأيقونة */
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
}

.contact-button i {
    font-size: 1.5em;
}

span {
    font-size: 1.5rem;
    color: #ffffff; /* لون بني غامق افتراضي، غيّره لو عايز */
    font-style: italic;
    white-space: nowrap;
}

.call-button {
    background: #ffffff;
}

.call-button i {
    color: #dd8a3c;
}

.call-button:hover {
    transform: translateY(-3px);
    background: #ffffffbe;
    box-shadow: 0 6px 15px rgba(92, 61, 46, 0.2);
}

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

.whatsapp-button i {
    color: #fff;
    font-size: 40px;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    background: #1da851;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.2);
}

/* تحسين قسم المقالات */
.articles-section {
    padding: 80px 20px;
    text-align: right;
    position: relative;
    margin: 60px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-in-out;
}

.articles-title {
    font-size: 2.5em;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.articles-container {
    display: flexbox;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: right;
}

.article-card {
    padding: 15px;
    transition: transform 0.3s ease;
    text-align: right;
    background: #fff;
    border-radius: 10px;
    margin: 10px;
    justify-content: flex-start;
    justify-items: flex-start;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-subtitle {
    font-size: 1.3em;
    color: #5c3d2e;
    margin-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 2px solid #dd8a3c;
    padding-bottom: 5px;
}

.article-list {
    list-style: none;
    padding: 0;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.article-list li {
    font-size: 1em;
    color: #333;
    margin: 2px 0;
    position: relative;
    padding-right: 15px;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.article-list li:hover {
    color: #dd8a3c;
    text-decoration: underline;
}

.article-list li::before {
    content: "•";
    color: #dd8a3c;
    position: absolute;
    right: 5px;
    font-size: 1.3em;
}


.keywords-section{
    background-color: #ffffff26;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    
}
.words {
  text-align: right;
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: -12px;
  padding-right: 20px;
  margin-bottom: 12px;

}
.words p{
  color: #000000;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;

}

.nums-arc {
  text-align: right;
  font-size: 1.4rem;
  color: var(--muted);
  margin-top: -12px;
  padding-right: 20px;
  margin-bottom: 12px;

}

.nums-arc a{
  color: #000000;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 0.5;
    text-decoration: none;
}




.nums-arc a:hover{
  color: #000000b8;
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 0.5;
    text-decoration: underline;
}

footer {
    background: var(--brown-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2px;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.1em;
    padding-bottom: 20px;
}

.footer-links a:hover {
    color: var(--accent3);
    text-decoration: underline;
    color: var(--accent2);
    transition: color 0.3s;
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 15px;
    height: 20px;
}

::-webkit-scrollbar-track {
    background: var(--brown-dark);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent1), var(--accent2), var(--accent3));
    border-radius: 12px;
    border: 2px solid var(--beige);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent1), var(--accent2), var(--accent3));
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent1), var(--accent2), var(--accent3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    header {
        padding: 10px 20px;
    }
    nav {
        display: flex;
        justify-content: space-between;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 9951;
        cursor: pointer;
        padding: 10px;
        background: var(--brown-dark);
        border-radius: 5px;
        color: var(--text-light);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .bar {
        width: 25px;
        height: 3px;
        background: var(--text-light);
        margin: 4px 0;
        transition: all 0.3s ease;
        z-index: 100;

    }
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        background: var(--brown-dark);
        padding: 60px 20px 20px;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .nav-menu.active {
        display: block;
        transform: translateX(0);
    }
    .nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .nav-menu ul li {
        margin: 20px 0;
    }
    .nav-menu ul li a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.2em;
        font-weight: 500;
        transition: color 0.3s;
        padding: 10px;
        display: block;
        border-radius: 5px;
    }
    .nav-menu ul li a:hover {
        background-color: var(--primary);
        color: var(--text-light);
        transform: scale(1.05);
        border-radius: 20px;
    }
    .hero {
        padding: 40px 10px;
        min-height: 80vh;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .hero-subtitle {
        font-size: 1.1em;
    }
    .order-btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .articles-section {
        padding: 40px 10px;
        margin: 30px 0;
    }
    .articles-container {
        grid-template-columns: 1fr;
    }
    .article-card {
        margin: 5px;
    }
    .article-subtitle {
        font-size: 1.1em;
    }
    .article-list {
        gap: 3px;
    }
    .article-list li {
        font-size: 0.9em;
        margin: 1px 0;
    }
    .about, .importance, .importance-testimonials {
        padding: 40px 10px;
        margin: 30px 0;
    }
    .about-title, .importance-title, .testimonial-title {
        font-size: 2em;
    }
    .about-description, .importance-intro, .testimonial-quote p {
        font-size: 1.1em;
    }
    .video-placeholder {
        max-width: 100%;
        height: 200px;
    }
    .video-placeholder video {
        height: 200px;
    }
    .why-choose-us, .importance-callout, .importance-testimonial, .importance-gallery, .importance-contact {
        padding: 20px;
        margin: 20px 0;
    }
    .why-title, .highlight-title, .gallery-title, .contact-title {
        font-size: 1.8em;
    }
    .importance-list, .testimonials-container {
        grid-template-columns: 1fr;
    }
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    .image-placeholder {
        margin: 20px auto;
    }
    .footer-links {
        gap: 15px;
    }
    .footer-links a {
        font-size: 1em;
    }
    .contact-buttons {
        bottom: 10px;
        padding: 0 10px;
    }
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 1.1em;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 50px 15px;
    }
    .hero h1 {
        font-size: 2.2em;
    }
    .hero p {
        font-size: 1.05em;
    }
    .articles-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .about, .importance, .importance-testimonials {
        padding: 60px 20px;
    }
    .video-placeholder {
        height: 300px;
    }
    .video-placeholder video {
        height: 300px;
    }
}

@media (min-width: 1025px) {
    .articles-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* الرسوم المتحركة */
@keyframes fadeInBackground {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInGlow {
    0% { opacity: 0; box-shadow: 0 0 0 rgba(221, 138, 60, 0); }
    100% { opacity: 1; box-shadow: 0 15px 40px rgba(221, 138, 60, 0.2); }
}

@keyframes slideInBounce {
    0% { transform: translateY(50px); opacity: 0; }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  position: fixed;
  top: 50px;
  left: 20px;
  z-index: 1000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 770px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 15px;
    flex-direction: column;
    gap: 10px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px); /* قيمة ثابتة لو مفيش --glass-blur */
    padding: 15px;
    border-radius: 12px;
    z-index: 999;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.show {
    display: flex;
  }

  /* إضافة أسلوب للـ <li> و< a> */
  .nav-links li {
    list-style: none; /* زيل النقاط لو موجودة */
    margin: 0; /* تأكد إن مفيش هامش غريب */
    padding: 5px 0; /* مساحة داخلية صغيرة */
  }

  .nav-links a {
    color: #fff; /* لون نص واضح */
    text-decoration: none; /* زيل خط تحت الروابط */
    font-size: 16px; /* حجم نص مناسب */
    padding: 10px; /* مساحة حول النص */
    display: block; /* يخلي الرابط ياخد مساحة كاملة */
    transition: background 0.3s; /* تأثير تحويم */
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.2); /* خلفية خفيفة عند التحويم */
    border-radius: 5px; /* زوايا مستديرة */
  }
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* بيمنع السكرول بالعرض تماماً */
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box; /* بيضمن إن الـ padding ميزودش عرض العنصر */
}


/* تنسيق أزرار السوشيال ميديا في الفوتر */
.footer-social .social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* أنيميشن القلب */
.pulse-anim {
    animation: heartBeat 1.5s infinite;
    display: inline-block;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* تعديلات الموبايل */
@media (max-width: 768px) {
    .row {
        flex-direction: column-reverse; /* بيخلي السوشيال ميديا فوق الحقوق في الموبايل */
    }
    .footer-social {
        justify-content: center !important;
        margin-bottom: 15px;
    }
    .copyright {
        font-size: 0.85rem;
    }
}


/* تنسيق السكشن لـ 3 أعمدة متجاوبة */
.keywords-section {
    background-color: #ffffff26;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    margin-bottom: 50px;
    display: grid;
    /* ده بيخليها 3 أعمدة في الشاشات الكبيرة، وبتنزل عمود واحد في الموبايل */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* عمود الكلمات الدلالية */
.words {
    text-align: right;
}
.words-content {
    max-height: 350px;
    overflow-y: auto; /* بيعمل سكرول داخلي عشان الكلام الكتير ميبوظش الطول */
    padding-left: 15px;
}
.words-content::-webkit-scrollbar {
    width: 6px;
}
.words-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.words p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* عمود المقالات والفروع */
.nums-arc {
    text-align: right;
}
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nums-text {
    color: var(--brown-dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.4);
    padding: 10px 15px;
    border-radius: 8px;
}
.nums-text i {
    color: var(--primary);
}
.nums-text:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(-5px);
}
.nums-text:hover i {
    color: #fff;
}

/* العمود الثالث (المتروق عليه) */
.emergency-card {
    background: linear-gradient(135deg, var(--brown-dark), var(--primary));
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 35px rgba(92, 61, 46, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* لمسة جمالية في الخلفية للعمود التالت */
.emergency-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.emergency-icon i {
    font-size: 3.5rem;
    color: var(--accent3);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.emergency-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.emergency-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #fce4ce;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.btn-emergency {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-emergency.call {
    background: #fff;
    color: var(--brown-dark);
}
.btn-emergency.call:hover {
    background: var(--accent3);
    color: #fff;
    transform: translateY(-3px);
}

.btn-emergency.whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-emergency.whatsapp:hover {
    background: #1ebc5a;
    transform: translateY(-3px);
}