/* ===== DESIGN SYSTEM ===== */
:root {
    --blue-deep:    #0A1F5C;
    --blue-primary: #1A4FC4;
    --blue-mid:     #2563EB;
    --blue-light:   #EEF4FF;
    --gold:         #C9A84C;
    --gold-light:   #FDF3DC;
    --white:        #FFFFFF;
    --gray-soft:    #F8FAFF;
    --gray-text:    #64748B;
    --dark-text:    #0F172A;
    --card-radius:  24px;
    --section-gap:  120px;
}

/* ===== GLOBAL UTILITIES ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--card-radius);
}

.gold-line {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin-bottom: 16px;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
}

/* ===== NAVBAR ===== */
.nav-link {
    position: relative;
    display: inline-flex;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 8px 18px;
}

.nav-link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: right;
    background: white;
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: white;
}

.nav-cta-pill {
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-inline-start: 12px;
}

.nav-cta-pill:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

/* Mobile overlay menu */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(10, 31, 92, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: overlayIn 0.3s ease;
}

@keyframes overlayIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav-link {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 12px 0;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

/* ===== HERO ===== */
.hero-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-blob-1 {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(99, 179, 237, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.hero-blob-2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.scroll-mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
    margin: 0 auto;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

/* CTA Hero button */
.cta-hero {
    background: white;
    color: var(--blue-primary);
    border-radius: 999px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.cta-hero:hover::before {
    transform: scaleX(1);
}

.cta-hero:hover {
    color: white;
}

.cta-hero span {
    position: relative;
    z-index: 1;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.stat-block {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
    border-radius: 20px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
}

.stat-block::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.stat-block.stat-wide {
    background: linear-gradient(135deg, #FDF3DC, #f5e6b8) !important;
    color: var(--dark-text);
}

.stat-block.stat-wide .stat-label {
    color: var(--gray-text);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #C9A84C !important;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(201, 168, 76, 0.3);
}

.stat-block.stat-wide .stat-number {
    color: #0A1F5C !important;
    text-shadow: none;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

/* ===== VISION & VALUES ===== */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 56px;
}

@media (min-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1.3fr 1fr;
    }
}

.vision-card {
    background: linear-gradient(145deg, #0A1F5C 0%, #1A4FC4 100%);
    border-radius: 28px;
    padding: 52px 48px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.vision-card::before {
    content: '"';
    position: absolute;
    top: -40px;
    inset-inline-end: 24px;
    font-size: 16rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    font-family: Georgia, serif;
    pointer-events: none;
}

.vision-card .card-label {
    display: inline-block;
    background: rgba(201, 168, 76, 0.25);
    color: #C9A84C;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 999px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}

.vision-card .card-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.vision-card .card-signature {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #C9A84C;
    font-size: 0.85rem;
    font-weight: 700;
}

.mission-card {
    background: white;
    border-radius: 28px;
    padding: 52px 40px;
    border: 1px solid rgba(26, 79, 196, 0.1);
    border-inline-start: 5px solid var(--gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.mission-card .card-label {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-primary);
    border-radius: 999px;
    padding: 4px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    width: fit-content;
}

.mission-card .card-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--gray-text);
    flex: 1;
}

/* Legacy pill label — keep for backward compat */
.gold-pill-label {
    display: inline-block;
    background: rgba(201, 168, 76, 0.18);
    color: var(--gold);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(26, 79, 196, 0.08);
    transition: all 0.35s ease;
    cursor: default;
}

.value-card:hover {
    background: var(--blue-primary);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(26, 79, 196, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-light);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: background 0.35s ease;
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

.value-card:hover h4 {
    color: #FFFFFF !important;
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ===== COMPANIES ===== */
.companies-bg {
    background-image:
        linear-gradient(rgba(26, 79, 196, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 79, 196, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

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

@media (min-width: 640px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .companies-grid .card-last {
        grid-column: 1 / 3;
        max-width: 360px;
        margin-inline: auto;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .companies-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .companies-grid .card-last {
        grid-column: 2 / 3;
        max-width: none;
        margin: 0;
    }
}

.company-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 0;
    border: 1px solid rgba(26, 79, 196, 0.08);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* Blue overlay — slides up from bottom on hover */
.company-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1A4FC4 0%, #0A1F5C 100%);
    border-radius: 24px;
    transform: translateY(102%);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.company-card:hover::after {
    transform: translateY(0);
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(26, 79, 196, 0.30);
    border-color: transparent;
}

/* Card inner — always above the overlay */
.company-card .card-inner {
    position: relative;
    z-index: 2;
    padding: 36px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ---- Icon wrapper ---- */
.company-icon-wrap {
    width: 64px;
    height: 64px;
    background: #EEF4FF;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    flex-shrink: 0;
    margin-bottom: 8px;
    transition: background 0.35s ease;
}

.company-card:hover .company-icon-wrap {
    background: rgba(255, 255, 255, 0.18) !important;
}

.company-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: filter 0.35s ease;
}

.company-card:hover .company-icon-wrap svg {
    fill: white;
    stroke: white;
}

/* ---- Company name ---- */
.company-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.company-card:hover .company-name {
    color: #FFFFFF !important;
}

/* ---- Year badge ---- */
.year-badge {
    display: inline-block;
    background: #F1F5F9;
    color: #64748B;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    width: fit-content;
    transition: background 0.3s ease, color 0.3s ease;
}

.company-card:hover .year-badge {
    background: rgba(255, 255, 255, 0.18) !important;
    color: rgba(255, 255, 255, 0.90) !important;
}

/* ---- Description ---- */
.company-desc {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.company-card:hover .company-desc {
    color: rgba(255, 255, 255, 0.80) !important;
}

/* ---- Sector tag ---- */
.sector-tag {
    display: inline-block;
    background: #EEF4FF;
    color: #1A4FC4;
    border: 1px solid rgba(26, 79, 196, 0.15);
    border-radius: 999px;
    padding: 5px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
    margin-top: auto;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.company-card:hover .sector-tag {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.30) !important;
}

.company-card:hover svg {
    stroke: white !important;
    fill: white !important;
}

/* ===== WHY AZKA ===== */
.why-section {
    background:
        radial-gradient(ellipse 900px 700px at 100% 50%, rgba(37, 99, 235, 0.4), transparent),
        radial-gradient(ellipse 600px 500px at 0% 80%, rgba(201, 168, 76, 0.12), transparent),
        var(--blue-deep);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateX(-6px);
}

.feature-number {
    min-width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), #e8b84b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.feature-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== PARTNERSHIPS ===== */
.pillars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    align-items: start;
}

@media (max-width: 768px) {
    .pillars-container {
        grid-template-columns: 1fr;
    }

    .pillars-connector {
        display: none;
    }
}

.pillars-connector {
    position: absolute;
    top: 52px;
    inset-inline-start: 15%;
    width: 70%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(26, 79, 196, 0.2) 0px,
        rgba(26, 79, 196, 0.2) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 0;
    pointer-events: none;
}

.pillars-connector::before,
.pillars-connector::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 79, 196, 0.35);
}

.pillars-connector::before {
    inset-inline-start: 0;
}

.pillars-connector::after {
    inset-inline-end: 0;
}

.pillar-card {
    background: white;
    border-radius: 20px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(26, 79, 196, 0.07);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -1px;
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--gold));
    border-radius: 0 0 4px 4px;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(26, 79, 196, 0.15);
}

.pillar-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-light), #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.pillar-card:nth-child(2) .pillar-icon {
    background: linear-gradient(135deg, #fdf3dc, #fde68a);
}

.pillar-card:nth-child(3) .pillar-icon {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.cta-box {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue-primary));
    border-radius: 28px;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 56px;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 80px solid rgba(255, 255, 255, 0.04);
    top: -180px;
    inset-inline-end: -120px;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    bottom: -140px;
    inset-inline-start: -80px;
}

.cta-box h3,
.cta-box p,
.cta-box .cta-btn {
    position: relative;
    z-index: 1;
}

/* Secondary CTA button (white on blue) */
.cta-secondary,
.cta-btn {
    display: inline-block;
    background: white;
    color: var(--blue-primary);
    border-radius: 999px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-secondary::before,
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: 0;
}

.cta-secondary:hover::before,
.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-secondary:hover,
.cta-btn:hover {
    color: white;
}

.cta-secondary span,
.cta-btn span {
    position: relative;
    z-index: 1;
}

/* ===== WAVE TRANSITIONS ===== */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
}

.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
    pointer-events: none;
    transform: rotate(180deg);
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== CONTACT ===== */
.contact-wrapper {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(10, 31, 92, 0.12);
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--blue-deep), var(--blue-primary));
    padding: 56px 48px;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 80px solid rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -80px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-form-panel {
    padding: 56px 48px;
}

@media (max-width: 640px) {
    .contact-info-panel,
    .contact-form-panel {
        padding: 36px 28px;
    }
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(26, 79, 196, 0.12);
    border-radius: 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    color: var(--dark-text);
    background: var(--gray-soft);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--blue-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(26, 79, 196, 0.08);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
    color: white;
    border-radius: 14px;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form-submit:hover:not(:disabled) {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(26, 79, 196, 0.4);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== FOOTER ===== */
footer {
    background: #060F2E;
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0;
}

.footer-social {
    display: flex;
    height: 40px;
    width: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ===== SCROLL TO TOP ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 40;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(26, 79, 196, 0.4);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: var(--blue-deep);
    transform: translateY(-3px);
}
