/* =============================================
   style.css - الإبداع للمقاولات | Premium Design
   ============================================= */

:root {
    --navy: #0B1F3A;
    --navy-light: #122a4a;
    --gold: #D4AF37;
    --gold-light: #e4c65a;
    --gold-dark: #b8962f;
    --white: #ffffff;
    --gray-bg: #f5f7fa;
    --gray-light: #e8ecf1;
    --gray-mid: #8899b0;
    --gray-dark: #2c3e50;
    --shadow-sm: 0 2px 8px rgba(11,31,58,0.08);
    --shadow-md: 0 8px 30px rgba(11,31,58,0.12);
    --shadow-lg: 0 20px 60px rgba(11,31,58,0.15);
    --shadow-gold: 0 8px 30px rgba(212,175,55,0.3);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Cairo', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background: var(--gray-bg);
    color: var(--gray-dark);
    line-height: 1.8;
    overflow-x: hidden;
    direction: rtl;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader { text-align: center; }
.loader-inner { display: flex; gap: 8px; justify-content: center; margin-bottom: 24px; }
.loader-line {
    width: 8px; height: 40px;
    background: linear-gradient(to top, var(--gold), var(--gold-light));
    border-radius: 4px;
    animation: loaderAnim 1s ease-in-out infinite;
}
.loader-line:nth-child(1) { animation-delay: 0s; }
.loader-line:nth-child(2) { animation-delay: 0.15s; }
.loader-line:nth-child(3) { animation-delay: 0.3s; }
@keyframes loaderAnim {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}
.loader-text {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ===== Navbar ===== */
.navbar {
    padding: 16px 0;
    background: transparent;
    transition: var(--transition);
    z-index: 9999;
}
.navbar.scrolled {
    background: rgba(11,31,58,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white) !important;
}
.brand-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--navy);
    transition: var(--transition);
}
.navbar-brand:hover .brand-icon { transform: rotate(-10deg) scale(1.05); }
.brand-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}
.brand-accent { color: var(--gold); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
    background: rgba(212,175,55,0.1);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    margin-right: 16px;
    transition: var(--transition);
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--navy);
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 28px;
    height: 20px;
    position: relative;
}
.toggler-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Section common ===== */
.section-padding { padding: 100px 0; }
.section-subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin: 0 8px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-desc {
    font-size: 18px;
    color: var(--gray-mid);
    max-width: 600px;
    margin: 0 auto;
}
.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--navy);
}
.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212,175,55,0.1);
    transform: translateY(-3px);
}

/* ===== Hero ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.92), rgba(11,31,58,0.7));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 12px; }
.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.9;
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}
.hero-scroll a { text-decoration: none; }
.scroll-text {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.scroll-line {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Stats ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    margin-top: -80px;
    position: relative;
    z-index: 3;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}
.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}
.stat-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
}
.stat-item:hover .stat-icon { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    display: inline;
    line-height: 1;
}
.stat-plus {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    display: inline;
}
.stat-label {
    font-size: 16px;
    color: var(--gray-mid);
    font-weight: 500;
    margin-top: 8px;
}

/* ===== About ===== */
.about-section { background: var(--gray-bg); }
.about-image-wrapper { position: relative; }
.about-main-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.about-main-img:hover { transform: scale(1.02); }
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    box-shadow: var(--shadow-gold);
    animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.4); }
    50% { box-shadow: 0 0 0 20px rgba(212,175,55,0); }
}
.exp-number { font-size: 36px; font-weight: 900; line-height: 1; }
.exp-text { font-size: 14px; font-weight: 700; }
.about-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    border: 3px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}
.about-content { padding-right: 20px; }
.about-text {
    font-size: 16px;
    color: var(--gray-mid);
    margin-bottom: 32px;
    line-height: 2;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
    min-width: 50px; height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 20px;
}
.about-feature h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--gray-mid); margin: 0; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; }
.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
}
.value-item i { color: var(--gold); }

/* ===== Services ===== */
.services-section { background: var(--white); }
.service-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
    background: linear-gradient(135deg, var(--navy), #123050);
    color: var(--white);
    border-color: transparent;
}
.service-card.featured .service-icon {
    background: rgba(212,175,55,0.2);
    color: var(--gold);
}
.service-card.featured h3,
.service-card.featured .service-link { color: var(--white); }
.service-card.featured .service-link:hover { color: var(--gold); }
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
}
.service-icon {
    width: 64px; height: 64px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.1));
}
.service-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.8; margin-bottom: 20px; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}
.service-link:hover { gap: 14px; color: var(--gold-dark); }

/* ===== Projects ===== */
.projects-section { background: var(--gray-bg); }
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 36px 0;
}
.filter-btn {
    padding: 10px 28px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}
.project-overlay h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}
.project-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}
.project-zoom {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}
.project-card:hover .project-zoom { transform: scale(1.1); }
.project-item.hidden { display: none; }

/* ===== Why Us ===== */
.why-section { background: var(--white); }
.why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.why-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    transform: rotateY(180deg);
}
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.why-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.8; margin: 0; }

