/* ==========================================
   SHLOVATE - Main Stylesheet
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --secondary: #4F46E5;
    --secondary-hover: #4338CA;
    --accent: #EA580C;
    --accent-hover: #DC2626;
    --background: #F8FAFC;
    --background-white: #FFFFFF;
    --background-subtle: #F1F5F9;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --text-white: #FFFFFF;
    --border: #E2E8F0;
    --border-hover: #CBD5E1;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Selection */
::selection {
    background-color: var(--secondary);
    color: white;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        height: 48px;
    }
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    font-family: 'Manrope', sans-serif;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: var(--text-primary);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-secondary);
    background: none;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.dropdown-toggle:hover {
    color: var(--secondary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
}

.dropdown-menu a:hover {
    background: var(--background-subtle);
    color: var(--secondary);
}

/* Nav Buttons */
.nav-buttons {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .nav-buttons {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-menu a:hover {
    color: var(--secondary);
}

.mobile-menu-services {
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-menu-services a {
    font-size: 0.95rem;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: white;
}

.btn-accent {
    background: var(--accent);
    color: white;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 6rem 0 8rem;
    }
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    color: #818CF8;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
}

.hero h1 span {
    background: linear-gradient(135deg, #818CF8, #C7D2FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-stat {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: white;
    color: var(--text-primary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
}

.hero-stat-label {
    color: var(--text-secondary);
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

.stat-item p {
    color: var(--text-muted);
}

/* ==========================================
   SECTIONS - GENERAL
   ========================================== */

.section {
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 7rem 0;
    }
}

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

.section-badge {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-badge.orange {
    color: var(--accent);
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.bg-subtle {
    background: var(--background-subtle);
}

.bg-white {
    background: white;
}

.bg-dark {
    background: var(--primary);
    color: white;
}

/* ==========================================
   SERVICES CARDS
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), #818CF8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #C7D2FE;
}

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

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card-icon.indigo {
    background: #EEF2FF;
    color: var(--secondary);
}

.service-card-icon.orange {
    background: #FFF7ED;
    color: var(--accent);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-feature svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.service-feature svg.indigo {
    color: var(--secondary);
}

.service-feature svg.orange {
    color: var(--accent);
}

/* ==========================================
   FEATURE CARDS
   ========================================== */

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #C7D2FE;
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    background: #EEF2FF;
    color: var(--secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--secondary);
    color: white;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .why-content h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .why-content h2 {
        font-size: 3rem;
    }
}

.why-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.why-feature {
    background: var(--background-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.why-feature:hover {
    background: white;
    box-shadow: var(--shadow-lg);
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    color: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
}

.why-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================
   TRUSTED BY
   ========================================== */

.trusted {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted p {
    text-align: center;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .trusted-logos {
        gap: 4rem;
    }
}

.trusted-logos span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: 'Playfair Display', Georgia, serif;
}

@media (min-width: 768px) {
    .trusted-logos span {
        font-size: 1.5rem;
    }
}

/* Trusted logos as images */
.trusted-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.trusted-logo:hover {
    opacity: 0.8;
}

@media (min-width: 768px) {
    .trusted-logo {
        height: 50px;
        max-width: 180px;
    }
}

/* Text-based logo fallback */
.trusted-logo-text {
    text-decoration: none;
}

.trusted-logo-text span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    font-family: 'Manrope', sans-serif;
    transition: color 0.3s ease;
}

.trusted-logo-text:hover span {
    color: var(--secondary);
}

@media (min-width: 768px) {
    .trusted-logo-text span {
        font-size: 1.5rem;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta {
        padding: 7rem 0;
    }
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta h2 {
        font-size: 3rem;
    }
}

.cta p {
    font-size: 1.125rem;
    color: #CBD5E1;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--primary);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1E293B;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column a {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #94A3B8;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #94A3B8;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #1E293B;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

/* ==========================================
   PROCESS STEPS
   ========================================== */

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

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

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

.process-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
}

.process-step-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    color: #EEF2FF;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: #EEF2FF;
    color: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-text span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-info-text a,
.contact-info-text p {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-info-text a:hover {
    color: var(--secondary);
}

.contact-social-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-social-section p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-social {
    display: flex;
    gap: 0.75rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--background-subtle);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #EEF2FF;
    color: var(--secondary);
}

/* Forms */
.contact-forms {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.form-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    background: var(--background-subtle);
    padding: 0.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.form-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-tab.active {
    background: white;
    box-shadow: var(--shadow-sm);
}

.form-tab.active.employer {
    color: var(--secondary);
}

.form-tab.active.jobseeker {
    color: var(--accent);
}

.form-tab svg {
    width: 18px;
    height: 18px;
}

.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-input-wrapper {
    position: relative;
}

.form-input-wrapper svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.form-input-wrapper.textarea svg {
    top: 16px;
    transform: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-left: 44px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    display: none;
}

.alert.success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert.show {
    display: block;
}

/* ==========================================
   PAGE HERO (Inner Pages)
   ========================================== */

.page-hero {
    background: var(--primary);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 6rem 0;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    max-width: 800px;
}

.page-hero.center .page-hero-content {
    text-align: center;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    color: #A5B4FC;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.page-hero-badge.orange {
    background: rgba(234, 88, 12, 0.2);
    color: #FDBA74;
}

.page-hero-badge svg {
    width: 16px;
    height: 16px;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }
}

.page-hero p {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Split Hero */
.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .page-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .page-hero-image {
        display: block;
    }
}

.page-hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   ABOUT PAGE
   ========================================== */

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

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

.about-mission-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-mission-content .section-badge {
    text-align: left;
}

.about-mission-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .about-mission-content h2 {
        font-size: 2.5rem;
    }
}

.about-mission-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.about-stat h3 {
    font-size: 2rem;
    color: var(--secondary);
}

.about-stat p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

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

.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #C7D2FE;
}

.value-card-icon {
    width: 56px;
    height: 56px;
    background: #EEF2FF;
    color: var(--secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border);
    display: none;
}

@media (min-width: 768px) {
    .timeline::before {
        display: block;
    }
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .timeline-item {
        flex-direction: row;
        gap: 2rem;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        text-align: right;
    }
}

.timeline-content {
    flex: 1;
    background: var(--background-subtle);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.timeline-content .year {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Manrope', sans-serif;
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin: 0.5rem 0;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid #EEF2FF;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-spacer {
    flex: 1;
    display: none;
}

@media (min-width: 768px) {
    .timeline-spacer {
        display: block;
    }
}

/* ==========================================
   COMPARISON TABLE
   ========================================== */

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
}

.comparison-col {
    padding: 2rem;
}

.comparison-col:first-child {
    border-right: 1px solid var(--border);
}

.comparison-col:last-child {
    background: #FFF7ED;
}

.comparison-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.comparison-col:last-child h3 {
    color: var(--accent);
}

.comparison-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-col li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.comparison-col:last-child li {
    color: var(--text-primary);
}

.comparison-col li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-col:first-child li svg {
    color: var(--text-muted);
}

.comparison-col:last-child li svg {
    color: var(--accent);
}

/* ==========================================
   UTILITIES
   ========================================== */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

@media (min-width: 1024px) {
    .lg-show {
        display: block;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
