/* ============================================
   Pioneer Business - Premium Dark/Gold Theme
   Real Brand Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #151515;
    --black-border: #1e1e1e;
    --charcoal: #1a1a1a;
    --gold: #c8a44e;
    --gold-light: #d4b65c;
    --gold-dark: #a88a3a;
    --gold-glow: rgba(200, 164, 78, 0.12);
    --gold-subtle: rgba(200, 164, 78, 0.06);
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-300: #b0b0b0;
    --gray-400: #888888;
    --gray-500: #666666;
    --gray-600: #444444;
    --font-en: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-ar: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-en);
    background-color: var(--black);
    color: var(--gray-200);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body {
    font-family: var(--font-ar);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 164, 78, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: rgba(200, 164, 78, 0.4);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius);
}

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

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200, 164, 78, 0.08);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom-color: rgba(200, 164, 78, 0.12);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    z-index: 1001;
}

.logo-img {
    height: 76px;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
}

.header img[src*="logo"],
.navbar img[src*="logo"],
.logo img,
.brand img,
.header-logo img,
.nav-logo img,
.site-logo img {
    height: 76px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }

    .logo-img,
    .header img[src*="logo"],
    .navbar img[src*="logo"],
    .logo img,
    .brand img,
    .header-logo img,
    .nav-logo img,
    .site-logo img {
        height: 54px !important;
    }
}

.header,
.navbar,
.nav {
    min-height: auto;
}

.header .container,
.navbar .container,
.nav-container {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 78, 0.35);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: transparent;
}

.lang-switch:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   Hero Section - Split Layout
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 78, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(200, 164, 78, 0.03) 0%, transparent 40%);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    padding-right: 24px;
}

[dir="rtl"] .hero-text {
    padding-right: 0;
    padding-left: 24px;
    order: 2;
}

[dir="rtl"] .hero-visual {
    order: 1;
}

.hero-title {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--gray-300);
    margin-bottom: 32px;
    line-height: 1.75;
    max-width: 480px;
}

[dir="rtl"] .hero-subtitle {
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    width: clamp(320px, 34vw, 500px);
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.16), rgba(0, 0, 0, 0.92));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.18);
}

.hero-founders-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    display: block;
}

/* ============================================
   Sections Common
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    background: var(--gold-glow);
    border: 1px solid rgba(200, 164, 78, 0.15);
    border-radius: 50px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.section-line {
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto;
    border-radius: 3px;
}

/* ============================================
   About / Founders Section
   ============================================ */
.about {
    background: var(--black-light);
}

.about-intro {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.about-lead {
    font-size: 17px;
    color: var(--gray-300);
    line-height: 1.8;
}

[dir="rtl"] .about-lead {
    font-size: 18px;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 840px;
    margin: 0 auto;
}

.founder-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.founder-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--charcoal);
    position: relative;
}

