:root {
    --primary: #1a365d;
    --secondary: #d4af37;
    --accent: #2d3748;
    --light: #f8f9fa;
    --dark: #1a202c;
    --gray: #718096;
    --light-gray: #e2e8f0;
    --success: #2f855a;
    --danger: #c53030;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 20px;
    --transition: all 0.35s ease;
    --gradient-primary: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Almarai', 'Noto Naskh Arabic', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'El Messiri', 'Noto Naskh Arabic', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
}
p { margin-bottom: 1rem; }
img { max-width: 100%; display: block; }
a, button, input, select, textarea { font: inherit; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 30px; }
.site-main { min-height: 100vh; }

.header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--secondary);
}
.header-content { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 15px; }
.logo-link { display: flex; align-items: center; text-decoration: none; transition: var(--transition); }
.logo-link:hover { transform: translateY(-3px); }
.logo-icon img { width: 60px; height: 60px; object-fit: contain; transition: var(--transition); }
.logo-link:hover .logo-icon img { transform: scale(1.1); }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: 'El Messiri', serif;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.logo-sub { font-size: 0.85rem; color: var(--gray); margin-top: 2px; font-weight: 500; }

.main-nav { display: flex; gap: 8px; align-items: center; }
.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
.nav-link:hover::before, .nav-link.active::before { opacity: 0.1; }
.nav-link:hover, .nav-link.active { color: var(--primary); transform: translateY(-2px); }
.nav-link.active { font-weight: 700; background: rgba(212, 175, 55, 0.1); }
.nav-link.section-link.active {
    background: var(--gradient-gold);
    color: #fff !important;
    padding: 14px 32px;
    margin-right: 5px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.nav-link.section-link.active::before {
    display: none;
}
.nav-cta {
    background: var(--gradient-gold);
    color: #fff !important;
    padding: 14px 32px;
    margin-right: 5px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}
.nav-cta::before { display: none; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    position: relative;
}
.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), #f8f9fa);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.14);
    z-index: 1100;
    transition: var(--transition);
    overflow-y: auto;
    padding-top: 84px;
}
.sidebar.open { right: 0; }
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.14);
    background: var(--gradient-primary);
    color: white;
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    z-index: 1101;
    transition: var(--transition);
}
.sidebar.open .sidebar-header { right: 0; }
.sidebar-header h2 { color: white; margin: 0; font-size: 1.4rem; }
.close-btn { background: transparent; border: none; color: white; font-size: 2rem; cursor: pointer; line-height: 1; }
.sidebar-nav { display: grid; gap: 10px; padding: 24px 18px; }
.sidebar-link {
    display: block;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 18px rgba(26, 54, 93, 0.06);
    transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active { color: var(--primary); background: rgba(212, 175, 55, 0.12); transform: translateX(-6px); }

.site-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 32, 44, 0.45);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.site-overlay.active { opacity: 1; visibility: visible; }

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 168px 0 118px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0) 36%),
        radial-gradient(circle at 86% 12%, rgba(122, 154, 195, 0.2), rgba(122, 154, 195, 0) 34%),
        linear-gradient(120deg, #1a365d 0%, #1e3b67 42%, #2a3652 100%);
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 30% 56%, rgba(255, 255, 255, 0.08) 0%, transparent 48%);
    background-size: 34px 34px, 34px 34px, auto;
    opacity: 0.55;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(26, 54, 93, 0) 0%, rgba(248, 249, 250, 1) 100%);
    pointer-events: none;
}
.hero-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: start;
}
.hero-section__grid::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 54%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0) 70%);
    filter: blur(8px);
    pointer-events: none;
}
.hero-copy {
    color: white;
    max-width: 700px;
}
.hero-copy > * {
    position: relative;
    z-index: 1;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.92rem;
    margin-bottom: 26px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-copy h1 {
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    color: white;
    margin-bottom: 18px;
    line-height: 1.18;
    letter-spacing: -0.6px;
    text-wrap: balance;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}
.hero-copy p {
    font-size: clamp(1.03rem, 1.35vw, 1.22rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 640px;
    line-height: 1.9;
    margin-bottom: 0;
}
.hero-highlights {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    max-width: 660px;
}
.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}
.hero-highlights li:last-child {
    grid-column: 1 / -1;
}
.hero-highlights li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}
.hero-highlights i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-actions, .consultation-form__actions {
    display: flex;
    gap: 20px;
    margin: 34px 0 28px;
    flex-wrap: wrap;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}
