/* ================================================================
   BizFind — style.css
   Pure custom CSS. No Tailwind dependency for layout/grid.
   ================================================================ */

/* ----------------------------------------------------------------
   0. RESET
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: #fff;
    color: #0B1D3A;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
    --navy:        #0B1D3A;
    --navy-dark:   #060F1E;
    --navy-mid:    #1A3560;
    --amber:       #F59E0B;
    --amber-light: #FBBF24;
    --amber-dark:  #D97706;
    --white:       #ffffff;
    --gray-50:     #F8FAFC;
    --gray-100:    #F1F5F9;
    --gray-200:    #E2E8F0;
    --gray-400:    #94A3B8;
    --gray-500:    #64748B;
    --green:       #10B981;
    --blue:        #3B82F6;
    --red:         #EF4444;
    --radius-sm:   8px;
    --radius-md:   12px;
    --radius-lg:   16px;
    --radius-xl:   20px;
    --radius-pill: 999px;
    --shadow:      0 4px 24px rgba(11,29,58,0.08);
    --shadow-lg:   0 16px 40px rgba(11,29,58,0.14);
    --shadow-amber:0 8px 24px rgba(245,158,11,0.4);
}

/* ----------------------------------------------------------------
   2. LAYOUT HELPERS
   ---------------------------------------------------------------- */
.site-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}
@media (max-width: 640px) {
    .site-container { padding: 0 16px; }
}

.section-py { padding: 80px 0; }
@media (max-width: 768px) { .section-py { padding: 56px 0; } }

/* ----------------------------------------------------------------
   3. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatBob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
@keyframes shimmer {
    from { left: -80%; }
    to   { left: 130%; }
}

.anim-1 { animation: fadeUp .7s ease .00s both; }
.anim-2 { animation: fadeUp .7s ease .15s both; }
.anim-3 { animation: fadeUp .7s ease .30s both; }
.anim-4 { animation: fadeUp .7s ease .45s both; }
.float  { animation: floatBob 4s ease-in-out infinite; }

/* ----------------------------------------------------------------
   4. SHARED COMPONENTS
   ---------------------------------------------------------------- */

/* Section label pill */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber-dark);
    background: rgba(245,158,11,.10);
    border: 1px solid rgba(245,158,11,.22);
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .875rem;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    text-decoration: none;
}
.btn-amber {
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    color: var(--navy-dark);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}
.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-amber);
}
.btn-amber::after {
    content: '';
    position: absolute;
    top: -50%; left: -80%;
    width: 50%; height: 200%;
    background: rgba(255,255,255,.22);
    transform: skewX(-20deg);
    transition: left .5s ease;
}
.btn-amber:hover::after { left: 130%; }

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255,255,255,.28);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.55);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 10px;
}
.btn-dark:hover { background: var(--navy-mid); box-shadow: var(--shadow); }

.btn-card {
    display: block;
    text-align: center;
    background: var(--gray-100);
    color: var(--navy);
    font-weight: 600;
    font-size: .8rem;
    padding: 10px 16px;
    border-radius: 9px;
    transition: all .2s ease;
}
.btn-card:hover { background: var(--navy); color: var(--white); }


/* ================================================================
   5. NAVBAR
   ================================================================ */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: var(--navy-dark);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: box-shadow .3s ease;
}
#main-nav.scrolled {
    box-shadow: 0 4px 28px rgba(6,15,30,.5);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 36px; height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 15px;
}
.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.logo-accent { color: var(--amber); }

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-weight: 500;
    color: #CBD5E1;
    transition: all .2s ease;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.09); }

/* Post Ad nav button */
.btn-post {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: .875rem;
    font-weight: 700;
    color: var(--navy-dark);
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    position: relative; overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}
.btn-post:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-amber);
}
.btn-post::after {
    content: '';
    position: absolute; top: -50%; left: -80%;
    width: 50%; height: 200%;
    background: rgba(255,255,255,.2);
    transform: skewX(-20deg);
    transition: left .5s ease;
}
.btn-post:hover::after { left: 130%; }

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #CBD5E1;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.09); color: var(--white); }

/* Mobile menu */
.mobile-menu {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open { max-height: 320px; }
.mobile-menu-inner {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: #CBD5E1;
    transition: all .2s;
}
.mobile-link:hover { color: var(--white); background: rgba(255,255,255,.09); }
.mobile-post-btn {
    margin-top: 6px;
    justify-content: center;
    margin-left: 0;
}

@media (max-width: 767px) {
    .nav-links  { display: none; }
    .hamburger  { display: flex; }
}


/* ================================================================
   6. HERO SECTION
   ================================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Radial glows */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 75% 50%, rgba(245,158,11,.13), transparent),
        radial-gradient(ellipse 45% 55% at 20% 75%, rgba(59,130,246,.09), transparent);
    pointer-events: none;
}
/* Dot-grid */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 80px 0;
    text-align: center;
}
.hero-eyebrow {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -.025em;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--amber); }
.hero-sub {
    font-size: 1.05rem;
    color: #94A3B8;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    line-height: 1.65;
}