.founder-image-wrap.fallback {
    background: linear-gradient(135deg, var(--charcoal), var(--black-card));
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-wrap.fallback::after {
    content: '';
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 2px solid rgba(200, 164, 78, 0.2);
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.founder-card:hover .founder-img {
    transform: scale(1.03);
}

.founder-info {
    padding: 24px 28px 28px;
}

.founder-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.founder-role {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.founder-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ============================================
   Solutions Section
   ============================================ */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.solution-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.solution-card:hover {
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-number {
    font-size: 32px;
    font-weight: 800;
    color: rgba(200, 164, 78, 0.12);
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--font-en);
}

.solution-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ============================================
   Sectors Section
   ============================================ */
.sectors {
    background: var(--black-light);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sector-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.sector-card:hover {
    border-color: rgba(200, 164, 78, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gold-glow);
    border: 1px solid rgba(200, 164, 78, 0.12);
    border-radius: 16px;
    color: var(--gold);
    transition: all var(--transition);
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.sector-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sector-card p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   Contact / Booking Section
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info .section-tag {
    margin-bottom: 14px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 12px;
}

[dir="rtl"] .contact-info .section-title {
    text-align: right;
}

.contact-info .section-line {
    margin: 0 0 20px 0;
}

[dir="rtl"] .contact-info .section-line {
    margin: 0 0 20px auto;
}

.contact-desc {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.75;
    margin-bottom: 28px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-200);
    font-size: 15px;
}

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--gold-glow);
    border: 1px solid rgba(200, 164, 78, 0.12);
    border-radius: 10px;
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-200);
    margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    font-size: 14px;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    transition: all var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.08);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

[dir="rtl"] .form-group select {
    background-position: left 14px center;
    padding-right: 14px;
    padding-left: 36px;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.error-message {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 5px;
    min-height: 16px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error input:focus,
.form-group.error select:focus,
.form-group.error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand .logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.footer-contact-item svg {
    color: var(--gold);
    min-width: 16px;
}

.footer-contact .btn-whatsapp {
    margin-top: 14px;
    display: inline-flex;
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray-500);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Mobile Menu - Premium Panel
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1002;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overscroll-behavior: contain;
}

.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(5, 5, 5, 0.92);
    border-bottom: 1px solid rgba(200, 164, 78, 0.1);
    flex-shrink: 0;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-menu-logo .logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(200, 164, 78, 0.15);
    border-color: rgba(200, 164, 78, 0.3);
    color: var(--gold);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 28px 24px 24px;
    flex: 1;
    justify-content: center;
    min-height: 0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 14px;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(200, 164, 78, 0.12);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: var(--gold);
    background: rgba(200, 164, 78, 0.1);
    border-color: rgba(200, 164, 78, 0.35);
}

.mobile-menu-link.active {
    color: var(--gold);
    background: rgba(200, 164, 78, 0.1);
    border-color: rgba(200, 164, 78, 0.35);
}

.mobile-menu-footer {
    padding: 20px 24px 32px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 78, 0.35);
    border-radius: 12px;
    background: rgba(200, 164, 78, 0.06);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.mobile-lang-switch:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        order: 2;
    }

    [dir="rtl"] .hero-text {
        padding-left: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
        width: min(100%, 420px);
        margin: 0 auto;
    }

    [dir="rtl"] .hero-visual {
        order: 1;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .founders-grid {
        max-width: 100%;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info .section-title {
        text-align: center;
    }

    .contact-info .section-line {
        margin: 0 auto 20px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions .lang-switch {
        display: none;
    }

    .hero {
        padding: 96px 0 36px;
        min-height: auto;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        width: min(100%, 380px);
        aspect-ratio: 4 / 5;
        margin-inline: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .section {
        padding: 60px 0;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-contact .btn-whatsapp {
        margin: 14px auto 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-inner {
        height: 60px;
    }

    .logo-img {
        height: 42px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-layout {
        gap: 28px;
    }

    .hero-visual {
        width: min(100%, 380px);
    }

    .founder-info {
        padding: 20px;
    }

    .solution-card {
        padding: 24px 20px;
    }

    .sector-card {
        padding: 28px 20px;
    }
}

/* ============================================
   RTL Adjustments
   ============================================ */
[dir="rtl"] .about-feature {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .footer-contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .footer-brand p {
    text-align: right;
}

[dir="rtl"] .footer-links {
    text-align: right;
}

[dir="rtl"] .footer-contact {
    text-align: right;
}

[dir="rtl"] .footer-contact .btn-whatsapp {
    margin-right: auto;
    margin-left: 0;
}

/* Mobile Menu RTL */
[dir="rtl"] .mobile-menu-link {
    font-family: var(--font-ar);
}

/* Mobile Menu Small Screens */
@media (max-width: 375px) {
    .mobile-menu-link {
        font-size: 18px;
        min-height: 48px;
        padding: 12px 14px;
    }

    .mobile-menu-links {
        gap: 8px;
        padding: 20px 16px 20px;
    }

    .mobile-menu-header {
        padding: 14px 16px;
    }

    .mobile-menu-footer {
        padding: 16px 16px 28px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--black);
}
