/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
    --brand-blue: #383E92;
    --brand-blue-dark: #30347C;
    --brand-blue-light: #5F619B;
    --brand-red: #E82830;
    --brand-red-dark: #C92930;
    --brand-red-light: #F69A9D;
    --brand-bg: #F7F8FC;
    --brand-text: #25284A;
    --brand-white: #ffffff;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--brand-bg);
    color: var(--brand-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.3;
}

h1 .highlight {
    color: var(--brand-red);
    position: relative;
    display: inline-block;
}

h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--brand-red-light), var(--brand-red));
    border-radius: 4px;
    z-index: -1;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red));
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--brand-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Top Bar - Responsive
   ======================================== */
.top-bar {
    background: var(--brand-blue-dark);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar__contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar__contacts a {
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar__contacts a:hover {
    color: var(--brand-red-light);
}

.top-bar__social {
    display: flex;
    gap: 15px;
}

.top-bar__social a {
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.top-bar__social a:hover {
    color: var(--brand-red-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar__contacts span {
        display: none;
    }
    
    .top-bar__contacts a i {
        font-size: 1.2rem;
    }
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background: var(--brand-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand-blue);
}

@media (max-width: 600px) {
    .logo span {
        display: none;
    }
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--brand-blue);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--brand-text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--brand-red);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--brand-red);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--brand-white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: 0.3s;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(56,62,146,0.88), rgba(232,40,48,0.85));
    z-index: 1;
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
}

.hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero__content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero__content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@media (max-width: 768px) {
    .hero__content h1 {
        font-size: 2.2rem;
    }
    
    .hero__content p {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 85vh;
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red), var(--brand-red-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(232,40,48,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232,40,48,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--brand-red);
    transform: translateY(-3px);
}

.btn-outline--dark {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
}

.btn-outline--dark:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-3px);
}

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image__main {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image__main img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image__main:hover img {
    transform: scale(1.05);
}

.about-image__accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--brand-red);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: center;
}

.about-feature__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-blue-light), var(--brand-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Stats Section
   ======================================== */
.stats {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item__number {
    font-size: 3rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--brand-white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    color: var(--brand-blue);
    margin-bottom: 12px;
}

.service-card p {
    color: #666;
}

/* ========================================
   Products Section
   ======================================== */
.products-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.category-pill {
    background: var(--brand-white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: inherit;
    font-weight: 600;
    color: var(--brand-text);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-pill.active,
.category-pill:hover {
    background: var(--brand-red);
    color: white;
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--brand-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__overlay span {
    background: var(--brand-red);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.product-card__body {
    padding: 18px;
}

.product-card__category {
    display: inline-block;
    background: var(--brand-blue-light);
    color: white;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.product-card__body h3 {
    font-size: 1.1rem;
    color: var(--brand-blue);
}

.products-more {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--brand-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.contact-card__icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--brand-red-light), var(--brand-red));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
}

.contact-card h4 {
    color: var(--brand-blue);
    margin-bottom: 5px;
}

.contact-card a,
.contact-card p {
    color: #555;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--brand-red);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

.contact-form {
    background: var(--brand-white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--brand-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* ========================================
   Footer - جميع النصوص بيضاء
   ======================================== */
.footer {
    background: var(--brand-blue-dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-red);
    transform: translateY(-3px);
}

.footer h4 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #ffffff;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-red);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-red-light);
    padding-right: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #ffffff;
}

/* روابط التواصل في الفوتر */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-contact li i {
    color: var(--brand-red-light);
    margin-left: 8px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--brand-red-light);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* ========================================
   Floating Buttons
   ======================================== */
.floating-actions {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.floating-btn--whatsapp { background: #25D366; }
.floating-btn--call { background: var(--brand-red); }
.floating-btn--messenger { background: #0084FF; }

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn__tooltip {
    position: absolute;
    right: 70px;
    background: var(--brand-blue-dark);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-btn:hover .floating-btn__tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

@media (max-width: 576px) {
    .floating-actions {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-red);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close:hover {
    transform: rotate(90deg);
}

/* ========================================
   Page Hero (for products page)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* ========================================
   Product Sections (products page)
   ======================================== */
.product-section {
    margin-bottom: 60px;
}

.product-section__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--brand-red);
}

.product-section__title h2 {
    color: var(--brand-blue);
    font-size: 1.8rem;
}

.product-section__title span {
    background: var(--brand-blue-light);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}
/* ========================================
   إجبار جميع نصوص الفوتر على اللون الأبيض
   ======================================== */
.footer,
.footer *,
.footer-links a,
.footer-links li a,
.footer-col ul li a,
.footer-col h4,
.footer-col p,
.footer-bottom p,
.footer-contact li,
.footer-contact li a {
    color: #ffffff !important;
}