/* ==========================================
   ALOMLAQ WEBSITE - PROFESSIONAL STYLES
   ========================================== */

:root {
    --gold: #D4AF37;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #e0e0e0;
    --text: #333333;
    --accent: #B8860B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.company-name h1 {
    color: var(--gold);
    font-size: 24px;
    font-weight: 700;
}

.company-name p {
    color: var(--gray);
    font-size: 12px;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, var(--white) 100%);
}

.hero-content {
    animation: slideInRight 0.8s ease;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--accent));
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
}

.hero-image {
    animation: slideInLeft 0.8s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ==========================================
   SECTION STYLES
   ========================================== */

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    border-radius: 2px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--text);
    margin-bottom: 40px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 24px;
    color: var(--gold);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    margin-top: 15px;
}

.values-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--text);
}

.values-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 18px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */

.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark), #2a2a2a);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: var(--white);
    font-weight: 600;
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */

.products {
    padding: 80px 0;
    background: var(--light);
}

.products-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h4 {
    font-size: 20px;
    color: var(--dark);
    padding: 20px 20px 10px;
    font-weight: 700;
}

.product-card p {
    font-size: 14px;
    color: var(--text);
    padding: 0 20px;
    line-height: 1.6;
}

.product-specs {
    list-style: none;
    padding: 15px 20px 20px;
    margin-top: auto;
}

.product-specs li {
    font-size: 13px;
    color: var(--text);
    padding: 5px 0;
    padding-right: 20px;
    position: relative;
}

.product-specs li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ==========================================
   MANUFACTURING SECTION
   ========================================== */

.manufacturing {
    padding: 80px 0;
    background: var(--white);
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.manufacturing-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.step {
    background: linear-gradient(135deg, var(--light), #f9f9f9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
}

.step h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.step p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

.manufacturing-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.manufacturing-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ==========================================
   QUALITY SECTION
   ========================================== */

.quality {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, var(--light));
}

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

.quality-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold);
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.quality-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.quality-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.quality-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ==========================================
   MARKETS SECTION
   ========================================== */

.markets {
    padding: 80px 0;
    background: var(--white);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.market-card {
    background: linear-gradient(135deg, var(--light), #f9f9f9);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.market-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.market-card h4 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.market-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.industries {
    background: linear-gradient(135deg, var(--dark), #2a2a2a);
    padding: 40px;
    border-radius: 15px;
    color: var(--white);
}

.industries h3 {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.industries-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.industries-list li {
    padding: 12px 0;
    padding-right: 25px;
    position: relative;
    font-size: 15px;
}

.industries-list li::before {
    content: '→';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */

.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, var(--light));
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.reason-card h4 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */

.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--gray);
    background: var(--white);
    color: var(--text);
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */

.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5, var(--light));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.info-card h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.info-card p {
    font-size: 14px;
    color: var(--text);
}

.info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: linear-gradient(135deg, var(--dark), #2a2a2a);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    padding-right: 15px;
    position: relative;
}

.footer-section ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--gold);
}

.footer-section a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gray);
    font-size: 14px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--dark);
        gap: 0;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .about-content,
    .manufacturing-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manufacturing-steps {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .quality-grid,
    .reasons-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .industries-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .nav-menu {
        gap: 0;
    }

    .logo-section {
        gap: 10px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .company-name h1 {
        font-size: 18px;
    }

    .stat-number {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ==========================================
   PERFORMANCE & OPTIMIZATION
   ========================================== */

img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading images */
img[loading="lazy"] {
    background: var(--light);
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .contact-form {
        display: none;
    }
}
