/* ===== BDC BUSINESS SOLUTIONS - SHARED STYLES ===== */

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --gold: #FFD957;
    --gold-dark: #e6c34e;
    --coral: #E95268;
    --blue: #1595CE;
    --purple: #714B67;
    --white: #FFFFFF;
    --gray: #CCCCCC;
    --gray-light: #999999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Tajawal', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.8; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
img { max-width: 100%; }
a { text-decoration: none; }

/* ===== LOADER ===== */
.loader { position: fixed; inset: 0; background: var(--black); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; transition: opacity 0.6s, visibility 0.6s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: 70px; height: 70px; border-radius: 18px; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-bar { width: 120px; height: 3px; background: var(--dark-3); border-radius: 3px; overflow: hidden; }
.loader-bar-inner { width: 0%; height: 100%; background: var(--gold); border-radius: 3px; animation: loaderFill 1.5s ease forwards; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes loaderFill { 0% { width: 0%; } 100% { width: 100%; } }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress { position: fixed; top: 0; right: 0; height: 3px; background: linear-gradient(to left, var(--gold), var(--coral)); z-index: 1001; transition: width 0.1s; width: 0%; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; animation: whatsappBounce 2s ease-in-out infinite; }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
@keyframes whatsappBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; right: 0; left: 0; z-index: 1000; padding: 12px 0; transition: all 0.4s; background: transparent; }
.navbar.scrolled { background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); padding: 8px 0; box-shadow: 0 2px 30px rgba(255,217,87,0.1); }
.nav-container { max-width: 1280px; margin: 0 auto; padding: 0 30px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-img { width: 45px; height: 45px; border-radius: 10px; object-fit: contain; }
.logo-text { font-size: 1.5rem; font-weight: 900; color: var(--gold); letter-spacing: 2px; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--gray); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover, .nav-links > li:hover > a { color: var(--gold); background: rgba(255,217,87,0.08); }
.nav-links > li > a.active-link { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--black) !important; padding: 9px 24px !important; border-radius: 50px !important; font-weight: 700 !important; border: 2px solid var(--gold); transition: all 0.3s !important; }
.nav-cta:hover { background: transparent !important; color: var(--gold) !important; }
.dropdown { position: absolute; top: 100%; right: 0; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 12px; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; z-index: 100; }
.nav-links > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; color: var(--gray); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; transition: all 0.2s; }
.dropdown a:hover { background: rgba(255,217,87,0.1); color: var(--gold); }
.dropdown-title { color: var(--gold); font-weight: 700; font-size: 0.8rem; padding: 6px 14px; margin-top: 8px; }
.dropdown-title:first-child { margin-top: 0; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; }
.mobile-toggle span { width: 26px; height: 3px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero { padding: 160px 0 80px; position: relative; overflow: hidden; background: var(--black); }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,217,87,0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(233,82,104,0.04) 0%, transparent 50%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,217,87,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,217,87,0.02) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 0.88rem; }
.page-hero .breadcrumb a { color: var(--gray-light); text-decoration: none; transition: color 0.3s; }
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--gold); }
.page-hero .breadcrumb .sep { color: var(--gray-light); opacity: 0.5; }
.page-hero h1 { font-size: 2.8rem; font-weight: 900; line-height: 1.3; margin-bottom: 18px; }
.page-hero h1 .highlight { color: var(--gold); }
.page-hero p { color: var(--gray); font-size: 1.1rem; line-height: 1.9; max-width: 650px; }