/* Decorative orbs */
.orb {
    position: absolute; border-radius: 50%; opacity: .10; pointer-events: none;
}
.orb-1 {
    width: 100px; height: 100px; top: 80px; left: 30px;
    background: radial-gradient(circle, var(--amber), transparent);
    animation: floatBob 4s ease-in-out infinite;
}
.orb-2 {
    width: 70px; height: 70px; bottom: 80px; right: 50px;
    background: radial-gradient(circle, var(--blue), transparent);
    animation: floatBob 4s ease-in-out 1.5s infinite;
}

/* ---- Search Box ---- */
.search-box {
    max-width: 740px;
    margin: 0 auto;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius-xl);
    padding: 22px;
}
.search-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}
@media (max-width: 640px) {
    .search-row { grid-template-columns: 1fr; }
}
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-label {
    font-size: .72rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    padding-left: 4px;
}
.search-label i { color: var(--amber); margin-right: 4px; }
.search-input {
    width: 100%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: .875rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s, background .2s;
    -webkit-appearance: none;
}
/* Sabhi inputs aur textarea ke placeholder ka color fix */
.search-input::placeholder {
    color: #94a3b8 !important; /* Halka grey color (Slate 400) */
    opacity: 1; /* Browser default transparency hatane ke liye */
    font-size: 0.9rem;
}

/* Internet Explorer ke liye */
.search-input:-ms-input-placeholder {
    color: #94a3b8 !important;
}

/* Microsoft Edge ke liye */
.search-input::-ms-input-placeholder {
    color: #94a3b8 !important;
}
.search-input:focus {
    border-color: var(--amber);
    background: rgba(255,255,255,.12);
}
.search-input option { background: var(--navy); color: var(--white); }
.search-btn-wrap { padding-bottom: 0; }

/* Popular tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: .75rem;
}
.hero-tags span { color: #64748B; }
.tag {
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255,255,255,.14);
    color: #CBD5E1;
    font-size: .75rem;
    transition: all .2s;
}
.tag:hover { border-color: var(--amber); color: var(--amber-light); }

/* Stats bar */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    overflow: hidden;
    margin: 48px auto 0;
    max-width: 600px;
}
.stats-item {
    flex: 1;
    min-width: 120px;
    padding: 16px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.09);
}
.stats-item:last-child { border-right: none; }
.stats-val {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}
.stats-lbl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: .7rem;
    color: #94A3B8;
    margin-top: 2px;
}
.stats-lbl i { color: var(--amber); font-size: 10px; }


/* ================================================================
   7. CATEGORIES SECTION
   ================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.section-header p { color: var(--gray-500); font-size: .95rem; max-width: 500px; margin: 0 auto; }
.section-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.section-split h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    margin-top: 6px;
}
.section-split p { color: var(--gray-500); font-size: .9rem; margin-top: 4px; }

/* Category Grid — 4 cols desktop, 3 tablet, 2 mobile */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 22px 20px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--amber);
}
.cat-icon {
    width: 54px; height: 54px;
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 21px;
    transition: transform .25s ease;
}
.cat-card:hover .cat-icon { transform: scale(1.12) rotate(-5deg); }
.cat-name {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: .9375rem;
    color: var(--navy);
}
.cat-count { font-size: .72rem; color: var(--gray-400); margin-top: 2px; }
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
}
.view-all-wrap { text-align: center; margin-top: 40px; }
.btn-bordered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 10px;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    font-size: .875rem;
    background: transparent;
    transition: all .2s ease;
}
.btn-bordered:hover { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }


/* ================================================================
   8. LISTINGS SECTION
   ================================================================ */

/* Listing Grid — 4 cols desktop, 2 tablet, 1 mobile */
.listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .listing-grid { grid-template-columns: 1fr; } }

