/* ============================================================
   INDUSSOLAR - Main Stylesheet
   Modern Solar Company Website
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --yellow:      #F5C518;
    --yellow-dark: #E0B000;
    --yellow-light:#FFF8DC;
    --black:       #0A0A0A;
    --dark:        #111827;
    --dark2:       #1F2937;
    --gray:        #6B7280;
    --gray-light:  #F9FAFB;
    --border:      #E5E7EB;
    --white:       #FFFFFF;
    --green:       #10B981;
    --blue:        #3B82F6;
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
    --shadow:      0 4px 20px rgba(0,0,0,0.10);
    --shadow-lg:   0 10px 40px rgba(0,0,0,0.15);
    --radius:      12px;
    --radius-lg:   20px;
    --font:        'Plus Jakarta Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-yellow { color: var(--yellow) !important; }
.text-green  { color: var(--green) !important; }
.text-gray   { color: var(--gray) !important; }
.bg-dark     { background: var(--dark) !important; }
.bg-yellow   { background: var(--yellow) !important; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-tag {
    display: inline-block;
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.section-tag.white { background: rgba(255,255,255,0.15); color: white; }

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}
.section-title.white { color: white; }
.section-title span { color: var(--yellow); }

.section-sub {
    font-size: 1rem;
    color: var(--gray);
    max-width: 580px;
    line-height: 1.75;
}
.section-sub.white { color: rgba(255,255,255,0.75); }

.divider {
    width: 50px; height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin: 1rem 0;
}
.divider.center { margin: 1rem auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-solar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    white-space: nowrap;
    text-decoration: none;
}
.btn-solar-primary {
    background: var(--yellow);
    color: var(--dark);
}
.btn-solar-primary:hover {
    background: var(--yellow-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,197,24,0.4);
}
.btn-solar-dark {
    background: var(--dark);
    color: white;
}
.btn-solar-dark:hover {
    background: var(--dark2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}
.btn-solar-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}
.btn-solar-outline:hover {
    background: var(--dark);
    color: white;
}
.btn-solar-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-solar-outline-white:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}
.btn-solar-sm { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.btn-solar-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 0.55rem 0;
    font-size: 0.8rem;
}
.topbar a { color: rgba(255,255,255,0.75); }
.topbar a:hover { color: var(--yellow); }
.topbar .divider-v { margin: 0 0.75rem; opacity: 0.3; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-solar {
    background: white;
    padding: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}
.navbar-solar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.navbar-logo-icon {
    width: 42px; height: 42px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.navbar-logo-text .name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.navbar-logo-text .tag {
    display: block;
    font-size: 0.62rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}
.navbar-menu a {
    padding: 0.5rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: 8px;
    transition: 0.2s;
}
.navbar-menu a:hover { color: var(--yellow-dark); background: var(--yellow-light); }
.navbar-menu a.active { color: var(--yellow-dark); }
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.navbar-phone {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.navbar-phone i { color: var(--yellow-dark); }
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.4rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2744 50%, #0f172a 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0 3rem;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245,197,24,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 40%);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245,197,24,0.15);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title .text-yellow { color: var(--yellow); }
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.hero-stat .num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}
.hero-stat .lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    margin-top: 0.2rem;
}
.hero-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-form-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.hero-form-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--dark); margin-bottom: 0.35rem; }
.form-input {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font);
    color: var(--dark);
    transition: border-color 0.2s;
    outline: none;
    background: white;
}
.form-input:focus { border-color: var(--yellow-dark); }
.form-select {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-family: var(--font);
    color: var(--dark);
    background: white;
    outline: none;
    cursor: pointer;
}
.form-select:focus { border-color: var(--yellow-dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rating-stars { color: var(--yellow); font-size: 0.75rem; }
.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.google-rating .stars { color: var(--yellow); }
.google-logo { font-weight: 700; }
.google-logo .g { color: #4285F4; }
.google-logo .o1 { color: #EA4335; }
.google-logo .o2 { color: #FBBC05; }
.google-logo .g2 { color: #4285F4; }
.google-logo .l { color: #34A853; }
.google-logo .e { color: #EA4335; }

/* ============================================================
   MARQUEE / PARTNERS
   ============================================================ */
