/*
Theme Name: نشتري الساعات السويسرية في لبنان - Prestige Edition
Version: 5.0
Description: Inspired by timepeices.com — Luxury Arabic Blog/Magazine Layout
Text Domain: timepieces
*/

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ============================================
   DESIGN SYSTEM — TIMEPEICES INSPIRED
   Primary: #1f0e7e (Indigo Navy)
   Accent:  #C8A951 (Gold)
   BG:      #f4f4f4 (Light Gray)
   White:   #ffffff
   ============================================ */
:root {
    --navy:        #1f0e7e;
    --navy-dark:   #14085a;
    --navy-light:  #2a1499;
    --gold:        #C8A951;
    --gold-light:  #e2c577;
    --bg:          #f4f4f4;
    --white:       #ffffff;
    --text:        #222222;
    --text-muted:  #666666;
    --border:      #e0e0e0;
    --font:        'Tajawal', sans-serif;
    --radius:      4px;
}

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    direction: rtl;
    font-size: 16px;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__links {
    display: flex;
    gap: 20px;
}

.top-bar__links a:hover { color: var(--gold); }
.top-bar__date { font-size: 0.75rem; opacity: 0.7; }

/* ============================================
   MIDDLE HEADER (Logo + Search)
   ============================================ */
.site-header-middle {
    background: #0a0521; /* Deep Onyx Navy */
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(31, 14, 126, 0.4) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: soft-light;
    padding: 20px 0;
    border-top: 1px solid rgba(200, 169, 81, 0.3);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
    z-index: 100;
}

.header-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-logo img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(31,14,126,0.22));
    transition: transform 0.4s ease;
}

.site-logo:hover img {
    transform: rotate(5deg) scale(1.05);
}

.site-logo img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(200, 169, 81, 0.2));
    transition: transform 0.4s ease;
}

.site-logo:hover img {
    transform: rotate(5deg) scale(1.05);
}

