/*
Theme Name: TS Alrahwan Zahby
Theme URI: https://www.alrahwanzahby.com
Author: TS Developer
Description: قالب احترافي لشركة الرهوان الذهبي للشحن الدولي ونقل العفش
Version: 1.0
*/

/* =========================
   ROOT COLORS
========================= */
:root {
    --gold: #D4AF37;
    --black: #0b0b0b;
    --dark: #111;
    --red: #c0392b;
    --blue: #0d1b2a;
    --white: #ffffff;
    --gray: #f5f5f5;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
}

/* =========================
   CONTAINER SYSTEM
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-box {
    padding: 60px 0;
}

/* =========================
   BUTTONS
========================= */
.btn {
    padding: 12px 25px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-gold {
    background: var(--gold);
    color: #000;
}

.btn-red {
    background: var(--red);
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =========================
   HEADER (مبدئي)
========================= */
.site-header {
    background: rgba(0,0,0,0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* =========================
   MOBILE MENU BUTTON
========================= */
.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
}

/* =========================
   LOGO
========================= */
.logo img {
    height: 50px;
}

/* =========================
   NAV MENU
========================= */
.main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--gold);
}

/* =========================
   HEADER ACTIONS
========================= */
.header-actions {
    display: flex;
    gap: 10px;
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1000;
    transition: 0.4s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 40px;
}

.mobile-menu ul {
    list-style: none;
    margin-top: 40px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

.close-menu {
    font-size: 28px;
    cursor: pointer;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 992px){

    .main-nav,
    .header-actions {
        display: none;
    }

}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    top: 0;
    left: 0;
}

/* Content */
.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    color: #ddd;
}

/* =========================
   TRUST SLIDER
========================= */
.trust-slider {
    position: absolute;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    z-index: 3;
}

.trust-track {
    display: flex;
    animation: scroll 20s linear infinite;
}

.trust-item {
    min-width: 250px;
    margin: 10px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.4);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    text-align: center;
}

.trust-item span {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.trust-item h4 {
    color: var(--gold);
    margin-bottom: 5px;
}

/* Animation */
@keyframes scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(-50%);}
}

/* =========================
   MOBILE HERO
========================= */
@media (max-width:768px){

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .trust-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-item {
        width: 45%;
    }

}

.quote-section{
background:#111;
border-top:2px solid #D4AF37;
}

.section-title{
text-align:center;
margin-bottom:40px;
font-size:32px;
color:#D4AF37;
}

.quote-form{
background:#1a1a1a;
padding:40px;
border-radius:10px;
border:1px solid rgba(212,175,55,0.3);
}

.form-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group label{
margin-bottom:5px;
font-weight:bold;
}

.form-group input,
.form-group select,
.form-group textarea{
padding:12px;
border-radius:6px;
border:1px solid #333;
background:#000;
color:#fff;
}

textarea{
min-height:120px;
}

.submit-btn{
margin-top:25px;
font-size:18px;
}

/* Mobile */

@media(max-width:768px){

.form-grid{
grid-template-columns:1fr;
}

.quote-form{
padding:25px;
}

}

/* =========================
   FEATURES SECTION
========================= */

.features-section{
background:#8b1e1e;
padding:70px 0;
}

.features-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

/* CARD */

.feature-card{

background:#fff;
color:#222;
padding:30px;
border-radius:10px;
text-align:center;
transition:0.35s;
border:1px solid rgba(0,0,0,0.05);

}

/* ICON */

.feature-icon{

font-size:40px;
margin-bottom:15px;

}

/* TITLE */

.feature-card h3{

font-size:20px;
margin-bottom:10px;
color:#000;

}

/* TEXT */

.feature-card p{

font-size:15px;
line-height:1.6;

}

/* HOVER EFFECT */

.feature-card:hover{

transform:translateY(-6px);
box-shadow:0 10px 25px rgba(212,175,55,0.25);

}


/* =========================
   TABLET
========================= */

@media (max-width:1024px){

.features-grid{

grid-template-columns:repeat(2,1fr);

}

}


/* =========================
   MOBILE
========================= */

@media (max-width:768px){

.features-section{
padding:40px 15px;
}

.features-grid{

grid-template-columns:1fr;
gap:20px;

}

.feature-card{

padding:25px;

}

.feature-icon{

font-size:32px;

}

.feature-card h3{

font-size:18px;

}

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

.features-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:600px){

.features-grid{
grid-template-columns:1fr;
}

.feature-card{
padding:25px;
}

}

/* WHY SECTION */

.why-section{

background:#0d0d0d;

}

.why-container{

max-width:1200px;

}

.why-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.why-image img{

width:100%;

border-radius:10px;

}

/* CONTENT */

.why-content h2{

font-size:32px;

margin-bottom:25px;

color:var(--gold);

}

/* LIST */

.why-list{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

margin-bottom:30px;

}

.why-item{

display:flex;

gap:10px;

align-items:flex-start;

font-size:15px;

}

.why-item span{

font-size:20px;

}

/* BUTTON */

.why-btn{

font-size:18px;

}

/* TABLET */

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

}

/* MOBILE */

