/* ============================================
   Smart World Tech LLC - Premium Stylesheet
   ============================================ */

:root {
    --navy: #0B1F3A;
    --navy-light: #122a4d;
    --navy-dark: #071525;
    --tech-blue: #1565C0;
    --tech-blue-light: #1e88e5;
    --tech-blue-dark: #0d47a1;
    --gold: #D4AF37;
    --gold-light: #e6c555;
    --gold-dark: #b8962e;
    --white: #FFFFFF;
    --anthracite: #2D3748;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #a0aec0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.08);
    --shadow-md: 0 8px 30px rgba(11, 31, 58, 0.12);
    --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.15);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--anthracite);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
}

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

/* ---- Top Bar ---- */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar a {
    color: rgba(255,255,255,0.8);
    margin-right: 20px;
}

.top-bar a:hover { color: var(--gold); }

.top-bar a i { margin-right: 6px; color: var(--gold); }

.top-bar-social a { margin-right: 12px; font-size: 1rem; }

/* ---- Navbar ---- */
.navbar {
    background: var(--navy) !important;
    padding: 12px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(11, 31, 58, 0.97) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.navbar-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.18);
    min-height: var(--site-logo-wrap-min, 76px);
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--navy);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: var(--white);
}

.brand-text strong { font-size: 1.15rem; font-family: var(--font-heading); }
.brand-text small { font-size: 0.7rem; opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; }

.site-logo-img {
    height: 48px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.navbar .site-logo-img {
    height: var(--site-logo-height, 70px);
    max-width: var(--site-logo-max-width, 360px);
}

@media (max-width: 991.98px) {
    .navbar-logo-wrap {
        padding: 10px 14px;
        min-height: calc(var(--site-logo-wrap-min, 76px) - 14px);
    }

    .navbar .site-logo-img {
        height: var(--site-logo-height-mobile, 52px);
        max-width: calc(var(--site-logo-max-width, 360px) * 0.72);
    }
}
.site-logo-footer {
    height: 56px;
    max-width: 240px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after { width: 60%; }

.nav-link:hover,
.nav-link.active { color: var(--gold) !important; }

.btn-cta-nav {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    color: var(--navy) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
}

.btn-cta-nav::after { display: none !important; }
.btn-cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--navy) !important;
}

