/* =====================================================
   ABDELRHMAN ALALAMI - MAIN STYLESHEET
   ===================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Header ===== */
.aa-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.aa-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.aa-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.aa-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aa-logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}

.aa-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c9a227, #e8c448);
    color: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    font-style: italic;
}

/* Navigation */
.aa-nav__menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.aa-nav__menu li a {
    color: #d1d5db;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.aa-nav__menu li a:hover,
.aa-nav__menu li.current-menu-item a {
    color: #c9a227;
    background: rgba(201, 162, 39, 0.08);
}

.aa-nav__cta {
    background: #c9a227 !important;
    color: #0a0a0a !important;
    padding: 10px 22px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
}

.aa-nav__cta:hover {
    background: #e8c448 !important;
    transform: translateY(-1px);
}

/* Hamburger */
.aa-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.aa-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.aa-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.aa-hamburger.active span:nth-child(2) { opacity: 0; }
.aa-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.aa-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding: 120px 0 80px;
}

.aa-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.aa-hero__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.aa-hero__content { position: relative; z-index: 2; }

.aa-hero__name {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #c9a227;
    line-height: 1.1;
    margin-bottom: 8px;
}

.aa-hero__name-en {
    font-size: 1.2rem;
    font-weight: 500;
    color: #c9a227;
    letter-spacing: 2px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.aa-hero__title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.aa-hero__desc {
    font-size: 1.05rem;
    color: #9ca3af;
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.9;
}

/* Role badges */
.aa-hero__roles {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.aa-role-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.aa-role-badge__icon {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9a227;
}

.aa-role-badge__en {
    font-size: 0.7rem;
    color: #c9a227;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.aa-role-badge__ar {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* CTA Buttons */
.aa-hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.aa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.aa-btn--primary {
    background: #c9a227;
    color: #0a0a0a;
}

.aa-btn--primary:hover {
    background: #e8c448;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.aa-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.aa-btn--outline:hover {
    border-color: #c9a227;
    color: #c9a227;
    transform: translateY(-2px);
}

.aa-btn--gold-outline {
    background: transparent;
    color: #c9a227;
    border: 1.5px solid #c9a227;
}

.aa-btn--gold-outline:hover {
    background: #c9a227;
    color: #0a0a0a;
    transform: translateY(-2px);
}

/* Hero Image */
.aa-hero__image-wrap {
    position: relative;
    width: 420px;
    flex-shrink: 0;
}

.aa-hero__image-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #c9a227 0%, transparent 60%);
    z-index: 0;
}

.aa-hero__image {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: top center;
}

/* Video play button */
.aa-hero__video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 20px;
}

.aa-play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.aa-hero__video-btn:hover .aa-play-icon {
    background: #c9a227;
    border-color: #c9a227;
    color: #0a0a0a;
}

/* Scroll indicator */
.aa-hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.aa-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #c9a227, transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   SECTION STYLES
   ===================================================== */
.aa-section {
    padding: 100px 0;
}

.aa-section--dark { background: #0a0a0a; }
.aa-section--dark-2 { background: #111111; }
.aa-section--navy { background: #0d1b2a; }

.aa-section__header {
    text-align: center;
    margin-bottom: 64px;
}

.aa-section__subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a227;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.aa-section__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.aa-section__desc {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}

.aa-gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #c9a227, #e8c448);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.aa-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.aa-about__image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.aa-about__image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, #c9a227 0%, transparent 60%);
    opacity: 0.1;
    border-radius: 20px;
    pointer-events: none;
}

.aa-about__image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
}

.aa-about__text {
    padding-right: 20px;
}

.aa-about__text p {
    color: #9ca3af;
    margin-bottom: 16px;
    line-height: 1.95;
    font-size: 1rem;
}

/* =====================================================
   JOURNEY SECTION - رحلتي
   ===================================================== */
.aa-journey { background: #111111; }

.aa-journey__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.aa-journey__item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    background: rgba(201, 162, 39, 0.03);
    transition: all 0.3s ease;
}

.aa-journey__item:hover {
    border-color: rgba(201, 162, 39, 0.4);
    background: rgba(201, 162, 39, 0.07);
    transform: translateY(-4px);
}

.aa-journey__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid #c9a227;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c9a227;
}

.aa-journey__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.aa-journey__desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.8;
}

/* =====================================================
   WORK AREAS SECTION - مجالات
   ===================================================== */
.aa-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.aa-area-card {
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}

.aa-area-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.aa-area-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.aa-area-card__body { padding: 24px; }

