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

body{
font-family:'Cairo',sans-serif;
background:#070707;
color:white;
overflow-x:hidden;
line-height:1.9;
}

.hero{
position:relative;
min-height:100vh;
background:
url('https://images.unsplash.com/photo-1513828583688-c52646db42da?q=80&w=1600&auto=format&fit=crop');
background-size:cover;
background-position:center;
display:flex;
flex-direction:column;
padding:30px 7%;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.9));
}

.navbar{
position:relative;
z-index:2;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.logo{
font-size:42px;
font-weight:900;
color:#d4a24b;
letter-spacing:1px;
}

.lang-switch{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.lang-switch button{
padding:10px 18px;
background:rgba(255,255,255,.06);
border:1px solid rgba(212,162,75,.5);
color:white;
border-radius:12px;
backdrop-filter:blur(10px);
cursor:pointer;
transition:.3s;
}

.lang-switch button:hover{
background:#d4a24b;
color:black;
}

.hero-content{
position:relative;
z-index:2;
max-width:850px;
margin:auto;
text-align:center;
}

.hero-content h1{
font-size:72px;
font-weight:900;
line-height:1.4;
margin-bottom:20px;
color:#fff;
}

.hero-content p{
font-size:24px;
color:#cfcfcf;
margin-bottom:35px;
}

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

.primary-btn,
.secondary-btn,
.order-btn,
.contact-btn{
display:inline-block;
padding:16px 34px;
border-radius:14px;
font-size:18px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.primary-btn,
.order-btn,
.contact-btn{
background:linear-gradient(135deg,#d4a24b,#ffcb70);
color:black;
box-shadow:0 0 25px rgba(212,162,75,.35);
}

.secondary-btn{
border:1px solid rgba(255,255,255,.25);
background:rgba(255,255,255,.05);
color:white;
backdrop-filter:blur(8px);
}

.primary-btn:hover,
.secondary-btn:hover,
.order-btn:hover,
.contact-btn:hover{
transform:translateY(-4px);
}

.intro,
.products,
.history,
.contact{
padding:100px 8%;
}

.intro-box,
.contact-card{
background:linear-gradient(180deg,#151515,#0f0f0f);
border:1px solid rgba(212,162,75,.2);
border-radius:28px;
padding:50px;
box-shadow:0 0 40px rgba(0,0,0,.4);
}

.intro-box h2,
.products h2,
.history h2,
.contact-card h2{
font-size:46px;
margin-bottom:30px;
color:#d4a24b;
text-align:center;
}

.intro-box p,
.history p{
font-size:20px;
color:#d6d6d6;
text-align:center;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
margin-top:50px;
}

.product-card{
background:linear-gradient(180deg,#171717,#101010);
border:1px solid rgba(212,162,75,.2);
border-radius:28px;
padding:30px;
transition:.4s;
position:relative;
overflow:hidden;
}

.product-card::before{
content:'';
position:absolute;
top:-100px;
left:-100px;
width:220px;
height:220px;
background:rgba(212,162,75,.08);
border-radius:50%;
}

.product-card:hover{
transform:translateY(-8px);
border-color:#d4a24b;
}

.product-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:25px;
gap:15px;
}

.product-header h3{
font-size:34px;
color:#fff;
}

.product-header span{
background:#d4a24b;
color:black;
padding:8px 14px;
border-radius:30px;
font-size:14px;
font-weight:700;
}

table{
width:100%;
border-collapse:collapse;
margin-bottom:25px;
position:relative;
z-index:2;
}

td{
padding:15px;
border-bottom:1px solid rgba(255,255,255,.08);
font-size:17px;
}

.contact{
display:flex;
justify-content:center;
}

.contact-card{
max-width:700px;
width:100%;
text-align:center;
}

.contact-card p{
font-size:22px;
margin-bottom:18px;
}

footer{
padding:35px;
text-align:center;
background:black;
color:#888;
font-size:16px;
border-top:1px solid rgba(255,255,255,.08);
}

@media(max-width:768px){

.hero{
padding:25px;
}

.logo{
font-size:28px;
width:100%;
text-align:center;
}

.navbar{
justify-content:center;
}

.hero-content h1{
font-size:38px;
}

.hero-content p{
font-size:18px;
}

.intro-box h2,
.products h2,
.history h2,
.contact-card h2{
font-size:32px;
}

.product-header{
flex-direction:column;
align-items:flex-start;
}

.product-header h3{
font-size:28px;
}

td{
font-size:14px;
padding:12px 8px;
}

.primary-btn,
.secondary-btn,
.order-btn,
.contact-btn{
width:100%;
text-align:center;
}

.contact-card p{
font-size:18px;
}

}