.listing-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .25s ease, box-shadow .25s ease;
}
.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-topbar {
    height: 6px;
    background: linear-gradient(90deg, var(--navy), var(--navy-mid));
    flex-shrink: 0;
}
.card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}
.badge-verified {
    background: rgba(16,185,129,.10);
    color: #059669;
    border: 1px solid rgba(16,185,129,.22);
}
.badge-featured {
    background: rgba(245,158,11,.12);
    color: #B45309;
    border: 1px solid rgba(245,158,11,.28);
}
.card-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 4px;
}
.card-category {
    font-size: .75rem;
    color: var(--gray-400);
    margin-bottom: 12px;
}
.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}
.stars { color: var(--amber); font-size: 12px; }
.rating-num { font-weight: 700; font-size: .875rem; color: var(--navy); }
.rating-count { font-size: .72rem; color: var(--gray-400); }
.card-meta {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
    font-size: .85rem;
    color: var(--gray-500);
}
.meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.meta-icon {
    width: 16px; text-align: center;
    font-size: 11px; flex-shrink: 0;
}
.meta-row a { color: var(--gray-500); transition: color .15s; font-weight: 500; }
.meta-row a:hover { color: var(--amber-dark); }
.card-spacer { flex-grow: 1; }


/* ================================================================
   9. HOW IT WORKS
   ================================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
@media (max-width: 767px) { .steps-grid { grid-template-columns: 1fr; } }

/* Dashed connector line (desktop only) */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(33.33% + 8px);
    right: calc(33.33% + 8px);
    height: 1px;
    background: repeating-linear-gradient(
        90deg, var(--amber) 0, var(--amber) 8px, transparent 8px, transparent 16px
    );
    opacity: .45;
    pointer-events: none;
}
@media (max-width: 767px) { .steps-grid::before { display: none; } }

.step-card {
    position: relative;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    transition: box-shadow .25s ease;
}
.step-card:hover { box-shadow: var(--shadow-lg); }
.step-bg-num {
    font-family: 'Syne', sans-serif;
    font-size: 4rem; font-weight: 800; line-height: 1;
    color: rgba(11,29,58,.055);
    position: absolute; top: 16px; right: 22px;
    user-select: none; pointer-events: none;
}
.step-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
}
.step-num-label {
    font-size: .7rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 8px; display: block;
}
.step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700; font-size: 1.15rem;
    color: var(--navy); margin-bottom: 12px;
}
.step-desc { font-size: .875rem; line-height: 1.7; color: var(--gray-500); }


/* ================================================================
   10. CTA BANNER
   ================================================================ */
.cta-wrap { padding: 0 24px 80px; max-width: 1280px; margin: 0 auto; }
.cta-banner {
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -40%; right: -8%;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(245,158,11,.18), transparent 65%);
    pointer-events: none;
}
@media (max-width: 640px) {
    .cta-banner { padding: 40px 24px; flex-direction: column; text-align: center; }
}
.cta-text { position: relative; z-index: 1; }
.cta-eyebrow {
    font-size: .7rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px;
}
.cta-heading {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 1.875rem);
    font-weight: 700; color: var(--white); line-height: 1.3;
}
.cta-heading span { color: var(--amber-light); }
.cta-sub { font-size: .875rem; color: #94A3B8; margin-top: 10px; max-width: 400px; }
.cta-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    position: relative; z-index: 1; flex-shrink: 0;
}
@media (max-width: 640px) { .cta-actions { justify-content: center; } }


/* ================================================================
   11. FOOTER
   ================================================================ */
footer {
    background: var(--navy-dark);
    color: #94A3B8;
}
.footer-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber));
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 64px 0 40px;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-col-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600; font-size: .9375rem;
    color: var(--white); margin-bottom: 22px;
    display: flex; align-items: center; gap: 9px;
}
.footer-col-title::before {
    content: '';
    display: inline-block;
    width: 16px; height: 2px;
    border-radius: 2px;
    background: var(--amber);
    flex-shrink: 0;
}
.footer-about-text {
    font-size: .875rem; line-height: 1.7; color: #94A3B8; margin-bottom: 20px;
}
.social-icons { display: flex; gap: 8px; }
.social-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    border: 1px solid rgba(255,255,255,.10);
    color: #94A3B8;
    transition: all .2s;
}
.social-icon:hover {
    color: var(--white);
    border-color: var(--amber);
    background: rgba(245,158,11,.12);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
    display: flex; align-items: center; gap: 8px;
    font-size: .875rem; color: #94A3B8;
    transition: color .2s;
}
.footer-link i { font-size: 10px; width: 14px; color: #475569; transition: color .2s; }
.footer-link:hover { color: var(--amber); }
.footer-link:hover i { color: var(--amber); }

.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
    width: 28px; height: 28px;
    border-radius: 7px;
    background: rgba(245,158,11,.10);
    color: var(--amber);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.contact-text { font-size: .875rem; line-height: 1.55; }
.contact-text a { color: #94A3B8; transition: color .2s; }
.contact-text a:hover { color: var(--amber); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .75rem; color: #475569;
}
.footer-bottom span { color: #94A3B8; font-weight: 500; }