/* assets/css/style.css */

/*======================================
  ARKAN SHARQ
  Premium Website
======================================*/

:root {
    --gold: #b9924b;
    --gold-hover: #9d7c3c;
    --dark-bg: #1a1a1a;
    --charcoal: #222222;
    --dark-gray: #333333;
    --soft-gray: #f8f8f8;
    --white: #ffffff;
    --text-muted: #666666;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    line-height: 1.8;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Typography & Helpers */
.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-gray { color: #aaaaaa !important; }
.text-ltr { direction: ltr; display: inline-block; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.position-relative { position: relative; z-index: 2; }
.d-flex-end { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(185, 146, 75, 0.2);
}

.btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(185, 146, 75, 0.4);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    color: var(--charcoal);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-4px);
    color: var(--white);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/*================ HEADER ================*/
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: var(--transition);
    padding: 15px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*================ LOGO ================*/
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    width: 65px;
    height: auto;
    transition: var(--transition);
}

.logo-text h2 {
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    transition: var(--transition);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    color: #eeeeee;
    font-size: 14px;
    transition: var(--transition);
}

header.scrolled .logo-text h2 {
    color: var(--gold);
}

header.scrolled .logo-text span {
    color: var(--text-muted);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/*================ NAV ================*/
nav ul {
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--white);
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
}

header.scrolled nav a {
    color: var(--charcoal);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    right: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

nav a:hover {
    color: var(--gold);
}

header.scrolled nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 100%;
}

/*================ HERO ================*/
.hero {
    position: relative;
    height: 100vh;
    background: url('../images/hero.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 90%;
    max-width: 900px;
}

.subtitle {
    display: inline-block;
    color: #d9bb7c;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero p {
    font-size: 22px;
    color: #eeeeee;
    margin-bottom: 45px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/*================ ABOUT ================*/
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.section-title-small {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about h2 {
    font-size: 44px;
    margin-bottom: 25px;
    line-height: 1.4;
    color: var(--charcoal);
    font-weight: 800;
}

.about p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 2;
}

.about-features {
    margin: 35px 0;
}

.feature {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/*================ VISION MISSION VALUES ================*/
.vmv {
    padding: 120px 0;
    background: var(--soft-gray);
}

.section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.section-heading span {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 42px;
    margin: 20px 0;
    color: var(--charcoal);
    font-weight: 800;
}

.section-heading p {
    color: var(--text-muted);
    line-height: 2;
    font-size: 18px;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.vmv-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.02);
}

.vmv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(185, 146, 75, 0.15);
    border-color: rgba(185, 146, 75, 0.2);
}

.vmv-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(185, 146, 75, 0.3);
}

.vmv-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.vmv-card h3 {
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--charcoal);
    font-weight: 700;
}

.vmv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/*================ SERVICES ================*/
.services {
    padding: 120px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    background: var(--white);
}

.service-card .img-wrapper {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(185, 146, 75, 0.25);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    padding: 40px 25px 25px;
    color: var(--white);
    transition: var(--transition);
}

.service-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gold);
}

.service-overlay p {
    font-size: 15px;
    color: #dddddd;
    line-height: 1.6;
    opacity: 0.9;
}

/*================ PRODUCTS GALLERY ================*/
.products {
    padding: 120px 0;
    background: var(--soft-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(185, 146, 75, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    font-size: 40px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 50px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-lightbox:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

/*================ WHY CHOOSE US ================*/
.why-choose-us {
    position: relative;
    padding: 120px 0;
    background: url('../images/product1.jpg') center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.why-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.9);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.counter-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.counter-card:hover {
    background: rgba(185, 146, 75, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.counter-card i {
    font-size: 45px;
    color: var(--gold);
    margin-bottom: 20px;
}

.counter-num {
    font-size: 50px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1;
}

.counter-num::after {
    content: '%';
    font-size: 30px;
    color: var(--gold);
}

.counter-card p {
    color: #cccccc;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/*================ CONTACT ================*/
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--charcoal);
    margin-bottom: 20px;
    font-weight: 800;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: rgba(185, 146, 75, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    min-height: 400px;
}

/*================ FOOTER ================*/
footer {
    background: var(--dark-bg);
    color: #bbbbbb;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #bbbbbb;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-right: 10px;
}

.contact-list-footer li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-list-footer i {
    color: var(--gold);
    font-size: 18px;
}

.footer-bottom {
    background: #111111;
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    font-size: 15px;
    color: #888888;
}

/*================ RESPONSIVE ================*/
@media(max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 992px) {
    .hero h1 { font-size: 46px; }
    .hero p { font-size: 19px; }
    nav ul { gap: 18px; }
    .about-container { grid-template-columns: 1fr; }
    .about h2 { font-size: 38px; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 18px; }
    .btn { width: 100%; max-width: 300px; }
    .vmv-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .section-heading h2 { font-size: 32px; }
}