/* ======================================================
   快速救急網 - Landing Page Styles
   Color Palette from Logo:
   --navy:  #082A6D  (dark navy blue)
   --blue:  #0F5FD5  (bright blue)
   ====================================================== */

/* -------------------- Variables -------------------- */
:root {
    --navy:       #082A6D;
    --navy-dark:  #051A47;
    --navy-mid:   #0D3D8C;
    --blue:       #0F5FD5;
    --blue-light: #2E79F5;
    --blue-pale:  #EEF3FF;
    --white:      #FFFFFF;
    --gray-100:   #F5F7FA;
    --gray-200:   #E8EDF5;
    --gray-600:   #6B7280;
    --gray-800:   #1F2937;

    --transition: 0.3s ease;
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --shadow-sm:  0 2px 8px rgba(8, 42, 109, 0.08);
    --shadow-md:  0 8px 32px rgba(8, 42, 109, 0.12);
    --shadow-lg:  0 16px 48px rgba(8, 42, 109, 0.18);
    --shadow-blue: 0 8px 32px rgba(15, 95, 213, 0.3);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', 'PingFang TC', sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.75;
    overflow-x: hidden;
}

section { position: relative; }

img { max-width: 100%; }

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

/* -------------------- Typography -------------------- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-pale);
    border-radius: 100px;
    padding: 4px 16px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.section-block {
    padding: 100px 0;
}

.bg-light-blue {
    background-color: var(--blue-pale);
}

.bg-navy {
    background-color: var(--navy);
}

/* -------------------- Buttons -------------------- */
.btn-cta {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 100px;
    padding: 8px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--blue);
}

.btn-cta:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.btn-hero-primary {
    background: var(--white);
    color: var(--navy) !important;
    border-radius: 100px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white) !important;
    border-radius: 100px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-primary-solid {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 100px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-solid:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

.btn-submit {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    border-radius: 100px;
    padding: 16px 56px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    min-width: 240px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
    color: var(--white);
}

/* -------------------- Navbar -------------------- */
#mainNav .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: filter var(--transition);
}

#mainNav {
    background: transparent;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(8, 26, 71, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

#mainNav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

#mainNav .nav-link:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}

/* -------------------- Hero -------------------- */
#hero {
    min-height: 100vh;
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 70%, var(--blue) 100%);
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(15,95,213,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: transparent;
    background: linear-gradient(90deg, #5BA4FF, #A8C8FF);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Hero Feature Cards */
.hero-feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    color: var(--white);
}

.hero-feature-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.4);
}

.hero-feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.hero-feature-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 6px;
}

.hero-feature-value {
    font-size: 1rem;
    opacity: 0.95;
}

.hero-feature-value strong {
    font-size: 1.3rem;
    font-weight: 800;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* -------------------- About -------------------- */
.about-graphic {
    position: relative;
    padding: 20px;
}

.about-graphic-inner {
    background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-graphic-inner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -60px;
    right: -60px;
}

.about-logo {
    filter: brightness(10);
    max-width: 240px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    padding: 8px 20px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag-pill {
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Stats */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* -------------------- Services -------------------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.service-card--featured {
    background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
    border-color: transparent;
    color: var(--white);
}

.service-card--featured .service-title,
.service-card--featured .service-text {
    color: var(--white);
}

.service-card--featured .service-text {
    opacity: 0.85;
}

.service-card--featured .service-icon {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.service-card--featured .service-link {
    color: rgba(255,255,255,0.9);
}

.service-card--featured .service-link:hover {
    color: var(--white);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--blue);
    color: var(--white);
}

.service-card--featured:hover .service-icon {
    background: rgba(255,255,255,0.25);
}

.service-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.service-link {
    color: var(--blue);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--navy);
    gap: 10px;
}

/* -------------------- Testimonials -------------------- */
.testimonials-swiper {
    padding-bottom: 48px !important;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--blue-light);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
}

.testimonial-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--white) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* -------------------- Process -------------------- */
.process-steps {
    margin-top: 0;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.process-item {
    flex: 1;
    min-width: 0;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.process-step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: -10px;
    font-variant-numeric: tabular-nums;
}

.process-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-blue);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step:hover .process-step-icon {
    transform: scale(1.1) translateY(-4px);
}