.button--primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}
.button--ghost, .button--secondary { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); }
.button--secondary { color: var(--primary); border-color: rgba(26, 54, 93, 0.18); }
.button:hover { transform: translateY(-4px); }
.button--primary:hover { box-shadow: 0 16px 40px rgba(212, 175, 55, 0.44); }
.button--primary::after {
    content: '';
    position: absolute;
    inset: -140% auto -140% -45%;
    width: 42%;
    transform: rotate(22deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    transition: transform 0.7s ease;
}
.button--primary:hover::after {
    transform: translateX(250%) rotate(22deg);
}
.button--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.48);
}
.button.is-loading { opacity: 0.8; pointer-events: none; }

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: -4px 0 28px;
}
.hero-trust__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    min-height: 54px;
}
.hero-trust__item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
}
.hero-trust__item i {
    color: var(--secondary);
}
.hero-trust__item--static {
    cursor: default;
}

.hero-stats { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 0; margin: 0; }
.hero-stats li {
    min-width: 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}
.hero-stats li::after {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.18));
}
.hero-stats strong { display: block; font-size: 2rem; color: var(--secondary); font-family: 'Tajawal', sans-serif; }
.hero-stats span { color: rgba(255, 255, 255, 0.88); }

.hero-panel {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    box-shadow: var(--shadow-hover);
    min-height: 620px;
    animation: heroPanelFloat 6.2s ease-in-out infinite;
}
.hero-panel > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    filter: saturate(1.08) contrast(1.03);
}
.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.55) 100%);
}
.hero-panel__card {

    background: rgba(255, 255, 255, 0.94);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-top: 4px solid rgba(212, 175, 55, 0.7);
}
.hero-panel__card h2 {
    margin-bottom: 12px;
    line-height: 1.35;
}
.hero-panel__card p {
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}
.hero-panel__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}
.hero-panel__list { list-style: none; display: grid; gap: 8px; margin-top: 14px; }
.hero-panel__list li { position: relative; padding-right: 18px; color: var(--accent); }
.hero-panel__list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}
.hero-panel__footer {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(26, 54, 93, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.hero-panel__footer strong,
.hero-panel__footer span {
    display: block;
}
.hero-panel__footer span {
    color: var(--gray);
    font-size: 0.95rem;
}
.hero-panel__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.hero-panel__link:hover {
    transform: translateY(-2px);
}
.hero-scroll:hover {
    color: white;
}
.hero-scroll {
    position: absolute;
    right: 50%;
    bottom: 26px;
    transform: translateX(50%);
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    animation: heroScrollFloat 2.2s ease-in-out infinite;
}
.hero-scroll i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}
@keyframes heroScrollFloat {
    0%, 100% { transform: translateX(50%) translateY(0); }
    50% { transform: translateX(50%) translateY(6px); }
}
@keyframes heroPanelFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.partners-band {
    position: relative;
    padding: 80px 0 48px;
    background:
        radial-gradient(circle at 10% 15%, rgba(212, 175, 55, 0.10), rgba(212, 175, 55, 0) 48%),
        radial-gradient(circle at 90% 80%, rgba(26, 54, 93, 0.05), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}
.partners-heading {
    margin-bottom: 36px;
}
.partners-heading h2 {
    margin: 0 0 4px;
    font-size: clamp(2rem, 4vw, 3rem);
}
.partners-marquee {
    border-radius: 24px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 24px 52px rgba(26, 54, 93, 0.09), 0 2px 8px rgba(212, 175, 55, 0.06);
    padding: 44px 48px;
}
.partners-marquee__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 48px);
}
.partner-logo {
    width: 240px;
    height: 108px;
    margin: 0;
    border-radius: 18px;
    border: 1px solid rgba(26, 54, 93, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    cursor: default;
}
.partner-logo:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(26, 54, 93, 0.13);
    border-color: rgba(212, 175, 55, 0.38);
}
.partner-logo img {
    max-width: 82%;
    max-height: 72px;
    object-fit: contain;
    opacity: 0.44;
    filter: saturate(0.88) contrast(0.97);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover img {
    opacity: 0.98;
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.04);
}
@media (prefers-reduced-motion: reduce) {
}