@media(max-width:600px){

.why-list{

grid-template-columns:1fr;

}

}

/* =========================
   LOGISTICS SECTION
========================= */

.logistics-section{

background:#f5f5f5;
color:#222;

}

.logistics-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;

}

/* IMAGE */

.logistics-image img{

width:100%;
border-radius:10px;

}

/* CONTENT */

.logistics-content h2{

font-size:30px;
margin-bottom:20px;
color:#000;

}

.logistics-content p{

margin-bottom:25px;
line-height:1.8;

}

/* SERVICES LIST */

.services-list{

display:grid;
grid-template-columns:1fr 1fr;
gap:15px;

}

.service-item{

display:flex;
gap:10px;
align-items:flex-start;

}

.service-item span{

font-size:20px;
color:#D4AF37;

}

/* TABLET */

@media(max-width:992px){

.logistics-grid{
grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.services-list{
grid-template-columns:1fr;
}

}

/* =========================
   EXPERTS SECTION
========================= */

.experts-section{

background:#ffffff;
color:#222;

}

.experts-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;

}

/* IMAGE */

.experts-image img{

width:100%;
border-radius:10px;

}

/* CONTENT */

.experts-content h2{

font-size:30px;
margin-bottom:20px;
color:#000;

}

.experts-content p{

line-height:1.8;
margin-bottom:30px;

}

/* SERVICES GRID */

.experts-services{

display:grid;
grid-template-columns:1fr 1fr;
gap:20px;

}

/* CARD */

.experts-card{

background:#f7f7f7;
padding:25px;
border-radius:8px;
transition:0.3s;
border:1px solid rgba(0,0,0,0.05);

}

.experts-card:hover{

transform:translateY(-5px);
box-shadow:0 10px 25px rgba(212,175,55,0.25);

}

.experts-icon{

font-size:28px;
margin-bottom:10px;
color:#D4AF37;

}

.experts-card h3{

margin-bottom:10px;
font-size:18px;

}

/* TABLET */

@media(max-width:992px){

.experts-grid{

grid-template-columns:1fr;

}

}

/* MOBILE */

@media(max-width:600px){

.experts-services{

grid-template-columns:1fr;

}

}

/* =========================
   GLOW CARDS SECTION
========================= */

.glow-section{
background:#050505;
text-align:center;
}

.glow-title{
color:#fff;
font-size:32px;
margin-bottom:10px;
}

.glow-subtitle{
color:#aaa;
margin-bottom:40px;
}

/* GRID */

.glow-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

/* CARD */

.glow-card{

background:#0d0d0d;
padding:25px;
border-radius:10px;
text-decoration:none;
color:#fff;
border:1px solid rgba(212,175,55,0.3);
transition:0.4s;
position:relative;
overflow:hidden;

}

/* ICON */

.glow-icon{
font-size:30px;
margin-bottom:10px;
}

/* TITLE */

.glow-card h3{
font-size:18px;
margin-bottom:8px;
}

/* TEXT */

.glow-card p{
font-size:14px;
color:#ccc;
}

/* GLOW EFFECT */

.glow-card:hover{
transform:translateY(-8px);
box-shadow:0 0 20px rgba(212,175,55,0.4);
border-color:#D4AF37;
}

/* TABLET */

@media(max-width:992px){

.glow-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.glow-grid{
grid-template-columns:1fr;
}

}

/* =========================
   POSTS SECTION
========================= */

.posts-section{
background:#0a0a0a;
text-align:center;
}

/* TITLE */

.posts-title{
color:#fff;
font-size:30px;
margin-bottom:10px;
}

.posts-subtitle{
color:#bbb;
margin-bottom:40px;
}

/* GRID */

.posts-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.post-card{
overflow:hidden;
border-radius:10px;
border:1px solid rgba(212,175,55,0.2);
transition:0.3s;
}

.post-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(212,175,55,0.3);
}

/* IMAGE */

.post-image{
position:relative;
}

.post-image img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* OVERLAY */