/* ===== HOME HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(255,217,87,0.08) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(233,82,104,0.05) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,217,87,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,217,87,0.03) 1px, transparent 1px); background-size: 60px 60px; animation: gridMove 20s linear infinite; }
@keyframes gridMove { 0% { transform: translate(0,0); } 100% { transform: translate(60px,60px); } }
.hero-container { max-width: 1280px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { animation: fadeInRight 1s ease; }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,217,87,0.1); border: 1px solid rgba(255,217,87,0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; color: var(--gold); margin-bottom: 25px; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 { font-size: 3rem; font-weight: 900; line-height: 1.3; margin-bottom: 20px; }
.hero h1 .highlight { color: var(--gold); }
.hero h1 .highlight-coral { color: var(--coral); }
.hero-desc { font-size: 1.1rem; color: var(--gray); line-height: 1.9; margin-bottom: 35px; max-width: 520px; }
.typed-text { color: var(--gold); font-weight: 700; }
.cursor { display: inline-block; width: 3px; height: 1.2em; background: var(--gold); margin-right: 4px; animation: blink 0.7s infinite; vertical-align: text-bottom; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; animation: fadeInLeft 1s ease 0.3s both; }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
.hero-graphic { width: 100%; max-width: 440px; aspect-ratio: 1; position: relative; }
.hero-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(255,217,87,0.15); animation: rotateC 25s linear infinite; }
.hero-circle:nth-child(1) { inset: 0; }
.hero-circle:nth-child(2) { inset: 40px; animation-direction: reverse; animation-duration: 20s; border-color: rgba(233,82,104,0.15); }
.hero-circle:nth-child(3) { inset: 80px; animation-duration: 15s; border-color: rgba(21,149,206,0.15); }
@keyframes rotateC { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-center-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 110px; height: 110px; background: var(--dark-2); border-radius: 28px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 60px rgba(255,217,87,0.2); border: 2px solid rgba(255,217,87,0.2); }
.hero-center-logo img { width: 75px; height: 75px; object-fit: contain; }
.floating-card { position: absolute; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; backdrop-filter: blur(10px); animation: float 4s ease-in-out infinite; }
.floating-card:nth-child(5) { top: 12%; left: -10%; }
.floating-card:nth-child(6) { bottom: 20%; right: -5%; animation-delay: 1.5s; }
.floating-card:nth-child(7) { bottom: 5%; left: 5%; animation-delay: 3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fl-icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.fl-icon.gold { background: rgba(255,217,87,0.15); }
.fl-icon.coral { background: rgba(233,82,104,0.15); }
.fl-icon.blue { background: rgba(21,149,206,0.15); }
.floating-card .text { font-size: 0.78rem; color: var(--gray); }
.floating-card .text strong { display: block; color: var(--white); font-size: 0.85rem; }

/* ===== PARTICLES ===== */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; opacity: 0; animation: particleFloat 6s ease-in-out infinite; }
@keyframes particleFloat {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    20% { opacity: 0.6; }
    50% { opacity: 0.3; transform: translateY(-100px) scale(1); }
    100% { transform: translateY(-200px) scale(0); opacity: 0; }
}

/* ===== TILT EFFECT ===== */
.tilt-card { transition: transform 0.3s ease; transform-style: preserve-3d; }
.card-shine { position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,217,87,0.08) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.tilt-card:hover .card-shine { opacity: 1; }

