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

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sleek Light Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    /* Green Accent Scale */
    --primary: #10b981; /* Emerald Green */
    --primary-hover: #059669;
    --primary-dark: #064e3b;
    --primary-light: #ecfdf5;
    --primary-glow: rgba(16, 185, 129, 0.15);
    
    --accent: #22c55e; /* Vibrant Green */
    --accent-light: #f0fdf4;
    
    /* Neutral Shadows & Glassmorphism */
    --card-bg: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(241, 245, 249, 0.8);
    --card-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.02);
    --card-shadow-hover: 0 20px 40px -15px rgba(16, 185, 129, 0.12), 0 1px 5px rgba(15, 23, 42, 0.03);
    --navbar-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-secondary);
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary);
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 60px auto;
}

/* Glassmorphic elements */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    margin-bottom: 16px;
}

/* Header & Navigation (Slalom Style) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: var(--navbar-shadow);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-normal);
}

header.scrolled .navbar {
    height: 70px;
}

/* Brand Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 4px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 16px;
    background: var(--primary);
    left: 12px;
    top: 8px;
    border-radius: 1px;
}

/* Slalom Nav Items */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-hover);
}

/* Mega Menu Dropdowns (Slalom Style) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 780px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12), 0 0 1px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--border-color);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.mega-menu-list {
    list-style: none;
}

.mega-menu-list li {
    margin-bottom: 12px;
}

.mega-menu-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.mega-menu-link:hover {
    background-color: var(--primary-light);
}

.mega-menu-link h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mega-menu-link p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mega-menu-icon {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 2px;
}

.mega-menu-featured {
    background: linear-gradient(135deg, var(--primary-light), var(--bg-secondary));
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mega-menu-featured h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.mega-menu-featured p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Mobile Navigation Trigger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, rgba(255, 255, 255, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

.hero-content {
    max-width: 580px;
    align-self: flex-start;
    margin-top: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--primary);
    background: linear-gradient(to right, var(--primary), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Visual Art (Geometric Abstract CSS Graphic) */
.hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(6, 182, 212, 0.08) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-float 12s infinite alternate ease-in-out;
    filter: blur(10px);
}

.hero-card {
    position: relative;
    width: 320px;
    padding: 28px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -10px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    z-index: 2;
    transform: rotate(-3deg);
    transition: var(--transition-normal);
}

.hero-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-card-metric {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 8px 0;
    font-family: var(--font-heading);
}

.hero-card-metric span {
    font-size: 1rem;
    color: var(--primary-hover);
    font-weight: 600;
}

.hero-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-decor-1 {
    position: absolute;
    top: 50px;
    right: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(5deg);
    transition: var(--transition-normal);
}

.hero-decor-1:hover {
    transform: rotate(0deg) translateY(-4px);
}

.hero-decor-1-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-decor-1 p {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(16, 185, 129, 0.2);
}

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

.service-card-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
    background-color: var(--primary-light);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    gap: 4px;
}

.service-card-link svg {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    padding: 40px;
    box-shadow: 0 30px 70px -10px rgba(15, 23, 42, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--bg-secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.modal-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

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

.modal-bullets {
    margin: 20px 0;
    padding-left: 20px;
}

.modal-bullets li {
    margin-bottom: 10px;
}

/* Industries Section */
.industries {
    background-color: var(--bg-secondary);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.industry-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.industry-img {
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 4rem;
}

.industry-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.industry-info {
    padding: 24px;
}

.industry-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.industry-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Assessment Diagnostic Calculator */
.calc-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--primary-light) 100%);
    position: relative;
}

.calc-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow-hover);
    border: 1px solid var(--border-color);
}

.calc-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.calc-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.calc-progress-bar {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    z-index: 1;
    transform: translateY(-50%);
    transition: var(--transition-normal);
}

.calc-step-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
}

.calc-step-indicator.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.calc-step-indicator.completed {
    background-color: var(--accent-light);
    border-color: var(--primary);
    color: var(--primary);
}

.calc-step {
    display: none;
}

.calc-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.calc-step-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.calc-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.calc-option {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 16px;
}

.calc-option:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.calc-option.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.calc-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.calc-option.selected .calc-radio {
    border-color: var(--primary);
}

.calc-option.selected .calc-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.calc-option h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.calc-option p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.calc-nav-buttons {
    display: flex;
    justify-content: space-between;
}

/* Calculator Results */
.calc-results {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.calc-results.active {
    display: block;
}

.calc-score-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.calc-radial-score {
    width: 100px;
    height: 100px;
    background: conic-gradient(var(--primary) 0% 0%, var(--border-color) 0% 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.calc-radial-score::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
}

.calc-radial-text {
    position: relative;
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.calc-score-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.calc-score-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.calc-recommendation {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.calc-recommendation h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.calc-recommendation p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Stories Section (Case Studies) */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

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

.story-card-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.story-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.story-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.story-author {
    font-size: 0.8rem;
    font-weight: 600;
}

.story-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background-color: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

/* Insights Section (Blog) */
.insights {
    background-color: var(--bg-secondary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.insight-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

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

.insight-banner {
    height: 12px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.insight-body {
    padding: 30px;
}

.insight-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.insight-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.insight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.insight-author {
    font-size: 0.75rem;
    font-weight: 600;
}

.insight-read {
    font-size: 0.75rem;
    color: var(--primary-hover);
    font-weight: 700;
}

/* Who We Are Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(16, 185, 129, 0.1);
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Careers Section */
.careers {
    background-color: var(--bg-secondary);
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.careers-benefits h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.careers-benefits-list {
    list-style: none;
}

.careers-benefits-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.careers-benefits-list li svg {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.careers-jobs {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.job-card {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.job-card:first-child {
    padding-top: 0;
}

.job-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.job-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Contact & Scheduling Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 48px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.contact-item-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-form-panel {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px var(--primary-glow);
}

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

/* Simulated Booking Widget */
.booking-widget {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid var(--border-color);
}

.booking-widget-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.booking-day {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.booking-day.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.booking-day p {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
}

.booking-day h4 {
    font-size: 1rem;
    font-weight: 700;
}

.booking-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.booking-slot {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 4px;
    text-align: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.booking-slot.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.booking-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Success Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

/* Footer styling */
footer {
    background-color: var(--bg-tertiary);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.footer-links-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}

.footer-links-col ul li a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-newsletter h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex-grow: 1;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Animations */
@keyframes blob-float {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
        transform: translate(15px, -15px) rotate(90deg) scale(1.05);
    }
    100% {
        border-radius: 70% 30% 50% 50% / 40% 30% 70% 60%;
        transform: translate(-10px, 10px) rotate(180deg) scale(0.95);
    }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .mega-menu {
        width: 600px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 40px 30px;
        transition: right 0.4s ease;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
        display: block;
        margin-bottom: 24px;
    }
    
    .nav-link {
        height: auto;
        padding: 10px 0;
        font-size: 1.1rem;
        justify-content: space-between;
    }
    
    .nav-link::after {
        content: '+';
        font-weight: 400;
        font-size: 1.2rem;
    }
    
    .nav-item.active-submenu .nav-link::after {
        content: '-';
    }
    
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 0 0 16px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .nav-item.active-submenu .mega-menu {
        display: block;
    }
    
    .mega-menu-featured {
        display: none; /* Hide featured panel on mobile to save space */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
        align-self: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 380px;
    }
    
    .hero-visual-bg {
        width: 280px;
        height: 280px;
    }
    
    .hero-card {
        width: 260px;
        padding: 20px;
    }
    
    .hero-decor-1 {
        top: 20px;
        right: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
