/* Import animations and fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a344d;
    --secondary-color: #b4997e;
    --accent-color: #d4c2a4;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(26, 52, 77, 0.1);
    --shadow-hover: 0 20px 40px rgba(26, 52, 77, 0.15);
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(180, 153, 126, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(180, 153, 126, 0.6);
    }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Enhanced Navigation with Logo */
.navbar {
    background: rgba(26, 52, 77, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

.navbar.scrolled {
    background: rgba(26, 52, 77, 0.98);
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu li {
    position: relative;
    overflow: hidden;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-menu a.nav-active {
    background: var(--secondary-color);
    color: white;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

.nav-menu a:hover::before {
    left: 0;
}

.nav-menu a:hover {
    color: white;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Enhanced Hero Section with Modern Kitchen Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 52, 77, 0.8);
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 4;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: scaleIn 1s ease-out 0.5s both;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.7s both;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--secondary-color);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-hover);
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    animation: scrollArrow 2s ease-in-out infinite;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
    animation: scaleIn 1s ease-out 0.3s both;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-subtitle2 {
    text-align: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(45deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: var(--text-dark);
    animation: slideInRight 0.8s ease-out;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-text p:hover {
    transform: translateY(-5px);
}

.about-text p:nth-child(2) {
    animation-delay: 0.2s;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced Services Section - Single Row */
.services {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.services .section-title {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.4s;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 52, 77, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.client-logo {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(0.1s * var(--i, 1));
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.5s ease;
    z-index: -1;
}

.client-logo:hover::before {
    left: 0;
}

.client-logo:hover {
    color: white;
    transform: scale(1.05) rotateZ(2deg);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* zlients Section */
.zlients {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.zlients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.zlient-logo {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    animation-delay: calc(0.1s * var(--i, 1));
}

.zlient-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.5s ease;
    z-index: -1;
}

.zlient-logo:hover::before {
    left: 0;
}

.zlient-logo:hover {
    color: white;
    transform: scale(1.05) rotateZ(2deg);
}

.zlient-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.zlient-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Enhanced Process Section */
.process {
    padding: 100px 0;
    background: white;
    position: relative;
}

.process-timeline {
    margin-top: 4rem;
    position: relative;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

.step-icon {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

.step-content {
    flex: 1;
    padding: 0 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 0 2rem;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.process-step:hover .step-content {
    transform: translateX(10px);
}

.process-step:nth-child(even):hover .step-content {
    transform: translateX(-10px);
}

.step-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Enhanced Quality Section */
.quality {
    padding: 100px 0;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.quality .section-title {
    color: white;
}

.quality-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.quality-intro p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.specifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    animation: slideInLeft 0.8s ease-out;
}

.spec-item:nth-child(even) {
    animation: slideInRight 0.8s ease-out;
}

.spec-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.spec-content {
    flex: 1;
    line-height: 1.8;
}

.spec-content strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Enhanced Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-section {
    margin-bottom: 5rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Contact Numbers - Single Row */
.contact-numbers-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--secondary-color);
    transition: all 0.4s ease;
    animation: scaleIn 0.8s ease-out;
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.phone-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
    direction: ltr;
    display: inline-block;
}

.phone-link:hover {
    color: var(--primary-color);
}

/* Contact Form Section with 4 Info Boxes */
.contact-form-section {
    margin-top: 5rem;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 4rem 1rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(180, 153, 126, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    right: 4rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.5rem;
    max-width: calc(100% - 5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select + label {
    top: -0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
    background: white;
    right: 4rem;
    max-width: calc(100% - 5rem);
}

.form-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.form-group input:focus ~ .form-icon,
.form-group select:focus ~ .form-icon,
.form-group textarea:focus ~ .form-icon {
    color: var(--secondary-color);
}

.required {
    color: #e74c3c;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: var(--secondary-color);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-side-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    background: white;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Copyright باللغة الإنجليزية */
.copyright-en {
    direction: ltr;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Arial', sans-serif;
}

.copyright-en a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.copyright-en a:hover {
    color: white;
    text-decoration: underline;
}

/* =========================== */
/* ARTICLE STYLES - مضاف للمقالات */
/* =========================== */

/* Breadcrumb */
.breadcrumb-container {
    background: rgba(26, 52, 77, 0.05);
    padding: 25px 0;
    margin-top: 0;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #666;
}

.breadcrumb-item a {
    color: #1a344d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #b4997e;
}

.breadcrumb-item.active {
    color: #666;
}

/* Article Main */
.article-main {
    padding-top: 200px;
    background: #f8f9fa;
    min-height: 100vh;
    padding-bottom: 60px;
}

.article-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(26, 52, 77, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.article-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.article-category {
    color: #1a344d !important;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    color: #1a344d;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(26, 52, 77, 0.05);
    border-radius: 15px;
    border-right: 4px solid #b4997e;
}

.article-featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 52, 77, 0.8);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
}

/* Article Body */
.article-body {
    padding: 3rem;
    position: relative;
    z-index: 1;
}

.article-section {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.article-section h2 {
    color: #1a344d;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.article-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: #b4997e;
    border-radius: 2px;
}

.article-section h3 {
    color: #1a344d;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.article-section ul,
.article-section ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.article-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Table of Contents */
.table-of-contents {
    background: rgba(26, 52, 77, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-right: 4px solid #b4997e;
}

.table-of-contents h3 {
    color: #1a344d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #1a344d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 52, 77, 0.1);
}

.table-of-contents a:hover {
    color: #b4997e;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #1a344d 0%, #2a4a6b 100%);
    color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    z-index: 10;
}

.highlight-box h4 {
    color: #b4997e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #b4997e;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Article Images */
.article-image {
    margin: 2rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.article-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.material-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(26, 52, 77, 0.1);
    border-top: 4px solid #b4997e;
    transition: transform 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
}

.material-card h4 {
    color: #1a344d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Color Palette */
.color-palette {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.color-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.color-item span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Layout Types */
.layout-types {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.layout-types h3 {
    color: #1a344d;
    margin-bottom: 1rem;
}

.layout-types ul {
    list-style: none;
    padding: 0;
}

.layout-types li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.layout-types li:last-child {
    border-bottom: none;
}

/* Storage Solutions */
.storage-solutions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.solution-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(26, 52, 77, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-item i {
    font-size: 3rem;
    color: #b4997e;
    margin-bottom: 1rem;
}

.solution-item h4 {
    color: #1a344d;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Lighting Tips */
.lighting-tips {
    background: rgba(180, 153, 126, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.lighting-tips h3 {
    color: #1a344d;
    margin-bottom: 1rem;
}

.lighting-tips ul {
    list-style: none;
    padding: 0;
}

.lighting-tips li {
    position: relative;
    padding-right: 2rem;
    margin-bottom: 0.5rem;
}

.lighting-tips li::before {
    content: '💡';
    position: absolute;
    right: 0;
    top: 0;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #1a344d 0%, #2a4a6b 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    color: #b4997e;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #b4997e;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    color: #1a344d;
    transform: translateY(-2px);
}

/* Article Footer */
.article-footer {
    padding: 2rem 3rem;
    border-top: 1px solid #e9ecef;
    background: rgba(26, 52, 77, 0.02);
}

.article-tags {
    margin-bottom: 1.5rem;
}

.tags-label {
    font-weight: 600;
    color: #1a344d;
    margin-left: 10px;
}

.tag {
    display: inline-block;
    background: rgba(26, 52, 77, 0.1);
    color: #1a344d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 5px 5px 0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1a344d;
    color: white;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #1a344d;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0a66c2;
}

/* Related Articles */
.related-articles {
    margin-top: 3rem;
}

.related-articles h2 {
    color: #1a344d;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(26, 52, 77, 0.1);
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 1.5rem;
}

.related-content h3 {
    margin-bottom: 1rem;
}

.related-content h3 a {
    color: #1a344d;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
}

.related-content h3 a:hover {
    color: #b4997e;
}

.related-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.related-content time {
    color: #999;
    font-size: 0.9rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        padding: 1rem;
        display: block;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-numbers-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        margin: 1rem 0;
    }
    
    .specifications {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-numbers-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-group label {
        right: 3rem;
        max-width: calc(100% - 4rem);
    }
    
    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label,
    .form-group select + label {
        right: 3rem;
        max-width: calc(100% - 4rem);
    }
    
    /* Article Responsive */
    .breadcrumb-container {
        top: 90px;
    }
    
    .article-main {
        padding-top: 170px;
    }
    
    .article-header {
        padding: 2rem 1.5rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-footer {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .materials-grid,
    .storage-solutions,
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .color-palette {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .breadcrumb-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-numbers-row {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .form-side-info {
        grid-template-columns: 1fr;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 3.5rem 1rem 1rem;
    }
    
    .form-group label {
        right: 2.5rem;
        max-width: calc(100% - 3.5rem);
        font-size: 0.9rem;
    }
    
    .form-group input:focus + label,
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:focus + label,
    .form-group textarea:not(:placeholder-shown) + label,
    .form-group select + label {
        right: 2.5rem;
        max-width: calc(100% - 3.5rem);
        font-size: 0.75rem;
    }
    
    /* Article Mobile */
    .breadcrumb-container {
        top: 85px;
    }
    
    .article-main {
        padding-top: 150px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-section h2 {
        font-size: 1.5rem;
    }
    
    .color-palette {
        grid-template-columns: 1fr;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Loading and Animation Classes */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* =========================== */
/* ARTICLES PAGE STYLES - الناقصة */
/* =========================== */

/* Articles Hero Section */
.articles-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.articles-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.articles-hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.articles-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.articles-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Articles Search */
.articles-search {
    margin-top: 2rem;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 18px 60px 18px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-family: 'Cairo', sans-serif;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: white;
}

.search-btn {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--secondary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

/* Articles Categories Filter */
.articles-categories {
    padding: 60px 0;
    background: rgba(248, 249, 250, 0.5);
    backdrop-filter: blur(10px);
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 52, 77, 0.3);
}

/* Articles Grid Section */
.articles-grid-section {
    padding: 80px 0 100px;
    background: #f8f9fa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Article Card */
.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 52, 77, 0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.article-card:nth-child(1) { animation-delay: 0.1s; }
.article-card:nth-child(2) { animation-delay: 0.2s; }
.article-card:nth-child(3) { animation-delay: 0.3s; }
.article-card:nth-child(4) { animation-delay: 0.4s; }
.article-card:nth-child(5) { animation-delay: 0.5s; }
.article-card:nth-child(6) { animation-delay: 0.6s; }
.article-card:nth-child(7) { animation-delay: 0.7s; }
.article-card:nth-child(8) { animation-delay: 0.8s; }
.article-card:nth-child(9) { animation-delay: 0.9s; }
.article-card:nth-child(10) { animation-delay: 1s; }

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 52, 77, 0.15);
}

.article-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(26, 52, 77, 0.3);
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.article-title a:hover {
    color: var(--secondary-color);
}

.article-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-btn {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.read-more-btn:hover::after {
    width: 100%;
}

.read-more-btn:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a4a6b 100%);
    color: white;
    text-align: center;
    position: relative;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(180, 153, 126, 0.3);
}

.newsletter-btn {
    padding: 15px 30px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* =========================== */
/* COMPARISON TABLE STYLES - للمقال الثامن */
/* =========================== */

.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 52, 77, 0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: 'Cairo', sans-serif;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-align: center;
    font-size: 1rem;
}

.comparison-table th:first-child {
    text-align: right;
    background: var(--secondary-color);
}

.comparison-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    transition: background 0.3s ease;
}

.comparison-table td:first-child {
    text-align: right;
    background: rgba(26, 52, 77, 0.05);
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-table tr:hover td {
    background: rgba(180, 153, 126, 0.1);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Rating Colors */
.comparison-table td:contains("ممتاز") {
    color: #27ae60;
    font-weight: 700;
}

.comparison-table td:contains("جيد") {
    color: #3498db;
    font-weight: 700;
}

.comparison-table td:contains("متوسط") {
    color: #f39c12;
    font-weight: 700;
}

.comparison-table td:contains("ضعيف") {
    color: #e74c3c;
    font-weight: 700;
}

.comparison-table td:contains("مرتفع") {
    color: #e74c3c;
    font-weight: 700;
}

.comparison-table td:contains("معقول") {
    color: #27ae60;
    font-weight: 700;
}

.comparison-table td:contains("قليل") {
    color: #27ae60;
    font-weight: 700;
}

.comparison-table td:contains("عالي") {
    color: #e74c3c;
    font-weight: 700;
}

/* =========================== */
/* ENHANCED ANIMATIONS - إضافية */
/* =========================== */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* =========================== */
/* RESPONSIVE للصفحات الجديدة */
/* =========================== */

@media (max-width: 768px) {
    .articles-hero-title {
        font-size: 2.5rem;
    }
    
    .articles-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .categories-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .articles-hero {
        padding: 100px 0 60px;
    }
    
    .articles-hero-title {
        font-size: 2rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .article-card {
        margin: 0 10px;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.3rem;
    }
}

/* =========================== */
/* UTILITY CLASSES - مساعدة */
/* =========================== */

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

.hidden { display: none; }
.visible { display: block; }

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}

.slide-in-top {
    animation: slideInFromTop 0.8s ease-out;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.rotate-in {
    animation: rotateIn 0.8s ease-out;
}

/* Success/Error States */
.success {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.error {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.warning {
    color: #f39c12;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.info {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    border: 1px solid rgba(52, 152, 219, 0.3);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
}

/* إخفاء العنصر بشكل افتراضي */
.mobile-only {
    display: none;
}

/* إظهاره فقط على الشاشات الصغيرة (الموبايل) */
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}

/* تعديلات Contact Section - أضف هذا بعد السطر 1131 في ملف style.css */

/* Contact Numbers Wrapper - للتحكم في الصفين */
.contact-numbers-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Numbers - Single Row تعديل من 5 أعمدة إلى 3 */
.contact-numbers-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Responsive Design Updates للموبايل */
@media (max-width: 1024px) {
    .contact-numbers-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-numbers-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-numbers-row {
        grid-template-columns: 1fr;
    }
}