/* ===== Timeline ===== */
.timeline-section {
    background: linear-gradient(135deg, var(--navy), #061528);
    position: relative;
}
.timeline-section .section-title { color: var(--white); }
.timeline-section .section-desc { color: rgba(255,255,255,0.6); }
.timeline-wrapper { position: relative; }
.timeline-line {
    position: absolute;
    right: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark), var(--gold));
    transform: translateX(50%);
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-dot {
    min-width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 22px;
    z-index: 2;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
    margin: 0 20px;
}
.timeline-item:hover .timeline-dot { transform: scale(1.1); }
.timeline-content {
    flex: 1;
    max-width: 42%;
    padding: 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.timeline-item:hover .timeline-content {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.3);
}
.timeline-step {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.timeline-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.timeline-content p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
}

/* ===== Partners ===== */
.partners-section { background: var(--gray-bg); }
.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
    text-align: center;
}
.partner-logo:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.partner-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
}
.partner-logo span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}
.partner-swiper .swiper-slide { width: 200px; }

/* ===== Testimonials ===== */
.testimonials-section {
    background: linear-gradient(135deg, var(--navy), #061528);
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-desc { color: rgba(255,255,255,0.6); }
.testimonial-card {
    padding: 40px 32px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
    max-width: 600px;
    margin: 0 auto;
}
.testimonial-card:hover {
    border-color: rgba(212,175,55,0.3);
    background: rgba(255,255,255,0.08);
}
.testimonial-quote {
    text-align: center;
    margin-bottom: 20px;
}
.testimonial-quote i {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.5;
}
.testimonial-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}
.author-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.testimonial-author h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.testimonial-author span {
    color: var(--gold);
    font-size: 13px;
}
.testimonial-rating {
    text-align: center;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
}
.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* ===== FAQ ===== */
.faq-section { background: var(--gray-bg); }
.faq-content { padding-left: 40px; }
.faq-desc {
    font-size: 16px;
    color: var(--gray-mid);
    line-height: 1.9;
}
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}
.faq-question h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.faq-icon {
    min-width: 32px;
    height: 32px;
    background: var(--gray-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
}
.faq-item.active .faq-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-mid);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

/* ===== Contact ===== */
.contact-section {
    background: linear-gradient(135deg, var(--navy), #061528);
    position: relative;
}
.contact-section .section-subtitle { color: var(--gold); }
.contact-desc { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-detail-icon {
    min-width: 48px;
    height: 48px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}
.contact-detail-item h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.contact-detail-item p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }
.contact-social {
    display: flex;
    gap: 12px;
}
.contact-social a {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition);
}
.contact-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}
.contact-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form-wrapper h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 4px;
}
.form-group label {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

/* ===== Footer ===== */
.main-footer { background: #060d1a; }
.footer-top { padding: 80px 0 50px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-brand .brand-text { font-size: 20px; }
.footer-desc {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}
.footer-widget h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a::before { content: '\f100'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px; color: var(--gold); }
.footer-links a:hover {
    color: var(--gold);
    padding-right: 6px;
}
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 14px;
}
.footer-contact li i { color: var(--gold); width: 16px; }
.footer-bottom {
    padding: 24px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 14px;
    margin: 0;
}

/* ===== Floating Buttons ===== */
.whatsapp-btn,
.call-btn,
.back-to-top {
    position: fixed;
    z-index: 999;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}
.whatsapp-btn {
    bottom: 140px;
    left: 24px;
    background: #25D366;
    color: white;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(37,211,102,0.4); color: white; }
.call-btn {
    bottom: 78px;
    left: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
}
.call-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-gold); color: var(--navy); }
.back-to-top {
    bottom: 24px;
    left: 24px;
    background: var(--navy);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* ===== GLightbox override ===== */
.glightbox-clean .gclose,
.glightbox-clean .gnext,
.glightbox-clean .gprev { border: none !important; }

/* ===== Responsive ===== */
@media (max-width: 1199px) {
    .hero-title { font-size: 52px; }
    .section-title { font-size: 34px; }
}
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11,31,58,0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 16px;
    }
    .nav-cta { margin: 12px 0 0; width: fit-content; }
    .hero-title { font-size: 42px; }
    .stats-section { margin-top: -40px; }
    .timeline-item,
    .timeline-item:nth-child(even) { flex-direction: column; }
    .timeline-content { max-width: 100%; }
    .timeline-line { right: 28px; }
    .timeline-dot { margin: 0; position: absolute; right: 0; }
    .timeline-content { margin-right: 60px; }
    .about-content { padding-right: 0; margin-top: 40px; }
    .section-padding { padding: 70px 0; }
    .contact-form-wrapper { margin-top: 40px; }
    .faq-content { padding-left: 0; margin-bottom: 40px; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 32px; }
    .hero-desc { font-size: 15px; }
    .stat-number { font-size: 36px; }
    .stat-item { padding: 20px 12px; }
    .section-title { font-size: 28px; }
    .section-padding { padding: 50px 0; }
    .about-experience-badge { width: 100px; height: 100px; right: -10px; bottom: -10px; }
    .exp-number { font-size: 26px; }
    .whatsapp-btn, .call-btn, .back-to-top { width: 46px; height: 46px; font-size: 20px; }
    .whatsapp-btn { bottom: 120px; }
    .call-btn { bottom: 66px; }
    .back-to-top { bottom: 16px; }
    .footer-top { padding: 50px 0 30px; }
    .project-card img { height: 220px; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 28px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-scroll { display: none; }
    .stats-section { padding: 40px 0; margin-top: 0; border-radius: 0; }
}