.marquee-section {
    background: var(--gray-light);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.marquee-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
    padding-right: 2rem;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: max-content;
}
.marquee-item {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.marquee-item:hover { opacity: 1; color: var(--dark); }
.marquee-item img { height: 28px; width: auto; object-fit: contain; filter: grayscale(1); }
.marquee-item:hover img { filter: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    background: var(--dark);
    padding: 60px 0;
}
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    display: block;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.08); }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow);
}
.service-img {
    height: 200px;
    background: linear-gradient(135deg, #1a2744, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-img .icon-fallback {
    font-size: 3.5rem;
    color: var(--yellow);
    opacity: 0.8;
}
.service-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.service-icon {
    width: 52px; height: 52px;
    background: var(--yellow-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--yellow-dark);
    margin-bottom: 1rem;
}
.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}
.service-subtitle { font-size: 0.8rem; color: var(--yellow-dark); font-weight: 600; margin-bottom: 0.75rem; }
.service-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.service-features { margin-bottom: 1.25rem; }
.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.service-feature i { color: var(--green); font-size: 0.75rem; flex-shrink: 0; }
.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow-dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}
.service-link:hover { gap: 0.7rem; color: var(--dark); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--gray-light); }
.why-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--yellow);
}
.why-icon {
    width: 60px; height: 60px;
    background: var(--yellow);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
}
.why-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.why-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */
.process-section { background: var(--dark); }
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 38px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(245,197,24,0.2);
    border-top: 2px dashed rgba(245,197,24,0.3);
}
.process-step:last-child::after { display: none; }
.step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 8px rgba(245,197,24,0.15);
}
.step-icon {
    width: 48px; height: 48px;
    background: rgba(245,197,24,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--yellow);
    margin: 0 auto 0.75rem;
}
.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}
.step-desc { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-img-wrap {
    background: linear-gradient(135deg, #1a2744, #0f1f3d);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.6);
    padding: 2rem;
}
.about-placeholder .emoji { font-size: 5rem; display: block; margin-bottom: 1rem; }
.about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}
.about-badge .num { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .lbl { font-size: 0.7rem; font-weight: 600; }
.about-point {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}
.about-point-icon {
    width: 36px; height: 36px;
    background: var(--yellow-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--yellow-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-point-text strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.about-point-text span { font-size: 0.83rem; color: var(--gray); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section { background: var(--gray-light); }
.testi-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}
.testi-card:hover { box-shadow: var(--shadow); border-color: var(--yellow); }
.testi-savings {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.saving-pill {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
}
.pill-before { background: #FEE2E2; color: #991B1B; }
.pill-after  { background: #D1FAE5; color: #065F46; }
.pill-size   { background: var(--yellow-light); color: var(--yellow-dark); }
.testi-quote { font-size: 2.5rem; color: var(--yellow); line-height: 0.5; margin-bottom: 0.5rem; }
.testi-text  { font-size: 0.88rem; color: var(--gray); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--dark);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-location { font-size: 0.77rem; color: var(--gray); }
.testi-stars { color: var(--yellow); font-size: 0.75rem; margin-top: 0.1rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: 0.2s;
}
.faq-item.open { border-color: var(--yellow); }
.faq-question {
    width: 100%;
    text-align: left;
    background: white;
    border: none;
    padding: 1.1rem 1.5rem;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font);
    transition: 0.2s;
}
.faq-question:hover { background: var(--gray-light); }
.faq-item.open .faq-question { background: var(--yellow-light); color: var(--yellow-dark); }
.faq-icon { font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--gray); line-height: 1.75; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-img {
    height: 200px;
    background: linear-gradient(135deg, #1a2744, #0f172a);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-img .placeholder { font-size: 3rem; color: var(--yellow); opacity: 0.7; }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}
.blog-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 0.75rem;
}
.blog-excerpt { font-size: 0.83rem; color: var(--gray); line-height: 1.65; flex: 1; }
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--gray);
}
.blog-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--yellow-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    background: var(--dark2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.75));
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2744, #0f172a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}
.gallery-placeholder i { font-size: 2rem; color: var(--yellow); opacity: 0.6; }

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2744 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.contact-info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: 0.3s;
}
.contact-info-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,197,24,0.3); }
.contact-icon {
    width: 46px; height: 46px;
    background: var(--yellow);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-info-card strong { display: block; color: white; font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-card span, .contact-info-card a { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.contact-info-card a:hover { color: var(--yellow); }
.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.contact-form-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.3rem;
}
.contact-form-card p { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #080E1A;
    padding: 70px 0 0;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.footer-logo-icon {
    width: 40px; height: 40px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.footer-logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.6rem; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: 0.2s;
    font-size: 0.9rem;
}
.social-btn:hover { background: var(--yellow); color: var(--dark); }
.footer-heading {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: 0.2s;
}
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-links a i { font-size: 0.65rem; color: var(--yellow); opacity: 0.6; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}
.footer-contact-item i { color: var(--yellow); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 3rem;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-btn {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: pulse-green 2s infinite;
    transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); color: white; }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}
.whatsapp-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark);
    color: white;
    font-size: 0.78rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.back-to-top {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 998;
    box-shadow: var(--shadow);
    transition: all 0.2s;
}
.back-to-top:hover { background: var(--yellow); color: var(--dark); }
.back-to-top.show { display: flex; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert-solar {
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: none;
}
.alert-solar.show { display: block; }
.alert-success-solar { background: #D1FAE5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-danger-solar  { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVBAR MOBILE
   ============================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius);
    transition: 0.2s;
}
.mobile-menu a:hover { background: var(--yellow-light); color: var(--yellow-dark); }
.mobile-menu .btn-solar { margin-top: 0.75rem; width: 100%; justify-content: center; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .navbar-menu { display: none; }
    .navbar-phone { display: none; }
    .navbar-toggle { display: block; }
    .hero { padding: 4rem 0 3rem; min-height: auto; }
    .hero-form-card { margin-top: 2rem; }
    .process-step::after { display: none; }
    .section-pad { padding: 60px 0; }
    .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 1.25rem; }
    .hero-stat .num { font-size: 1.4rem; }
    .form-row { grid-template-columns: 1fr; }
    .whatsapp-float { bottom: 20px; right: 20px; }
    .back-to-top { bottom: 80px; right: 20px; }
    .section-pad { padding: 50px 0; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 5;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: .2s;
    padding: 0;
}
.slider-dot.active { background: var(--yellow); width: 22px; border-radius: 4px; }
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
}
.slider-arrow:hover { background: var(--yellow); color: var(--dark); }
.slider-prev { left: .75rem; }
.slider-next { right: .75rem; }

/* ============================================================

/* ============================================================
   REFER & EARN SECTION
   ============================================================ */
.refer-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%) !important;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.refer-section::before {
    content:'';
    position:absolute;
    top:-30%;right:-10%;
    width:500px;height:500px;
    background:radial-gradient(circle,rgba(245,197,24,.07) 0%,transparent 65%);
    pointer-events:none;
}
.refer-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.refer-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.refer-amount {
    display: inline-flex;
    align-items: baseline;
    gap: .5rem;
    background: rgba(245,197,24,.12);
    border: 1.5px solid rgba(245,197,24,.35);
    border-radius: 50px;
    padding: .55rem 1.5rem;
    margin-bottom: 1.25rem;
}
.amount-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F5C518;
    line-height: 1;
}
.amount-label { font-size: .85rem; color: rgba(255,255,255,.6); }
.refer-sub {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 460px;
}