/* ===== BUTTONS ===== */
.btn-primary { background: var(--gold); color: var(--black); padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; border: 2px solid var(--gold); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,217,87,0.3); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 32px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; border: 2px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-coral { background: var(--coral); border-color: var(--coral); color: var(--white); }
.btn-coral:hover { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-blue { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn-blue:hover { background: transparent; color: var(--blue); border-color: var(--blue); }

/* ===== COMMON ===== */
.section { padding: 90px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 30px; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-tag { display: inline-block; background: rgba(255,217,87,0.1); color: var(--gold); padding: 6px 20px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 14px; border: 1px solid rgba(255,217,87,0.2); }
.section-title { font-size: 2.3rem; font-weight: 800; margin-bottom: 14px; line-height: 1.4; }
.section-subtitle { color: var(--gray-light); font-size: 1.05rem; max-width: 620px; margin: 0 auto; line-height: 1.8; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.bg-dark { background: var(--dark); }
.bg-black { background: var(--black); }

/* ===== PARTNERS MARQUEE ===== */
.partners-bar { padding: 35px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); background: var(--dark); overflow: hidden; }
.marquee { display: flex; gap: 60px; animation: marquee 25s linear infinite; width: max-content; }
.marquee-item { color: var(--gray-light); font-size: 1.05rem; font-weight: 600; white-space: nowrap; opacity: 0.5; transition: opacity 0.3s; display: flex; align-items: center; gap: 8px; }
.marquee-item:hover { opacity: 1; }
.marquee-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.5; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== ABOUT ===== */
.about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; line-height: 1.4; }
.about-content p { color: var(--gray); font-size: 1rem; line-height: 2; margin-bottom: 25px; }
.about-features { display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 14px; padding: 10px 0; }
.about-feature .check { width: 26px; height: 26px; background: rgba(255,217,87,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; }
.about-feature span { font-size: 0.95rem; color: var(--gray); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 28px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.stat-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-5px); }
.stat-number { font-size: 2.5rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; direction: ltr; unicode-bidi: plaintext; }
.stat-card:nth-child(2) .stat-number { color: var(--coral); }
.stat-card:nth-child(3) .stat-number { color: var(--blue); }
.stat-card:nth-child(4) .stat-number { color: var(--purple); }
.stat-label { color: var(--gray-light); font-size: 0.85rem; }

/* ===== WHY ODOO ===== */
.why-odoo { background: var(--dark); }
.why-odoo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-odoo-text h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; line-height: 1.4; }
.why-odoo-text p { color: var(--gray); font-size: 1rem; line-height: 2; margin-bottom: 25px; }

/* ===== ODOO SERVICES TABS ===== */
.odoo-tabs { background: var(--black); }
.tabs-container { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.tab-btn { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); color: var(--gray); padding: 10px 22px; border-radius: 50px; cursor: pointer; font-family: 'Tajawal', sans-serif; font-size: 0.9rem; font-weight: 600; transition: all 0.3s; }
.tab-btn:hover, .tab-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.tab-content { display: none; animation: fadeIn 0.5s; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-inner { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tab-inner h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 14px; color: var(--gold); }
.tab-inner p { color: var(--gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.tab-inner ul { list-style: none; }
.tab-inner ul li { color: var(--gray); font-size: 0.9rem; padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.tab-inner ul li::before { content: '\2713'; color: var(--gold); font-weight: 700; }
.tab-visual { display: flex; align-items: center; justify-content: center; }
.tab-icon-big { width: 180px; height: 180px; background: rgba(255,217,87,0.08); border-radius: 40px; display: flex; align-items: center; justify-content: center; font-size: 4rem; border: 1px solid rgba(255,217,87,0.15); }

/* ===== WHY BDC ===== */
.why-bdc { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 32px 24px; text-align: center; transition: all 0.3s; position: relative; overflow: hidden; }
.why-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-5px); }
.why-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin: 0 auto 16px; background: rgba(255,217,87,0.1); }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--gray-light); font-size: 0.88rem; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 35px 26px; transition: all 0.4s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: linear-gradient(to left, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(255,217,87,0.15); transform: translateY(-6px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.service-icon.gold-bg { background: rgba(255,217,87,0.12); }
.service-icon.coral-bg { background: rgba(233,82,104,0.12); }
.service-icon.blue-bg { background: rgba(21,149,206,0.12); }
.service-icon.purple-bg { background: rgba(113,75,103,0.15); }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.8; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600; margin-top: 16px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }
.space-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.space-tag { background: rgba(21,149,206,0.1); color: var(--blue); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; border: 1px solid rgba(21,149,206,0.15); }

/* ===== DETAIL CARD (inner pages) ===== */
.detail-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 44px 36px; transition: all 0.3s; position: relative; overflow: hidden; }
.detail-card:hover { border-color: rgba(255,217,87,0.15); }
.detail-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; color: var(--gold); }
.detail-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 16px; }
.detail-card ul { list-style: none; margin-bottom: 20px; }
.detail-card ul li { color: var(--gray); font-size: 0.9rem; padding: 7px 0; display: flex; align-items: center; gap: 10px; }
.detail-card ul li::before { content: '\2713'; color: var(--gold); font-weight: 700; }
.detail-icon { width: 64px; height: 64px; border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; background: rgba(255,217,87,0.1); }