.aa-area-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c9a227, #a07d10);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    margin-bottom: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.aa-area-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.aa-area-card__desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.75;
}

/* =====================================================
   STATS SECTION - أرقام وإنجازات
   ===================================================== */
.aa-stats { background: #111111; }

.aa-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.aa-stat {
    padding: 30px 16px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.15);
    background: rgba(201, 162, 39, 0.03);
    transition: all 0.3s ease;
}

.aa-stat:hover {
    border-color: rgba(201, 162, 39, 0.35);
    background: rgba(201, 162, 39, 0.06);
    transform: translateY(-4px);
}

.aa-stat__icon {
    color: #c9a227;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.aa-stat__number {
    font-size: 2.2rem;
    font-weight: 900;
    color: #c9a227;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.aa-stat__label {
    font-size: 0.82rem;
    color: #6b7280;
    line-height: 1.5;
}

/* =====================================================
   FEATURED PROJECT SECTION - تواصلنا
   ===================================================== */
.aa-featured { background: #0d1b2a; }

.aa-featured__inner {
    border-radius: 24px;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2d47 100%);
    border: 1px solid rgba(201, 162, 39, 0.2);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
}

.aa-featured__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 162, 39, 0.15);
    color: #c9a227;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.aa-featured__logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.aa-featured__desc {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 28px;
}

.aa-featured__features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.aa-feature-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    text-align: center;
    min-width: 90px;
}

