/* ==========================
   Y R 
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    line-height:1.6;
}
/* =========================
   HEADER
========================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;

    background: #3b3129af;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 6px 35px;

    box-sizing: border-box;

    z-index: 1000;

    box-shadow: 0 2px 12px rgba(0,0,0,0.10);

    font-family: Arial, sans-serif;
}


/* =========================
   LEFT SIDE
========================= */

.header-left {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 125px;
    height: auto;
    display: block;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;

    color: #fafafa;

    transition: 0.3s;
}

.contact-info a:hover {
    color: #b38b2e;
}

.contact-info span {
    font-size: 20px;
}

.contact-info small {
    display: block;
    font-size: 11px;
    color: #dfaf13;
    margin-bottom: 2px;
}

.contact-info strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   QUICK LINKS
========================= */

.quick-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: 400px;
}

.quick-links a {
    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.quick-links a:hover {
    color: #b38b2e;
}


/* =========================
   CONTACT BUTTON
========================= */

.contact-button {
    background: #b38b2e !important;

    color: #ffffff !important;

    padding: 11px 20px;

    border-radius: 5px;

    transition: 0.3s;
}

.contact-button:hover {
    background: #8f6d20 !important;
}


/* =========================
   SCROLLED HEADER
========================= */

.main-header.scrolled {
    background: #ffffff;

    box-shadow: 0 3px 18px rgba(0,0,0,0.15);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .main-header {
        height: 70px;
        padding: 5px 15px;
    }

    .logo img {
        width: 105px;
    }

     

    .quick-links {
        gap: 12px;
    }

    .quick-links a {
        font-size: 12px;
    }

    .contact-button {
        padding: 8px 12px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 600px) {

    .main-header {
        height: 65px;
    }

    .logo img {
        width: 95px;
    }

    .quick-links a:not(.contact-button) {
        display: none;
    }

    .contact-button {
        display: block;
    }
}
 
/* HERO */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}
.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0, 0, 0, 0.416);
}

.hero-content{
    position:relative;
    z-index:2;
    width:90%;
    max-width:900px;
}

.hero h1{
    color:#fff;
    font-size:62px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.hero p{
    color:#ce9313;
    font-size:20px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-main{
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    padding:16px 38px;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.btn-main:hover{
    transform:translateY(-5px);
}

.btn-second{
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    padding:16px 38px;
    border-radius:50px;
    transition:.3s;
}

.btn-second:hover{
    background:#fff;
    color:#111;
}

.hero-stats{
    margin-top:70px;
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
}

.hero-stats h2{
    color:#d4af37;
    font-size:42px;
}

.hero-stats span{
    color:#fff;
}

.seo-text {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    transform: translateX(30px); /* حركو 30px لليمين */
}

/* SERVICES */

.services{
    padding:110px 8%;
}

.title{
    text-align:center;
    margin-bottom:60px;
}

.title h2{
    font-size:42px;
    margin-bottom:10px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:50px;
    color:#987603;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:15px;
    font-size:24px;
}

.card p{
    color:#666;
}

/* RESPONSIVE */

@media(max-width:991px){

nav{
display:none;
}

.menu-btn{
display:block;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.hero-stats{
gap:35px;
}

}

@media(max-width:768px){

header{
padding:20px;
}

.hero h1{
font-size:34px;
}

.title h2{
font-size:32px;
}

}
/* ===========================
   ARTICLES
=========================== */

.articles{
    padding:100px 8%;
    background:#f8f9fb;
}

.article-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    margin-top:50px;
}

.article-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.article-card:hover{
    transform:translateY(-10px);
}

.article-card img{
    width:100%;
    height: 200px;
    object-fit:cover;
}

.article-content{
    padding:30px;
}

.badge{
    display:inline-block;
    background:#d4af37;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:18px;
}

.article-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.article-content p{
    color:#666;
    margin-bottom:25px;
    line-height:1.8;
}

.read-more{
    color:#d4af37;
    text-decoration:none;
    font-weight:600;
}

.read-more i{
    margin-left:8px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#111;
    color:#fff;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:45px;
    padding:80px 0;
}

.footer-col h3{
    margin-bottom:25px;
    color:#d4af37;
}

.footer-col p{
    color:#bbb;
    line-height:1.8;
    margin-bottom:12px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:12px;
}

.footer-col ul li a{
    color:#bbb;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#d4af37;
}

.social{
    margin-top:20px;
}

.social a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:#222;
    color:#fff;
    text-decoration:none;
    margin-right:10px;
    transition:.3s;
}

.social a:hover{
    background:#d4af37;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:25px;
    color:#999;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

.article-content h3{
    font-size:22px;
}

.article-card img{
    height:220px;
}

.footer-container{
    text-align:center;
}

}
/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-box i {
    font-size: 38px;
    color: #d4a017; /* ذهبي */
    margin-bottom: 15px;
}

.contact-box h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-box p,
.contact-box a {
    font-size: 16px;
    color: #4b5563;
    text-decoration: none;
    line-height: 1.7;
}

.contact-box a:hover {
    color: #d4a017;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 15px;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .contact-box h3 {
        font-size: 20px;
    }

    .contact-box p,
    .contact-box a {
        font-size: 15px;
    }
}
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    text-decoration: none;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.555);

    z-index: 99999;

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {

    /* Header */
    .main-header {
        height: auto !important;
        padding: 8px 10px !important;
    }

    .header-left {
        width: 100%;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    /* Contact Info */
    .contact-info {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 25px;
        width: 100%;
        margin: 0 !important;
        padding: 5px 5px !important;
        box-sizing: border-box;
    }

    .contact-info > div {
        text-align: center;
        margin: 0 !important;
    }

    .contact-info small {
        display: block;
        font-size: 10px;
        line-height: 14px;
        margin: 0;
    }

    .contact-info strong {
        display: block;
        font-size: 11px;
        line-height: 16px;
        white-space: nowrap;
    }

    /* Hero مباشرة من بعد Header */
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.contact-icon.whatsapp {
    color: #25D366;
}

.contact-icon.email {
    color: #ffffff;
}

.contact-icon:hover {
    transform: scale(1.15);
}
.tripadvisor {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tripadvisor a {
    display: inline-block;
}

.tripadvisor img {
    width: 100px;
    max-width: 80%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Mobile */
@media (max-width: 768px) {
    .tripadvisor {
        margin-top: 12px;
        justify-content: center;
    }

    .tripadvisor img {
        width: 70px;
        max-width: 100%
    }
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #efd5d5;
}

.social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 25px;
    box-sizing: border-box;
    color: #f2ecec;
}

/* Email */
.social-icon.email {
    background: rgb(230, 230, 221);
    color: #ffffff;
}

/* Tripadvisor */
.social-icon.tripadvisor {
    background: #ffffff;
    color: #55920b;
}

/* Tripadvisor Logo */
.social-icon.tripadvisor img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* Hover */
.social-icon:hover {
    transform: translateY(-4px);
}

/* Mobile */
@media (max-width: 768px) {

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .social-icon.tripadvisor img {
        width: 25px;
        height: 25px;
    }
} 