/* ===== DETAIL GRID (services page layout) ===== */
.detail-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.detail-grid.reverse { grid-template-columns: auto 1fr; }
.detail-grid.reverse .detail-content { order: 2; }
.detail-grid.reverse .detail-icon { order: 1; }
.detail-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; color: var(--white); }
.detail-content p { color: var(--gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; }
.detail-grid > .detail-icon { width: auto; height: auto; font-size: 5rem; background: none; opacity: 0.15; }

/* ===== FEATURES LIST ===== */
.features-list { list-style: none; padding: 0; margin-bottom: 24px; }
.features-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--gray-light); font-size: 0.92rem; }
.feature-icon { color: var(--gold); font-weight: 700; font-size: 1rem; min-width: 20px; }

/* ===== BUTTON HELPERS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; font-family: inherit; font-weight: 700; border-radius: 50px; transition: all 0.3s; }
.btn.btn-primary { background: var(--gold); color: var(--black); padding: 14px 32px; font-size: 0.95rem; border: 2px solid var(--gold); }
.btn.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,217,87,0.3); }
.btn-lg { padding: 18px 40px !important; font-size: 1.05rem !important; }

/* ===== NAVBAR VARIANT (inner pages) ===== */
.navbar-container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo img { height: 40px; }
.navbar-menu { display: flex; align-items: center; list-style: none; gap: 8px; margin: 0; padding: 0; }
.navbar-item { position: relative; }
.navbar-link { color: var(--gray-light); text-decoration: none; font-size: 0.9rem; padding: 10px 14px; border-radius: 8px; transition: all 0.3s; font-weight: 500; }
.navbar-link:hover, .navbar-link.active-link { color: var(--white); }
.navbar-item.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.navbar-item .dropdown-menu { position: absolute; top: 100%; right: 0; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 10px 0; min-width: 220px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; z-index: 100; list-style: none; }
.navbar-item .dropdown-menu li a { display: block; padding: 10px 20px; color: var(--gray-light); text-decoration: none; font-size: 0.85rem; transition: all 0.2s; }
.navbar-item .dropdown-menu li a:hover { color: var(--gold); background: rgba(255,217,87,0.05); }
.navbar-cta .btn { font-size: 0.85rem; padding: 10px 22px; }
.navbar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.navbar-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }

/* ===== FOOTER VARIANT (inner pages) ===== */
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { color: var(--gray-light); transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: var(--gray-light); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-links li a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; color: var(--gray-light); font-size: 0.88rem; }
.footer-contact li a { color: var(--gray-light); text-decoration: none; transition: color 0.3s; }
.footer-contact li a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 10px 16px; color: var(--white); font-size: 0.85rem; font-family: inherit; }
.newsletter-form .btn { padding: 10px 20px; font-size: 0.85rem; }

@media (max-width: 768px) {
    .detail-grid, .detail-grid.reverse { grid-template-columns: 1fr; }
    .detail-grid > .detail-icon { display: none; }
    .navbar-menu { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--dark-2); flex-direction: column; padding: 80px 30px 30px; gap: 4px; z-index: 999; }
    .navbar-menu.active { display: flex; }
    .navbar-toggle { display: block; z-index: 1000; }
    .navbar-item .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; background: rgba(255,255,255,0.03); border-radius: 8px; margin-top: 4px; }
}

/* ===== TECH STACK ===== */
.tech { background: var(--dark); }
.tech-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.tech-item { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 18px 30px; text-align: center; transition: all 0.3s; min-width: 120px; }
.tech-item:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-4px); }
.tech-item .tech-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.tech-item .tech-type { font-size: 0.75rem; color: var(--gray-light); margin-top: 2px; }

