* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: #f5f5f5;
    color: #333;
    line-height: 1.8;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #3c3c3c 0%, #4a4a4a 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #3c3c3c;
    padding: 10px 0;
    text-align: center;
    color: #D4AF37;
    font-size: 14px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    flex-wrap: wrap;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    color: #D4AF37;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
     width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 20px;
    font-weight: bold;
        margin: 10px;
}

.logo span {
    color: #fff;
    font-size: 15px;
    display: block;
    font-weight: 500;
    font-family: 'Tajawal', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: #D4AF37;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23222" width="1200" height="600"/><path fill="%23333" d="M0 300L50 280Q100 260 150 270T250 280L300 285Q350 290 400 275T500 260L550 255Q600 250 650 265T750 280L800 290Q850 300 900 285T1000 270L1050 275Q1100 280 1150 285L1200 290V600H0Z"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 120px 5% 80px;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 52px;
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 20px;
    color: #D4AF37;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: fadeInDown 1s;
    letter-spacing: 1px;
}

.hero p {
    font-size: 26px;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s;
}

.btn {
    padding: 15px 35px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: #D4AF37;
    color: #000;
    box-shadow: 0 5px 15px rgba(212,175,55,0.4);
}

.btn-primary:hover {
    background: #f0c844;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212,175,55,0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #D4AF37;
}

.btn-secondary:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-3px);
}

/* Brands Section */
.brands {
    background: #fff;
    padding: 60px 5%;
    text-align: center;
}

.brands h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.brands h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #D4AF37;
    margin: 15px auto;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.brand-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.brand-item:hover {
    transform: translateY(-10px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.brand-item h3 {
    color: #1a1a1a;
    font-size: 22px;
    margin-top: 15px;
}

/* Content Sections */
section {
    padding: 80px 5%;
}

.section-light {
    background: #f9f9f9;
}

.section-dark {
    background: #d1d1d1;
    color: #fff;
}

section h2 {
    font-size: 40px;
    font-weight: 900;
    font-family: 'Cairo', sans-serif;
    margin-bottom: 30px;
    color: inherit;
    text-align: center;
    letter-spacing: 1px;
}

section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #D4AF37;
    margin: 15px auto;
}

/* About Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 2;
    font-size: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: #D4AF37;
    color: #000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #D4AF37 0%, #f0c844 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #000;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    color: #D4AF37;
    font-weight: bold;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #333;
}

.contact-item strong {
    color: #D4AF37;
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: #444;
    margin: 0;
}

.contact-item .icon {
    font-size: 24px;
    color: #D4AF37;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #D4AF37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 450px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.offer-card {
    background: linear-gradient(135deg, #D4AF37 0%, #f0c844 100%);
    color: #000;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.5);
}

.offer-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.offer-badge {
    background: #3c3c3c;
    color: #D4AF37;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #3c3c3c;
    color: #fff;
    padding: 50px 5%;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
    text-align: right;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #D4AF37;
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    color: #D4AF37;
    font-size: 24px;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
    color: #f0c844;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 30px;
    color: #999;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.5);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

/* Custom Styles */
.brand-icon {
    font-size: 48px;
}

.offer-text {
    margin-top: 15px;
    font-weight: bold;
}

.contact-form h3 {
    color: #D4AF37;
    margin-bottom: 20px;
}

.form-submit-button {
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        background: #4a4a4a;
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 28px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .footer-content {
        text-align: center;
    }
}

.offices {
    display: flex;
    justify-content: center;
    align-items: center;
}

.row {
    margin: 0px  !important;   
}


strong, a, h3, label, input, select, p, button {
    font-family: 'Cairo' !important;
}