/* Steps row */
.refer-steps {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}
.refer-step {
    text-align: center;
    flex: 1;
    min-width: 70px;
}
.refer-step-num {
    width: 26px; height: 26px;
    background: #F5C518;
    color: #111827;
    border-radius: 50%;
    font-weight: 800;
    font-size: .78rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto .4rem;
}
.refer-step-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #F5C518;
    font-size: 1.1rem;
    margin: 0 auto .5rem;
}
.refer-step-text {
    font-size: .72rem;
    color: rgba(255,255,255,.65);
    line-height: 1.4;
}
.refer-step-arrow {
    color: rgba(245,197,24,.4);
    font-size: .9rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

/* Right card */
.refer-illustration {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(8px);
}
.refer-badge-big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #F5C518;
    color: #111827;
    border-radius: 18px;
    padding: 1.25rem 2.5rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 32px rgba(245,197,24,.35);
}
.refer-badge-big i { font-size: 1.6rem; margin-bottom: .3rem; }
.refer-badge-big span {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.refer-badge-big small {
    font-size: .75rem;
    font-weight: 600;
    opacity: .65;
    margin-top: .25rem;
}
.refer-circles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.rc {
    width: 72px; height: 72px;
    background: rgba(255,255,255,.08);
    border: 2px solid rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: white;
    gap: .2rem;
}
.rc i { font-size: 1.3rem; color: #F5C518; }
.rc span { font-size: .7rem; font-weight: 600; }
.rc-arrow { color: #F5C518; font-size: 1.3rem; }
.refer-perks { text-align: left; }
.refer-perk {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.72);
    font-size: .85rem;
    margin-bottom: .55rem;
}
.refer-perk i { color: #10B981; font-size: .9rem; flex-shrink: 0; }

/* Refer Modal */
.refer-modal {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.refer-modal.open { display: flex !important; }
.refer-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.8);
    backdrop-filter: blur(5px);
}
.refer-modal-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 540px;
    position: relative;
    z-index: 1;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity:0; transform:scale(.95) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }
.refer-modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    background: #F3F4F6;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: .2s;
    line-height: 1;
    color: #374151;
}
.refer-modal-close:hover { background: #F5C518; color: #111827; }
.refer-modal-head { text-align: center; margin-bottom: 1.5rem; }
.refer-modal-icon {
    width: 58px; height: 58px;
    background: #F5C518;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #111827;
    margin: 0 auto .85rem;
}
.refer-modal-head h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: .25rem;
}
.refer-modal-head p { font-size: .88rem; color: #6B7280; }
.refer-divider {
    border-radius: 10px;
    padding: .65rem 1rem;
    margin-bottom: 1rem;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.refer-divider.you { background: #FFF8DC; color: #92400E; }
.refer-divider.friend { background: #D1FAE5; color: #065F46; }

/* ============================================================
   OFFICES GRID
   ============================================================ */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.office-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all .3s;
}
.office-card:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(245,197,24,.4);
    transform: translateY(-3px);
}
.office-city-badge {
    display: inline-block;
    background: #F5C518;
    color: #111827;
    font-size: .7rem;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .6rem;
}
.office-label {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    margin-bottom: .75rem;
    font-weight: 500;
}
.office-address {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: rgba(255,255,255,.82);
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: .75rem;
}
.office-address i { color: #F5C518; margin-top: 2px; flex-shrink: 0; }
.office-contact {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    margin-bottom: .4rem;
    transition: .2s;
    text-decoration: none;
}
.office-contact:hover { color: #F5C518; }
.office-contact i { color: #F5C518; width: 14px; flex-shrink: 0; font-size: .8rem; }
.office-timing {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    margin-top: .6rem;
    margin-bottom: 1rem;
    padding-top: .6rem;
    border-top: 1px solid rgba(255,255,255,.08);
}
.office-timing i { color: #F5C518; font-size: .78rem; }
.office-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.office-wa {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #25D366;
    color: white !important;
    padding: .4rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: .2s;
}
.office-wa:hover { background: #1da851; transform:translateY(-1px); }
.office-map {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255,255,255,.1);
    color: white !important;
    padding: .4rem .9rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: .2s;
}
.office-map:hover { background: rgba(255,255,255,.18); }

/* ============================================================
   RESPONSIVE — REFER & OFFICES
   ============================================================ */
@media (max-width: 991px) {
    .refer-card { grid-template-columns: 1fr; gap: 2.5rem; }
    .refer-right { order: -1; }
    .refer-steps { flex-wrap: wrap; justify-content: center; }
    .refer-step-arrow { display: none; }
}
@media (max-width: 576px) {
    .refer-modal-box { padding: 1.5rem 1.25rem; }
    .offices-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CAREER SECTION
   ============================================================ */
.career-section { background: var(--gray-light); }

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.job-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.job-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.job-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}
.job-dept {
    font-size: .72rem;
    font-weight: 700;
    color: var(--yellow-dark);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .3rem;
}
.job-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}
.job-type-badge {
    background: var(--yellow-light);
    color: var(--yellow-dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    flex-shrink: 0;
}
.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1rem;
}
.job-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    color: var(--gray);
    background: var(--gray-light);
    padding: .25rem .7rem;
    border-radius: 50px;
}
.job-meta span i { color: var(--yellow-dark); font-size: .7rem; }
.job-desc {
    font-size: .85rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}
.job-reqs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .5rem;
}
.job-req-tag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .73rem;
    color: #065F46;
    background: #D1FAE5;
    padding: 3px 9px;
    border-radius: 50px;
    font-weight: 500;
}
.job-req-tag i { font-size: .65rem; }

/* Empty state */
.career-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}
.career-empty i {
    font-size: 3rem;
    color: var(--yellow);
    opacity: .5;
    margin-bottom: 1rem;
    display: block;
}
.career-empty h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: .5rem;
}
.career-empty p {
    color: var(--gray);
    font-size: .9rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 576px) {
    .jobs-grid { grid-template-columns: 1fr; }
    .job-card-top { flex-direction: column; gap: .5rem; }
}