/* ===== BLOG ===== */
.blog { background: var(--black); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.blog-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { border-color: rgba(255,217,87,0.15); transform: translateY(-6px); }
.blog-thumb { height: 200px; background: linear-gradient(135deg, var(--dark-3), rgba(113,75,103,0.2)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-body { padding: 24px; }
.blog-date { font-size: 0.78rem; color: var(--gray-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.6; }
.blog-body p { color: var(--gray-light); font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-link { color: var(--gold); text-decoration: none; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.blog-link:hover { gap: 12px; }
.blog-category { display: inline-block; background: rgba(255,217,87,0.1); color: var(--gold); padding: 4px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 12px; }

/* ===== PROCESS ===== */
.process { background: var(--dark); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-step { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 30px 22px; text-align: center; transition: all 0.3s; position: relative; }
.process-step:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-5px); }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--black); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; margin: 0 auto 16px; }
.process-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--gray-light); font-size: 0.85rem; line-height: 1.7; }

/* ===== SECTORS ===== */
.sectors { background: var(--black); }
.sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sector-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.3s; cursor: default; }
.sector-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-4px); background: rgba(255,217,87,0.03); }
.sector-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.sector-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.sector-card p { color: var(--gray-light); font-size: 0.78rem; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 32px; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(255,217,87,0.15); }
.t-stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 3px; }
.t-text { color: var(--gray); font-size: 0.95rem; line-height: 1.9; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--coral)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; color: var(--black); }
.t-info strong { display: block; font-size: 0.9rem; }
.t-info span { color: var(--gray-light); font-size: 0.8rem; }

/* ===== CTA ===== */
.cta-section { padding: 90px 0; background: var(--black); position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(113,75,103,0.08) 0%, transparent 70%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 18px; line-height: 1.4; }
.cta-content p { color: var(--gray); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 18px; }
.contact-info > p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-icon { width: 48px; height: 48px; border-radius: 13px; background: rgba(255,217,87,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-details h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.contact-details p, .contact-details a { color: var(--gray-light); font-size: 0.9rem; text-decoration: none; direction: ltr; unicode-bidi: plaintext; }
.contact-details a:hover { color: var(--gold); }
.contact-form { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 7px; color: var(--gray); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 11px; color: var(--white); font-family: 'Tajawal', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select { appearance: none; }
.form-group select option { background: var(--dark-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit { width: 100%; padding: 14px; background: var(--gold); color: var(--black); border: none; border-radius: 11px; font-family: 'Tajawal', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(255,217,87,0.3); }

/* ===== FAQ ===== */
.faq { background: var(--dark); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; margin-bottom: 14px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover, .faq-item.active { border-color: rgba(255,217,87,0.2); }
.faq-question { width: 100%; padding: 22px 28px; background: none; border: none; color: var(--white); font-family: 'Tajawal', sans-serif; font-size: 1.05rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: right; transition: color 0.3s; }
.faq-question:hover { color: var(--gold); }
.faq-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,217,87,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.4s; color: var(--gold); font-size: 1.2rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--black); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding: 0 28px 22px; color: var(--gray); font-size: 0.93rem; line-height: 1.9; }

/* ===== CLIENTS ===== */
.clients { background: var(--black); padding: 60px 0; }
.clients-title { text-align: center; color: var(--gray-light); font-size: 0.9rem; font-weight: 500; margin-bottom: 30px; letter-spacing: 2px; }
.clients-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; align-items: center; opacity: 0.4; }
.client-logo { font-size: 1.4rem; font-weight: 800; color: var(--gray); transition: all 0.3s; cursor: default; letter-spacing: 2px; }
.client-logo:hover { opacity: 1; color: var(--gold); transform: scale(1.1); }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); padding: 55px 0 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 45px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--gray-light); font-size: 0.88rem; line-height: 1.8; margin-bottom: 18px; }
.social-links { display: flex; gap: 10px; }
.social-link { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; font-size: 0.9rem; transition: all 0.3s; }
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 18px; color: var(--white); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--gray-light); text-decoration: none; font-size: 0.83rem; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { color: var(--gray-light); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--gray-light); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 10px; margin-top: 18px; }
.newsletter-input { flex: 1; padding: 11px 16px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: var(--white); font-family: 'Tajawal', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.3s; }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-btn { padding: 11px 20px; background: var(--gold); color: var(--black); border: none; border-radius: 10px; font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--gold-dark); }