.content-section { padding: 120px 0; position: relative; }
.content-section--alt { background: var(--gradient-light); }
.content-section--process { background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 35%), linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%); }
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-size: 3rem; margin: 18px 0 20px; }
.section-heading p { font-size: 1.15rem; color: var(--gray); max-width: 760px; margin: 0 auto; }

.about-layout, .feature-grid, .service-grid, .testimonial-grid { display: grid; gap: 30px; }
.about-layout, .feature-grid, .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.service-grid { grid-template-columns: repeat(3, 1fr); }

.about-card, .feature-card, .service-card, .testimonial-card, .timeline-step, .consultation-form {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(26, 54, 93, 0.07);
}
.about-card, .feature-card, .service-card, .testimonial-card, .timeline-step { padding: 34px 28px; transition: var(--transition); }
.about-card:hover, .feature-card:hover, .service-card:hover, .testimonial-card:hover, .timeline-step:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.feature-card, .service-card {
    position: relative;
    overflow: hidden;
}
.feature-card::before, .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}
.service-card__icon, .feature-card i {
    width: 64px; height: 64px; display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px; border-radius: 18px; background: var(--gradient-primary); color: white; font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(26, 54, 93, 0.18);
}
.feature-card::after, .service-card::after {
    content: '';
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0) 72%);
    pointer-events: none;
    transition: transform 0.35s ease;
}
.feature-card:hover::after, .service-card:hover::after {
    transform: scale(1.15);
}
.feature-card p, .service-card p, .about-card p, .testimonial-card p, .timeline-step p { color: var(--gray); margin-top: 12px; }
.feature-card h3, .service-card h3 {
    margin-bottom: 8px;
}
.feature-card h3, .service-card h3, .about-card h3, .timeline-step h3 {
    line-height: 1.45;
}
.feature-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
}
.service-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 252, 1) 100%);
}
.feature-card:hover .fas, .service-card:hover .fas {
    transform: translateY(-3px) scale(1.04);
}
.feature-card .fas, .service-card .fas {
    transition: transform 0.35s ease;
}
.section-heading .eyebrow {
    color: var(--primary);
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.18);
}
.about-card {
    position: relative;
    overflow: hidden;
}
.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04), transparent 45%);
    pointer-events: none;
}

.narrow { max-width: 980px; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.timeline-step__number {
    width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-gold); color: white; font-weight: 800; margin-bottom: 14px;
}

.testimonial-card { position: relative; padding-top: 46px; }
.testimonial-card::before {
    content: '\201D';
    position: absolute;
    top: 8px; right: 22px;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.22);
    line-height: 1;
}
.testimonial-card strong { display: inline-block; margin-top: 12px; color: var(--primary); }

.faq-list { display: grid; gap: 18px; }
.faq-item { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; }
.faq-question {
    width: 100%; border: none; background: transparent; padding: 24px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; text-align: right;
}
.faq-question span { font-weight: 700; color: var(--primary); }
.faq-question i { color: var(--secondary); transition: var(--transition); }
.faq-answer { max-height: 0; overflow: hidden; padding: 0 28px; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.is-open .faq-answer { max-height: 220px; padding: 0 28px 24px; }
.faq-item.is-open .faq-question i { transform: rotate(45deg); }

.contact-section-home {
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 30%), linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}
.contact-home { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; align-items: start; }
.contact-home__intro { padding: 12px 0; }
.contact-home__intro h2 { font-size: 2.7rem; margin-bottom: 16px; }
.contact-home__intro p { color: var(--gray); max-width: 540px; }
.contact-home__list { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.contact-home__list li { display: flex; align-items: center; gap: 12px; color: var(--accent); }
.contact-home__list i {
    width: 42px; height: 42px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
    background: rgba(26, 54, 93, 0.08); color: var(--primary);
}
.consultation-form { padding: 32px; border-top: 5px solid var(--secondary); }
.consultation-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; color: var(--primary); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 2px solid rgba(26, 54, 93, 0.12);
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;
    transition: var(--transition);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--secondary); box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-color: var(--danger); }
.form-field.is-valid input, .form-field.is-valid select, .form-field.is-valid textarea { border-color: var(--success); }
.field-error { min-height: 20px; color: var(--danger); font-size: 0.92rem; }
.form-note { color: var(--gray); font-size: 0.95rem; }