.process-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.process-step-text {
    font-size: 0.82rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 32px;
    padding-bottom: 20px;
    opacity: 0.4;
}

/* Mobile: wrap into 2-column grid */
@media (max-width: 991px) {
    .process-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .process-arrow {
        display: none;
    }

    .process-item {
        flex: unset;
    }
}

/* -------------------- FAQ -------------------- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-button {
    background: var(--white) !important;
    color: var(--navy) !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: none !important;
    border: none;
}

.faq-button:not(.collapsed) {
    background: var(--blue-pale) !important;
    color: var(--blue) !important;
}

.faq-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F5FD5'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    flex-shrink: 0;
}

.faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--blue-pale);
    color: var(--blue);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-button:not(.collapsed) .faq-num {
    background: var(--blue);
    color: var(--white);
}

.faq-body {
    padding: 8px 24px 24px 72px;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.faq-list li .bi {
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.faq-ol {
    padding-left: 20px;
    margin: 0;
}

.faq-ol li {
    margin-bottom: 10px;
}

/* -------------------- Apply Form -------------------- */
.apply-section {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.apply-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(15,95,213,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.text-white-75 {
    color: rgba(255,255,255,0.75);
}

.apply-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}

.apply-input {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--gray-800);
}

.apply-input:focus {
    background: var(--white);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(15,95,213,0.12);
    outline: none;
}

.form-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 8px;
}

/* -------------------- Captcha -------------------- */
/*
 * jCaptcha 會把 canvas 插入到 .jCaptcha input 的前面（DOM）
 * 所以 DOM 順序是：canvas → input → button
 * 用 order 調整視覺順序為：input(1) → canvas(2) → button(3)
 */
.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.jCaptcha {
    order: 1;
    flex: 1;
    min-width: 100px;
}

.jCaptchaCanvas {
    order: 2;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    background: var(--gray-100);
    display: block;
    padding: 2px 6px;
}

.captcha-refresh {
    order: 3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-200);
    background: var(--gray-100);
    color: var(--blue);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: rotate(180deg);
}

.jCaptcha.captcha-error {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
}

.jCaptcha.captcha-success {
    border-color: #198754 !important;
    background-color: #f0fff4 !important;
}

.captcha-hint {
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 6px;
}

.apply-disclaimer {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-top: 24px;
    margin-bottom: 0;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

/* -------------------- Footer -------------------- */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    padding: 80px 0 0;
}

.footer-logo {
    filter: brightness(10);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-heading {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact li .bi {
    color: var(--blue);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    margin: 0 0 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.3) !important;
}

/* -------------------- Floating Actions -------------------- */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.fab--phone {
    background: var(--blue);
    color: var(--white);
}

.fab--line {
    background: #00B900;
    color: var(--white);
}

.fab--top {
    background: rgba(8,42,109,0.9);
    color: var(--white);
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 991px) {
    .section-block {
        padding: 72px 0;
    }

    .apply-form-card {
        padding: 32px 24px;
    }

    .faq-body {
        padding-left: 24px;
    }
}

@media (max-width: 767px) {
    #hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .section-block {
        padding: 56px 0;
    }

    .about-graphic-inner {
        padding: 48px 32px;
    }

    .about-logo {
        max-width: 180px;
    }

    .process-step {
        padding: 16px 12px;
    }

    .apply-form-card {
        padding: 24px 20px;
    }

    .floating-actions {
        bottom: 20px;
        right: 16px;
    }

    .fab {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* -------------------- Scroll Reveal Animation -------------------- */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}