/* Scroll Top */
.scroll-top { position: fixed; bottom: 28px; left: 28px; width: 46px; height: 46px; background: var(--gold); color: var(--black); border: none; border-radius: 13px; cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; box-shadow: 0 4px 15px rgba(255,217,87,0.3); }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* ===== MAP ===== */
.map-container { border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); height: 350px; margin-top: 40px; }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(1) contrast(0.9) brightness(0.7); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before { content: ''; position: absolute; top: 0; bottom: 0; right: 50%; width: 2px; background: rgba(255,217,87,0.2); transform: translateX(50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-content { width: 45%; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 28px; transition: all 0.3s; }
.timeline-content:hover { border-color: rgba(255,217,87,0.2); }
.timeline-year { display: inline-block; background: var(--gold); color: var(--black); padding: 4px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; }
.timeline-content h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { color: var(--gray-light); font-size: 0.88rem; line-height: 1.7; }
.timeline-dot { width: 16px; height: 16px; background: var(--gold); border-radius: 50%; position: absolute; right: 50%; transform: translateX(50%); z-index: 2; border: 3px solid var(--black); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 30px 20px; text-align: center; transition: all 0.3s; }
.team-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-5px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--coral)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: var(--black); margin: 0 auto 16px; }
.team-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.82rem; font-weight: 500; margin-bottom: 10px; }
.team-card p { color: var(--gray-light); font-size: 0.82rem; line-height: 1.7; }