.aa-feature-chip__icon { color: #c9a227; margin-bottom: 4px; }
.aa-feature-chip__label { font-size: 0.78rem; color: #9ca3af; }

.aa-featured__stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.aa-featured__stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: #c9a227;
    display: block;
}

.aa-featured__stat-label { font-size: 0.8rem; color: #6b7280; }

.aa-featured__image {
    max-width: 400px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* =====================================================
   CONTENT & MEDIA SECTION
   ===================================================== */
.aa-media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.aa-media-card {
    border-radius: 16px;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
}

.aa-media-card:hover {
    border-color: rgba(201, 162, 39, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.aa-media-card__thumb {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.aa-media-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aa-media-card:hover .aa-media-card__thumb img {
    transform: scale(1.05);
}

.aa-media-card__platform {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.aa-media-card__platform--youtube {
    background: #ff0000;
    color: #fff;
}

.aa-media-card__platform--tiktok {
    background: #010101;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.aa-media-card__platform--articles {
    background: #c9a227;
    color: #0a0a0a;
}

.aa-media-card__body { padding: 22px; }

.aa-media-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.5;
}

.aa-media-card__desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 18px;
}

/* Video grid for YouTube */
.aa-video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.aa-video-card {
    background: #111111;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.aa-video-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.2); }

.aa-video-card__thumb {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.aa-video-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aa-video-card__duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.aa-video-card__body { padding: 14px; }

.aa-video-card__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aa-video-card__meta { font-size: 0.75rem; color: #6b7280; }

/* =====================================================
   PROJECTS SECTION - مشاريعي وشركاتي
   ===================================================== */
.aa-projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.aa-project-card {
    background: #111111;
    border-radius: 16px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
}

.aa-project-card:hover {
    border-color: rgba(201, 162, 39, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.aa-project-card__logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
}

.aa-project-card__logo img { width: 100%; height: 100%; object-fit: contain; }

.aa-project-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(201, 162, 39, 0.1);
    color: #c9a227;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.aa-project-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.aa-project-card__desc {
    font-size: 0.83rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 20px;
}

.aa-project-card__link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9a227;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.aa-project-card__link:hover { color: #e8c448; }

/* =====================================================
   BLOG / ARTICLES SECTION
   ===================================================== */
.aa-blog { background: #111111; }

.aa-blog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.aa-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.aa-article-card {
    background: #0a0a0a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.35s ease;
}

.aa-article-card:hover {
    border-color: rgba(201, 162, 39, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.aa-article-card__thumb {
    height: 200px;
    overflow: hidden;
}

.aa-article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.aa-article-card:hover .aa-article-card__thumb img { transform: scale(1.06); }

.aa-article-card__body { padding: 24px; }

.aa-article-card__date {
    font-size: 0.78rem;
    color: #c9a227;
    margin-bottom: 10px;
    font-weight: 500;
}

.aa-article-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.5;
}

.aa-article-card__title a { color: inherit; }
.aa-article-card__title a:hover { color: #c9a227; }

.aa-article-card__excerpt {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================================
   FOOTER
   ===================================================== */
.aa-footer {
    background: #070707;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.aa-footer__top { padding: 80px 0 60px; }

.aa-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
}

.aa-footer__tagline {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 12px 0 20px;
    line-height: 1.6;
}

.aa-footer__social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.aa-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.aa-footer__social a:hover {
    border-color: #c9a227;
    color: #c9a227;
    background: rgba(201, 162, 39, 0.08);
    transform: translateY(-2px);
}

.aa-footer__email {
    display: block;
    font-size: 0.88rem;
    color: #9ca3af;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.aa-footer__email:hover { color: #c9a227; }
.aa-footer__phone { font-size: 0.88rem; color: #6b7280; direction: ltr; display: inline-block; }

.aa-footer__title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.aa-footer__links li { margin-bottom: 10px; }

.aa-footer__links a {
    font-size: 0.88rem;
    color: #6b7280;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.aa-footer__links a:hover { color: #c9a227; padding-right: 4px; }

.aa-footer__newsletter p {
    font-size: 0.88rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.75;
}

.aa-newsletter-form__group {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.aa-newsletter-form__input {
    flex: 1;
    padding: 13px 16px;
    background: rgba(255,255,255,0.04);
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    direction: rtl;
}

.aa-newsletter-form__input::placeholder { color: #4b5563; }

.aa-newsletter-form__btn {
    padding: 13px 22px;
    background: #c9a227;
    color: #0a0a0a;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.aa-newsletter-form__btn:hover { background: #e8c448; }

.aa-footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.aa-footer__bottom p {
    font-size: 0.82rem;
    color: #4b5563;
}

/* ===== Back to Top ===== */
.aa-back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 44px;
    height: 44px;
    background: #c9a227;
    color: #0a0a0a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 900;
    border: none;
}

.aa-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.aa-back-to-top:hover {
    background: #e8c448;
    transform: translateY(-2px);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
.aa-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.aa-fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.aa-fade-up:nth-child(1) { transition-delay: 0.1s; }
.aa-fade-up:nth-child(2) { transition-delay: 0.2s; }
.aa-fade-up:nth-child(3) { transition-delay: 0.3s; }
.aa-fade-up:nth-child(4) { transition-delay: 0.4s; }
.aa-fade-up:nth-child(5) { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE - TABLET
   ===================================================== */
@media (max-width: 1024px) {
    .aa-hero__grid { grid-template-columns: 1fr; }
    .aa-hero__image-wrap { width: 100%; max-width: 400px; margin: 40px auto 0; }
    .aa-areas__grid { grid-template-columns: repeat(2, 1fr); }
    .aa-stats__grid { grid-template-columns: repeat(3, 1fr); }
    .aa-journey__grid { grid-template-columns: repeat(2, 1fr); }
    .aa-projects__grid { grid-template-columns: repeat(2, 1fr); }
    .aa-video-grid { grid-template-columns: repeat(2, 1fr); }
    .aa-about__grid { grid-template-columns: 1fr; }
    .aa-featured__inner { grid-template-columns: 1fr; }
    .aa-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* =====================================================
   RESPONSIVE - MOBILE
   ===================================================== */
@media (max-width: 768px) {
    .aa-nav {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: #0a0a0a;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 20px;
        z-index: 999;
    }

    .aa-nav.active { display: block; }

    .aa-nav__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .aa-nav__menu li { width: 100%; }
    .aa-nav__menu li a { display: block; width: 100%; padding: 12px 16px; }

    .aa-hamburger { display: flex; }

    .aa-hero { padding: 100px 0 60px; }
    .aa-hero__name { font-size: 2.4rem; }
    .aa-hero__ctas { flex-direction: column; }
    .aa-btn { width: 100%; justify-content: center; }

    .aa-section { padding: 70px 0; }

    .aa-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .aa-areas__grid { grid-template-columns: 1fr; }
    .aa-journey__grid { grid-template-columns: 1fr; }
    .aa-media__grid { grid-template-columns: 1fr; }
    .aa-blog__grid { grid-template-columns: 1fr; }
    .aa-projects__grid { grid-template-columns: 1fr; }
    .aa-video-grid { grid-template-columns: 1fr; }
    .aa-featured__inner { padding: 30px; }
    .aa-footer__grid { grid-template-columns: 1fr; gap: 40px; }
    .aa-blog__header { flex-direction: column; gap: 20px; text-align: center; }
    .aa-featured__stats { gap: 20px; }
    .aa-featured__features { gap: 12px; }
    .aa-hero__roles { gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .aa-hero__name { font-size: 2rem; }
    .aa-stats__grid { grid-template-columns: 1fr 1fr; }
    .aa-stat__number { font-size: 1.8rem; }
}