.post-overlay{
position:absolute;
bottom:0;
width:100%;
padding:15px;
background:linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.post-overlay h3{
color:#fff;
font-size:16px;
}

/* BUTTON */

.posts-btn-wrap{
margin-top:40px;
}

/* TABLET */

@media(max-width:992px){

.posts-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.posts-grid{
grid-template-columns:1fr;
}

.post-image img{
height:200px;
}

}

/* =========================
   FOOTER
========================= */

.site-footer{
background:#000;
color:#fff;
}

/* TOP STRIP */

.footer-top{
background:#D4AF37;
color:#000;
padding:15px 0;
}

.footer-top-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.footer-search{
display:flex;
gap:10px;
}

.footer-search select,
.footer-search button{
padding:10px;
border:none;
border-radius:5px;
}

.footer-search button{
background:#000;
color:#fff;
}

/* MAIN FOOTER */

.footer-main{
padding:50px 0;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.footer-logo{
width:150px;
margin-bottom:15px;
}

.footer-col h4{
margin-bottom:15px;
color:#D4AF37;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col a{
color:#fff;
text-decoration:none;
}

.footer-col a:hover{
color:#D4AF37;
}

/* SEO TEXT */

.footer-seo{
text-align:center;
font-size:12px;
color:#777;
padding:20px;
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
padding:15px;
border-top:1px solid #222;
}

/* MOBILE */

@media(max-width:768px){

.footer-top-inner{
flex-direction:column;
}

.footer-grid{
grid-template-columns:1fr;
}

.footer-search{
flex-direction:column;
width:100%;
}

.footer-search select,
.footer-search button{
width:100%;
}

}

/* =========================
   SINGLE ARTICLE
========================= */

.single-section{
background:#111;
}

.single-container{
max-width:900px;
}

.article-title{
font-size:36px;
margin-bottom:15px;
color:#fff;
}

.article-meta{
color:#aaa;
margin-bottom:25px;
}

.article-image img{
width:100%;
border-radius:10px;
margin-bottom:25px;
}

/* CONTENT */

.article-content{
font-size:18px;
line-height:1.9;
color:#ddd;
}

/* HEADINGS */

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6{

background:#1c1c1c;
padding:15px;
border-right:5px solid #D4AF37;
border-radius:6px;
margin:30px 0 15px;
color:#fff;

}

/* PARAGRAPHS */

.article-content p{
margin-bottom:20px;
}

/* LISTS */

.article-content ul{
margin-bottom:20px;
padding-right:20px;
}

/* TABLE */

.article-content table{
width:100%;
border-collapse:collapse;
margin:20px 0;
background:#1b1b1b;
}

.article-content table th,
.article-content table td{
border:1px solid #333;
padding:12px;
text-align:center;
}

.article-content table th{
background:#D4AF37;
color:#000;
}

/* CTA BOX */

.article-cta{

margin-top:40px;
background:#1a1a1a;
padding:30px;
border-radius:10px;
border:1px solid rgba(212,175,55,0.4);
text-align:center;

}

.article-cta h3{
color:#D4AF37;
margin-bottom:10px;
}

/* MOBILE */

@media(max-width:768px){

.article-title{
font-size:26px;
}

.article-content{
font-size:16px;
}

}

/* TOC */

.toc-box{

background:#1a1a1a;
padding:20px;
border-radius:8px;
border:1px solid rgba(212,175,55,0.4);
margin:25px 0;

}

.toc-box h3{
color:#D4AF37;
margin-bottom:10px;
}

.toc-box ul{
list-style:none;
}

.toc-box li{
margin-bottom:8px;
}

.toc-box a{
color:#fff;
text-decoration:none;
}

.toc-box a:hover{
color:#D4AF37;
}

/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{

position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:26px;
z-index:999;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
transition:0.3s;

}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* MOBILE */

@media(max-width:768px){

.whatsapp-float{
bottom:20px;
right:15px;
}

}

/* =========================
   SCROLL TO TOP
========================= */

#scrollTopBtn{

position:fixed;
bottom:25px;
left:50%;
transform:translateX(-50%);
background:#D4AF37;
color:#000;
border:none;
width:40px;
height:40px;
border-radius:50%;
cursor:pointer;
display:none;
z-index:999;
font-size:18px;

}

/* TRACK PAGE */

.track-section{
background:#111;
text-align:center;
}

.track-container{
max-width:600px;
}

.track-title{
font-size:34px;
margin-bottom:10px;
color:#D4AF37;
}

.track-desc{
color:#bbb;
margin-bottom:30px;
}

.track-form{

background:#1a1a1a;
padding:35px;
border-radius:10px;
border:1px solid rgba(212,175,55,0.4);

}

.track-form .form-group{

margin-bottom:20px;
text-align:right;

}

.track-form label{

display:block;
margin-bottom:5px;

}

.track-form input,
.track-form textarea{

width:100%;
padding:12px;
border-radius:6px;
border:1px solid #333;
background:#000;
color:#fff;

}

.track-btn{

width:100%;
font-size:18px;

}

/* MOBILE */

@media(max-width:768px){

.track-title{
font-size:26px;
}

}

/* SVG ICONS */

.icon{
width:32px;
height:32px;
color:#D4AF37; /* اللون الذهبي */
transition:0.3s;
}

/* Hover */

.feature-card:hover .icon,
.glow-card:hover .icon,
.experts-card:hover .icon{
color:#ffffff;
}

/* =========================
FLOATING BUTTONS FIX
========================= */

.floating-buttons{

position:fixed;
bottom:20px;
right:15px;
display:flex;
flex-direction:column;
gap:12px;
z-index:9999;

}

.call-float,
.whatsapp-float{

width:50px;
height:50px;
font-size:20px;

}

/* MOBILE تحسين */

@media (max-width:768px){

.floating-buttons{
bottom:15px;
right:10px;
}

}

/* =========================
FIX HERO FEATURES MOBILE
========================= */

@media (max-width:768px){

.trust-slider,
.hero-features{

position:relative !important;
bottom:auto !important;
margin-top:20px;
padding:15px;

}

.trust-track{

animation:none;
flex-wrap:wrap;
justify-content:center;
gap:10px;

}

.trust-item{

width:48%;
min-width:auto;

}

}

.mobile-menu{
z-index:99999;
}