/* ===== PRICING HINT ===== */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 40px 30px; text-align: center; transition: all 0.3s; position: relative; }
.pricing-card.featured { border-color: var(--gold); }
.pricing-card.featured::before { content: 'الأكثر طلباً'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--black); padding: 4px 20px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; }
.pricing-card:hover { border-color: rgba(255,217,87,0.3); transform: translateY(-5px); }
.pricing-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price { font-size: 2.2rem; font-weight: 900; color: var(--gold); margin: 16px 0; }
.pricing-card .price span { font-size: 0.9rem; color: var(--gray-light); font-weight: 400; }
.pricing-card ul { list-style: none; margin: 24px 0; text-align: right; }
.pricing-card ul li { padding: 8px 0; color: var(--gray); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.pricing-card ul li::before { content: '\2713'; color: var(--gold); font-weight: 700; }

/* ===== SPACES ===== */
.space-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.space-gallery-item { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; height: 220px; display: flex; align-items: center; justify-content: center; font-size: 3rem; transition: all 0.3s; overflow: hidden; }
.space-gallery-item:hover { border-color: rgba(255,217,87,0.2); transform: scale(1.02); }
.space-gallery-item:first-child { grid-column: span 2; grid-row: span 2; height: auto; }
.space-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.space-price-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.space-price-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-4px); }
.space-price-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.space-price-card .price { font-size: 1.8rem; font-weight: 900; color: var(--gold); margin: 12px 0; }
.space-price-card .price span { font-size: 0.85rem; color: var(--gray-light); font-weight: 400; }
.space-price-card p { color: var(--gray-light); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.space-amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.amenity { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 24px 16px; text-align: center; transition: all 0.3s; }
.amenity:hover { border-color: rgba(255,217,87,0.2); }
.amenity-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.amenity h4 { font-size: 0.88rem; font-weight: 600; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
    .particle { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container, .about-grid, .why-odoo-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero-container { text-align: center; }
    .hero-desc { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }
    .services-grid, .why-grid, .blog-grid, .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .tab-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .space-gallery { grid-template-columns: repeat(2, 1fr); }
    .space-gallery-item:first-child { grid-column: span 2; }
    .space-pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .space-amenities { grid-template-columns: repeat(2, 1fr); }
    .timeline::before { right: 30px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; align-items: flex-start; padding-right: 60px; }
    .timeline-content { width: 100%; }
    .timeline-dot { right: 30px; transform: translateX(50%); }
}
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; right: 0; left: 0; background: rgba(0,0,0,0.98); flex-direction: column; padding: 20px; gap: 5px; border-bottom: 1px solid rgba(255,217,87,0.1); max-height: 80vh; overflow-y: auto; }
    .nav-links.active { display: flex; }
    .dropdown { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.03); border: none; border-radius: 10px; min-width: auto; padding: 8px; margin-top: 5px; }
    .mobile-toggle { display: flex; }
    .hero h1 { font-size: 2rem; }
    .page-hero h1 { font-size: 2rem; }
    .section-title { font-size: 1.7rem; }
    .services-grid, .why-grid, .testimonials-grid, .blog-grid, .sectors-grid, .process-steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .tabs-container { gap: 6px; }
    .tab-btn { padding: 8px 16px; font-size: 0.8rem; }
    .newsletter-form { flex-direction: column; }
    .faq-question { font-size: 0.92rem; padding: 18px 20px; }
    .faq-answer-inner { padding: 0 20px 18px; }
    .clients-row { gap: 20px; }
    .client-logo { font-size: 1.1rem; }
    .team-grid { grid-template-columns: 1fr; }
    .space-gallery-item:first-child { grid-column: span 1; }
    .space-amenities { grid-template-columns: 1fr 1fr; }
}
/* ===== NAVBAR (inner pages class aliases) ===== */
.nav-content { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 42px; border-radius: 10px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-link { color: var(--gray); text-decoration: none; font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.3s; display: flex; align-items: center; gap: 4px; }
.nav-link:hover { color: var(--gold); background: rgba(255,217,87,0.08); }
.nav-link.active-link { color: var(--gold); }
.has-dropdown { position: relative; }
.has-dropdown > .nav-link svg { transition: transform 0.3s; }
.has-dropdown:hover > .nav-link svg { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; right: 0; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 12px; min-width: 240px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s; z-index: 100; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: block; color: var(--gray); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-size: 0.85rem; transition: all 0.2s; }
.dropdown-link:hover { background: rgba(255,217,87,0.1); color: var(--gold); }

/* ===== CONTACT CARDS ===== */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.contact-card { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
.contact-card:hover { border-color: rgba(255,217,87,0.2); transform: translateY(-4px); }
.contact-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 10px; }
.contact-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* ===== CONTACT FORM WRAPPER ===== */
.contact-form-wrapper { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06); border-radius: 18px; padding: 40px; }
.contact-detail-item { margin-bottom: 16px; }
.contact-detail-item h4 { color: var(--gold); font-size: 0.95rem; margin-bottom: 6px; }
.contact-detail-item p { color: var(--gray); font-size: 0.9rem; }

/* ===== NEWSLETTER WRAPPER ===== */
.newsletter { margin-top: 24px; }
.newsletter h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 12px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: all 0.3s; animation: whatsappBounce 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

@media (max-width: 1024px) {
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu { display: none; position: fixed; top: 0; right: 0; width: 280px; height: 100vh; background: var(--dark-2); flex-direction: column; padding: 80px 30px 30px; gap: 8px; z-index: 1000; }
    .nav-menu.active { display: flex; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; border: none; background: rgba(255,255,255,0.03); border-radius: 8px; min-width: auto; margin-top: 4px; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; left: 20px; width: 50px; height: 50px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .page-hero h1 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .section { padding: 65px 0; }
    .container { padding: 0 18px; }
}