/* ---- Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.btn-tech {
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-blue-light));
    color: var(--white);
    border: none;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
}

.btn-tech:hover {
    background: linear-gradient(135deg, var(--tech-blue-light), var(--tech-blue));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(21, 101, 192, 0.35);
}

/* ---- Hero Section ---- */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(21, 101, 192, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(21, 101, 192, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(21, 101, 192, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 101, 192, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card-stack {
    position: relative;
    height: 400px;
}

.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: var(--white);
    animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card:nth-child(1) { top: 0; right: 0; width: 280px; animation-delay: 0s; }
.hero-float-card:nth-child(2) { top: 120px; left: 0; width: 240px; animation-delay: 2s; }
.hero-float-card:nth-child(3) { bottom: 0; right: 40px; width: 260px; animation-delay: 4s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-float-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.hero-float-card h4 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.hero-float-card p { font-size: 0.8rem; opacity: 0.7; margin: 0; }

/* ---- Section Styles ---- */
.section-padding { padding: 100px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    color: var(--tech-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header h2 .gold { color: var(--gold); }

.section-header p {
    color: var(--gray-400);
    font-size: 1.05rem;
}

.bg-light-section { background: var(--gray-100); }
.bg-navy-section { background: var(--navy); color: var(--white); }
.bg-navy-section h2, .bg-navy-section h3 { color: var(--white); }

/* ---- Service Cards ---- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--tech-blue), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(21, 101, 192, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--tech-blue);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--tech-blue), var(--tech-blue-light));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h4 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-400); font-size: 0.9rem; margin-bottom: 16px; }

.service-card .card-link {
    color: var(--tech-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .card-link:hover { color: var(--gold); }
.service-card .card-link i { transition: var(--transition); }
.service-card:hover .card-link i { transform: translateX(5px); }

/* ---- Solution Cards ---- */
.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.solution-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--tech-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.solution-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.solution-card-body { padding: 28px; }
.solution-card-body h4 { margin-bottom: 12px; }
.solution-card-body p { color: var(--gray-400); font-size: 0.9rem; }

/* ---- Why Choose Us ---- */
.why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--navy);
}

.why-card h5 { margin-bottom: 10px; }
.why-card p { color: var(--gray-400); font-size: 0.9rem; }

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--anthracite);
    border: none;
    padding: 0;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--tech-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author h6 { margin: 0; font-size: 0.95rem; }
.testimonial-author small { color: var(--gray-400); }

/* ---- Industry Tags ---- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.industry-item:hover {
    border-color: var(--tech-blue);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.industry-item i {
    font-size: 1.5rem;
    color: var(--tech-blue);
    width: 48px;
    height: 48px;
    background: rgba(21, 101, 192, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-item h5 { margin: 0; font-size: 0.95rem; }
.industry-item p { margin: 0; font-size: 0.8rem; color: var(--gray-400); }

/* ---- Portfolio ---- */
.portfolio-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

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

.portfolio-img {
    height: 240px;
    background: linear-gradient(135deg, var(--navy-light), var(--tech-blue));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-img i { font-size: 3rem; color: rgba(255,255,255,0.3); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 58, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-body { padding: 24px; }
.portfolio-category {
    display: inline-block;
    background: rgba(21, 101, 192, 0.1);
    color: var(--tech-blue);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ---- Blog Cards ---- */
.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--tech-blue-dark));
    position: relative;
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-body { padding: 24px; }
.blog-body h4 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-body p { color: var(--gray-400); font-size: 0.9rem; }
.blog-meta { font-size: 0.8rem; color: var(--gray-400); margin-top: 16px; }

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy), var(--navy-light));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(21, 101, 192, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.page-banner p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
}

.breadcrumb-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-custom a { color: var(--gold); }
.breadcrumb-custom span { color: rgba(255,255,255,0.5); }

/* ---- About Page ---- */
.value-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.value-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 16px;
    font-family: var(--font-heading);
}

/* ---- Contact ---- */
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

a.contact-info-link {
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius);
    padding: 10px 12px;
    margin-left: -12px;
    margin-right: -12px;
    transition: var(--transition);
    cursor: pointer;
}

a.contact-info-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

a.contact-info-link:hover strong {
    color: var(--gold);
}

a.contact-info-link p {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

a.contact-info-link:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 16px;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--tech-blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.custom-file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 14px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    background: var(--white);
}

.custom-file-input {
    position: absolute;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    z-index: -1;
}

.custom-file-btn {
    display: inline-block;
    padding: 8px 18px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 0;
    transition: var(--transition);
}

.custom-file-btn:hover {
    background: var(--tech-blue);
    color: var(--white);
    border-color: var(--tech-blue);
}

.custom-file-name {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ---- Careers ---- */
.career-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    height: 100%;
}

.career-card:hover {
    border-color: var(--tech-blue);
    box-shadow: var(--shadow-md);
}

.career-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 8px;
}

.career-badge.type { background: rgba(21, 101, 192, 0.1); color: var(--tech-blue); }
.career-badge.dept { background: rgba(212, 175, 55, 0.15); color: var(--gold-dark); }

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 { color: var(--white); font-size: 2rem; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.75); margin: 0; }

.cta-particles {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

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

.site-footer h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-text { color: var(--white); font-size: 1.1rem; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-promise { font-size: 0.85rem; color: var(--gold); opacity: 0.8; }

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.copyright, .tagline-footer { font-size: 0.85rem; margin: 0; }
.tagline-footer { color: var(--gold); opacity: 0.7; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* ---- Counter Animation ---- */
.counter-box {
    text-align: center;
    padding: 30px;
}

.counter-box h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.counter-box p { color: rgba(255,255,255,0.7); margin: 0; }

/* ---- Service Detail Accordion ---- */
.service-category-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-category-header i {
    font-size: 2rem;
    color: var(--gold);
}

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

.service-feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.service-feature-list li i { color: var(--tech-blue); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-section { min-height: auto; padding: 100px 0 60px; }
    .hero-visual { display: none; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .section-padding { padding: 60px 0; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; text-align: center; }
    .page-banner { padding: 100px 0 60px; }
}