.site-logo-text { line-height: 1.1; margin-right: 5px; }
.site-logo-text strong {
    display: block;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.site-logo-text span {
    font-size: 0.8rem;
    color: var(--gold);
    display: block;
    margin-top: 2px;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.header-search {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.header-search form { width: 100%; position: relative; }

.header-search input {
    border: 1px solid rgba(200, 169, 81, 0.3);
    border-radius: 30px;
    padding: 11px 24px;
    font-family: var(--font);
    font-size: 0.92rem;
    width: 340px;
    outline: none;
    direction: rtl;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-search input::placeholder { color: rgba(255,255,255,0.4); }

.header-search input:focus {
    width: 380px;
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 4px 25px rgba(200, 169, 81, 0.2);
}

.header-search button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    font-size: 1rem;
}

/* Header Socials Integration */
.header-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.header-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.header-socials a:hover {
    color: var(--gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(200, 169, 81, 0.4);
}

/* ============================================
   BRAND NAV BAR
   ============================================ */
.brand-nav {
    background: var(--navy);
    border-bottom: 3px solid var(--gold);
}

.brand-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 0;
}

.brand-nav ul li a {
    display: block;
    padding: 14px 22px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
    transition: 0.2s;
}

.brand-nav ul li a:hover,
.brand-nav ul li a.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Mobile Hamburger — only on small screens */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
}

/* ============================================
   NEWS TICKER
   ============================================ */
.news-ticker {
    background: var(--white);
    border: 1px solid var(--border);
    margin: 20px 0;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-label {
    background: var(--navy);
    color: var(--white);
    padding: 12px 20px;
    font-weight: 800;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    padding: 0 20px;
}

.ticker-track {
    display: flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-track a {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.ticker-track a:hover { color: var(--navy); }

@keyframes ticker {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================================
   MAIN LAYOUT (Content + Sidebar)
   ============================================ */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 10px 0 50px;
}

/* ============================================
   HERO GRID (Featured Posts)
   ============================================ */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: #111;
}

.hero-card--main {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 400px;
}

.hero-card--sub {
    height: 240px;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.hero-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.hero-card__cat {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 8px;
}

.hero-card--main .hero-card__cat { background: var(--gold); color: #000; }

.hero-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.hero-card--main .hero-card__title { font-size: 1.8rem; }

.hero-card__excerpt {
    font-size: 0.85rem;
    opacity: 0.85;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================
   POST GRID (Regular Posts)
   ============================================ */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--navy);
    padding-bottom: 10px;
}

.section-header h2 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-header h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 22px;
    background: var(--gold);
    border-radius: 2px;
}

.two-col-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.post-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.post-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.post-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.post-card:hover .post-card__img img { transform: scale(1.08); }

.post-card__cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
}

.post-card__body {
    padding: 18px;
}

.post-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card__title a:hover { color: var(--navy); }

.post-card__excerpt {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-card__footer {
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

.btn-read-more {
    background: var(--navy);
    color: #fff;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    transition: 0.2s;
}

.btn-read-more:hover { background: var(--gold); color: #000; }

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar { position: relative; }

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 25px;
}

.widget-title {
    background: var(--navy);
    color: #fff;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-recent-list { padding: 10px 0; }

.recent-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    transition: 0.2s;
}

.recent-item:last-child { border-bottom: none; }
.recent-item:hover { background: var(--bg); }

.recent-item__img {
    width: 70px;
    height: 55px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-item__title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text);
}

.recent-item__title:hover { color: var(--navy); }

.recent-item__date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* CTA Widget */
.cta-widget {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.cta-widget::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%);
}

.cta-widget h3 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}

.cta-widget p {
    color: rgba(255,255,255,0.8);
    font-size: 0.87rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-widget a {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 13px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    position: relative;
    transition: 0.2s;
}

.cta-widget a:hover { background: #1ea855; }

/* Brand Category Widget */
.brand-cat-list { padding: 8px 0; }

.brand-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 0.87rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.brand-cat-item:last-child { border-bottom: none; }
.brand-cat-item:hover { color: var(--navy); padding-right: 22px; }

.brand-cat-item span {
    background: var(--bg);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 3px solid var(--gold);
}

.site-footer a { color: var(--gold); }
.site-footer a:hover { text-decoration: underline; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(37,211,102,0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 5px 25px rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 5px 40px rgba(37,211,102,0.6); }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

.scroll-top.visible { opacity: 1; }
.scroll-top:hover { background: var(--gold); }

/* ============================================
   MOBILE DRAWER — Full Screen
   ============================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 99999;
    transition: 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.drawer-overlay.show { opacity: 1; pointer-events: all; }

.drawer-header {
    background: var(--navy);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(200,169,81,0.3);
}

.drawer-close {
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-nav ul { list-style: none; padding: 10px 0; }

.drawer-nav ul li a {
    display: flex;
    align-items: center;
    padding: 14px 22px;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

.drawer-nav ul li a:hover {
    background: rgba(200,169,81,0.1);
    color: var(--gold);
    padding-right: 30px;
}

.drawer-footer {
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid rgba(200,169,81,0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-cta-wa {
    background: #25D366;
    color: #fff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 800;
    text-align: center;
    font-size: 0.95rem;
}

.drawer-cta-tel {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: center;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* Hide WP default Sample Page */
.drawer-nav ul li:first-child a[href*="sample-page"],
.drawer-nav #primary-menu > li:first-child {
    display: none !important;
}

@media (max-width: 1024px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .brand-nav { display: none; }
    .hamburger { display: flex; }
    .header-search input { width: 180px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-card--main { grid-column: 1; height: 280px; }
    .hero-card--sub { height: 200px; }
    .two-col-posts { grid-template-columns: 1fr; }
    .sidebar { grid-template-columns: 1fr; }
    .site-logo-text strong { font-size: 1rem; }
}

@media (max-width: 480px) {
    .site-logo img { width: 60px; height: 60px; }
    .hero-card--main .hero-card__title { font-size: 1.3rem; }
    .header-search { display: none; }
}

/* ============================================================
   NEWS TICKER — FIXED (pause on hover)
   ============================================================ */
.news-ticker {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin: 20px 0;
    overflow: hidden;
    height: 48px;
}

.ticker-label {
    background: var(--navy);
    color: #fff;
    padding: 0 20px;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    padding: 0 20px;
}

.ticker-track a {
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
    flex-shrink: 0;
}

.ticker-track a:hover { color: var(--navy); text-decoration: underline; }

/* Pause on hover */
.news-ticker:hover .ticker-track { animation-play-state: paused; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO INTRO SECTION
   ============================================================ */
.hero-intro {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #3a1fb5 100%);
    padding: 85px 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

/* Background Texture with Low Opacity */
.hero-intro::before {
    content: '';
    position: absolute;
    inset: -50px;
    background-image: url('assets/images/hero-bg-texture.png');
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    filter: brightness(0.7);
    z-index: 1;
    animation: slowZoom 45s linear infinite alternate;
    pointer-events: none;
}

/* Glow Effect */
.hero-intro::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero-intro__inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.15) rotate(1deg); }
}

.hero-intro__tag {
    display: inline-block;
    background: rgba(200,169,81,0.15);
    border: 1px solid rgba(200,169,81,0.4);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.hero-intro__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gold-stroke { color: var(--gold); }

.hero-intro__desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-intro__stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.stat { text-align: center; }
.stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.stat-divider { width: 1px; height: 50px; background: rgba(200,169,81,0.3); }

.hero-intro__btns { display: flex; gap: 15px; flex-wrap: wrap; }

.btn-primary {
    background: var(--gold);
    color: #000;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(200,169,81,0.4);
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex; align-items: center; gap: 8px;
    transition: 0.3s;
}

.btn-whatsapp:hover { background: #1ea855; transform: translateY(-2px); }

/* Animated Badge */
.hero-intro__badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(200,169,81,0.4));
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.hero-badge-rings { position: absolute; inset: -20px; }

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(200,169,81,0.2);
    animation: ring-pulse 3s ease-out infinite;
}

.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1.5s; inset: -30px; }

@keyframes ring-pulse {
    0%   { transform: scale(0.9); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

@media (max-width: 768px) {
    .site-header-middle { padding: 15px 0; }
    .header-middle-inner { flex-wrap: wrap; justify-content: center; gap: 12px; }
    
    .hamburger { display: flex; order: 0; margin-left: auto; }
    .hamburger span { background: var(--gold); }
    
    .site-logo { order: 1; flex: 1; justify-content: center; margin-right: -40px; /* Offset for hamburger balance */ }
    .site-logo img { width: 75px; height: 75px; }
    .site-logo-text strong { font-size: 1.15rem; }
    .site-logo-text span { font-size: 0.68rem; }
    
    .header-search { order: 2; width: 100%; margin-top: 10px; }
    .header-search input { width: 100% !important; padding: 10px 20px; font-size: 0.85rem; }
    
    .header-socials { order: 3; width: 100%; justify-content: center; margin-top: -5px; }
    .header-socials a { font-size: 1rem; }

    .hero-intro__inner { grid-template-columns: 1fr; text-align: center; }
    .hero-intro__badge { display: none; }
    .hero-intro__stats { justify-content: center; }
    .hero-intro__btns { justify-content: center; }
    .hero-intro { padding: 50px 0; }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-hd {
    text-align: center;
    margin-bottom: 40px;
}

.section-hd h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 8px;
}

.section-hd p { font-size: 1rem; color: var(--text-muted); }

.sec-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: var(--navy);
}

.section-hd--light h2 { color: #fff; }
.section-hd--light p { color: rgba(255,255,255,0.7); }
.sec-line--gold { background: var(--gold); }

/* ============================================================
   BRANDS SLIDER
   ============================================================ */
.brands-section {
    background: var(--white);
    padding: 70px 0;
    border-top: 3px solid var(--navy);
    border-bottom: 3px solid var(--navy);
}

.brands-slider { padding-bottom: 50px !important; }

.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--brand-color, var(--navy));
    transform: scaleX(0);
    transition: 0.35s;
}

.brand-card:hover::before { transform: scaleX(1); }
.brand-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.brand-card__img {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: 0.4s;
    overflow: hidden;
}
.brand-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.brand-card:hover .brand-card__img {
    transform: scale(1.1);
}

.brand-card__en {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-color, var(--navy));
    margin-bottom: 4px;
    font-family: 'Georgia', serif;
    letter-spacing: 0.02em;
}

.brand-card__ar {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.brand-card__action {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0;
    transform: translateY(5px);
    transition: 0.3s;
}

.brand-card:hover .brand-card__action { opacity: 1; transform: translateY(0); }

/* Swiper custom */
.swiper-button-next, .swiper-button-prev {
    color: var(--navy) !important;
    width: 40px !important; height: 40px !important;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 900 !important; }
.swiper-pagination-bullet-active { background: var(--navy) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(200,169,81,0.2);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: 0.35s;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(200,169,81,0.45);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: rgba(255,255,255,0.88);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-footer { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    flex-shrink: 0;
}

.testimonial-name { font-weight: 700; color: #fff; font-size: 0.9rem; }
.testimonial-watch { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

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

/* ============================================================
   EVALUATION FORM SECTION
   ============================================================ */
.eval-section {
    background: var(--bg);
    padding: 90px 0;
}

.eval-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.eval-left h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 15px 0 18px;
}

.gold-text { color: var(--gold); }

.eval-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.eval-left > p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.eval-promises { list-style: none; margin-bottom: 30px; }
.eval-promises li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.93rem;
    color: var(--text);
}

.eval-promises li:last-child { border-bottom: none; }
.eval-promises li i { color: #25a244; font-size: 1rem; flex-shrink: 0; }

.eval-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,169,81,0.1);
    border: 1px solid rgba(200,169,81,0.4);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 600;
}

.eval-urgency i { color: #e67e22; font-size: 1.1rem; }

/* Form Card */
.eval-form-card {
    background: var(--white);
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

.eval-form-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

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

.form-group label {
    display: block;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--text);
    direction: rtl;
    transition: 0.2s;
    background: #fafafa;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(31,14,126,0.08);
}

/* Condition Selector */
.condition-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.condition-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.condition-opt input { display: none; }

.condition-opt span {
    padding: 8px 16px;
    border: 1.5px solid var(--border);
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: 0.2s;
    cursor: pointer;
}

.condition-opt input:checked + span {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* Submit Button */
.eval-submit-btn {
    width: 100%;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    margin-top: 5px;
}

.eval-submit-btn:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(31,14,126,0.35); }

.btn-pulse {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    animation: btn-shimmer 2s infinite;
}

@keyframes btn-shimmer {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Success State */
.eval-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon { font-size: 4rem; margin-bottom: 15px; }
.eval-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 10px; }
.eval-success p { color: var(--text-muted); }

@media (max-width: 900px) {
    .eval-inner { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .eval-section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .eval-form-card { padding: 22px; }
}
/* Brand Page Logo */
.brand-circle {
    background: #fff;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    margin: 0 auto;
    overflow: hidden;
}
.brand-hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
/* ============================================================
   PREMIUM FEATURES SECTION
   ============================================================ */
.premium-features-section {
    padding: 80px 0;
    background: #ffffff;
}

.premium-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.premium-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.premium-card__bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.premium-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 5, 54, 0.95) 0%, rgba(13, 5, 54, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.premium-card__content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
}

.premium-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    margin-bottom: 15px;
}

.premium-card h3 {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    line-height: 1.2;
}

.premium-card p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 450px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
}

.wa-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #25D366;
    font-size: 1.1rem;
}

.premium-card:hover .premium-card__bg {
    transform: scale(1.1);
}

/* Animations */
.reveal-left { opacity: 0; transform: translateX(-30px); transition: 0.8s ease-out; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: 0.8s ease-out; }
.reveal-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease-out; }

/* Trigger (Simulated or via JS) */
.active-reveal { opacity: 1; transform: translate(0); }

@media (max-width: 991px) {
    .premium-grid { grid-template-columns: 1fr; }
    .premium-card { height: 400px; }
    .premium-card h3 { font-size: 1.8rem; }
}

@media (max-width: 580px) {
    .premium-card { height: 350px; }
    .premium-card__content { padding: 25px; }
    .mobile-no-pad { padding: 0; }
    .premium-card { border-radius: 0; }
}