.footer { background: var(--gradient-primary); color: white; padding: 70px 0 24px; }
.footer-content { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 32px; }
.footer-section h3 { font-size: 1.6rem; color: white; margin-bottom: 18px; }
.footer-about p, .contact-list li, .contact-list a, .contact-list span { color: rgba(255, 255, 255, 0.88); }
.social-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.social-icon {
    width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255, 255, 255, 0.12); color: white; text-decoration: none; transition: var(--transition);
}
.social-icon:hover { background: rgba(212, 175, 55, 0.35); transform: translateY(-3px); }
.contact-list { list-style: none; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list a { text-decoration: none; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.12); }

.floating-whatsapp {
    position: fixed;
    bottom: 30px; left: 30px;
    width: 60px; height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
body.sidebar-open { overflow: hidden; }

@media (max-width: 1200px) {
    .hero-section__grid, .about-layout, .feature-grid, .service-grid, .footer-content, .testimonial-grid, .timeline, .contact-home { grid-template-columns: repeat(2, 1fr); }
    .hero-copy h1 { font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
    .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-trust__item:last-child { grid-column: 1 / -1; }
    .hero-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero-stats li:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .hero-section { padding: 128px 0 78px; min-height: auto; }
    .hero-copy h1 { font-size: 2.6rem; }
    .partners-band { padding: 64px 0 36px; }
    .partners-marquee { padding: 36px 32px; }
    .partner-logo {
        width: 190px;
        height: 92px;
    }
    .partner-logo img {
        max-height: 62px;
    }
    .hero-section__grid::before { display: none; }
    .hero-highlights { grid-template-columns: 1fr; }
    .hero-highlights li:last-child { grid-column: auto; }
    .hero-trust,
    .hero-stats { grid-template-columns: 1fr; }
    .hero-trust__item:last-child,
    .hero-stats li:last-child { grid-column: auto; }
    .hero-section__grid, .about-layout, .feature-grid, .service-grid, .footer-content, .testimonial-grid, .timeline, .contact-home, .consultation-form__grid { grid-template-columns: 1fr; }
    .hero-panel {
        order: 2;
        min-height: auto;
        display: grid;
        gap: 18px;
        animation: none;
    }
    .hero-panel > img {
        min-height: 420px;
    }
    .hero-panel__card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -58px;
        margin-inline: auto;
        z-index: 1;
    }
    .hero-scroll { display: none; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .header { padding: 14px 0; }
    .logo-icon img { width: 50px; height: 50px; }
    .logo-main { font-size: 1.5rem; }
    .hero-section { padding: 116px 0 64px; }
    .eyebrow { padding: 10px 20px; font-size: 0.84rem; margin-bottom: 18px; }
    .hero-copy h1, .contact-home__intro h2 { font-size: 2.05rem; margin-bottom: 14px; }
    .hero-copy p { font-size: 1rem; line-height: 1.85; }
    .hero-actions { margin: 26px 0 24px; gap: 14px; }
    .section-heading h2 { font-size: 2.1rem; }
    .button, .consultation-form__actions .button { width: 100%; }
    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero-stats li {
        width: 100%;
        min-width: 0;
        padding: 14px;
        border-radius: 16px;
    }
    .hero-stats strong { font-size: 1.7rem; }
    .hero-highlights li,
    .hero-trust__item {
        width: 100%;
    }
    .hero-panel > img {
        min-height: 280px;
    }
    .hero-panel__card {
        margin-top: -38px;
        width: calc(100% - 20px);
        padding: 18px;
    }
    .hero-panel__footer {
        flex-direction: column;
        align-items: stretch;
    }
    .partners-heading { margin-bottom: 24px; }
    .partners-marquee {
        border-radius: 16px;
        padding: 28px 20px;
    }
    .partners-marquee__inner {
        gap: 16px;
    }
    .partners-marquee::before,
    .partners-marquee::after {
        width: 52px;
    }
    .partners-marquee__inner {
        gap: 0;
    }
    .partners-marquee { padding: 24px 16px; }
    .partner-logo {
        width: 150px;
        height: 78px;
        border-radius: 14px;
    }
    .partner-logo img {
        max-width: 78%;
        max-height: 50px;
    }
    .hero-panel__link {
        width: 100%;
    }
    .consultation-form { padding: 22px; }
    .floating-whatsapp { left: 18px; bottom: 18px; width: 52px; height: 52px; font-size: 1.6rem; }
}
