/* ==========================================
   Elite Group — Redesigned Stylesheet
   Tech-forward, sleek, modern aesthetic
   ========================================== */

/* Variables */
:root {
    --brand-primary: #00e5c0;
    --brand-secondary: #00b89a;
    --brand-accent: #5effd4;
    --brand-dark: #0a0e17;
    --brand-darker: #05070c;
    --brand-surface: #0c1018;
    --brand-surface-elevated: #141922;
    --brand-border: rgba(255, 255, 255, 0.1);
    --brand-text: #f0f4f8;
    --brand-text-muted: #94a3b8;
    --brand-text-subtle: #64748b;
    --container-max: 1200px;
    --container-padding: clamp(1.25rem, 4vw, 2.5rem);
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --glow-primary: 0 0 50px rgba(0, 229, 192, 0.2);
    --glow-strong: 0 0 80px rgba(0, 229, 192, 0.35);
    --brand-on-primary: #ffffff;
}

:root[data-theme="light"] {
    --brand-dark: #0f172a;
    --brand-darker: #f8fafc;
    --brand-surface: #ffffff;
    --brand-surface-elevated: #ffffff;
    --brand-border: #e2e8f0;
    --brand-text: #0f172a;
    --brand-text-muted: #334155;
    --brand-text-subtle: #475569;
    --brand-primary: #0d9488;
    --brand-secondary: #0f766e;
    --brand-accent: #14b8a6;
    --brand-on-primary: #ffffff;
    --glow-primary: 0 4px 14px rgba(13, 148, 136, 0.25);
    --glow-strong: 0 8px 25px rgba(13, 148, 136, 0.35);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--brand-text);
    background: var(--brand-darker);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 9999;
    transition: top var(--transition-fast);
}
.skip-link:focus {
    top: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--brand-text-muted);
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--brand-accent); }

ul { list-style: none; }

/* Layout */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: clamp(5rem, 12vw, 8rem) 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Syne', sans-serif;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--brand-on-primary);
    box-shadow: 0 4px 20px rgba(0, 229, 192, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 229, 192, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 2px solid var(--brand-primary);
}
.btn-outline:hover {
    background: rgba(0, 229, 192, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 229, 192, 0.2);
}

.btn-cta {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--brand-on-primary);
    box-shadow: 0 4px 20px rgba(0, 229, 192, 0.35);
}
.btn-cta:hover {
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-primary));
    color: var(--brand-on-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 229, 192, 0.45);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 7, 12, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--brand-border);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(5, 7, 12, 0.96);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-text);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}
.nav-logo img { height: 28px; width: auto; }
.nav-logo:hover { color: var(--brand-text); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--brand-text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--brand-primary);
}
.nav-link.active { font-weight: 600; }

.theme-switcher-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    color: var(--brand-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.theme-switcher-btn:hover {
    color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 24px;
}

.mobile-menu-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-text);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .mobile-menu-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, var(--brand-darker) 100%),
        radial-gradient(ellipse 100% 60% at 50% -10%, rgba(0, 229, 192, 0.2), transparent 50%),
        radial-gradient(ellipse 70% 50% at 100% 30%, rgba(0, 229, 192, 0.12), transparent),
        radial-gradient(ellipse 50% 40% at 0% 70%, rgba(0, 229, 192, 0.1), transparent);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 192, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 192, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 229, 192, 0.1);
    border: 1px solid rgba(0, 229, 192, 0.3);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--brand-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 600;
    line-height: 1.02;
    margin-bottom: 1.75rem;
    color: var(--brand-text);
    text-shadow: 0 0 60px rgba(0, 229, 192, 0.15);
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 50%, var(--brand-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--brand-text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trusted */
.trusted-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--brand-border);
}

.trusted-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-text-subtle);
    margin-bottom: 1.5rem;
}

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

.trusted-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--brand-border);
    transition: all var(--transition-fast);
}
.trusted-item:hover {
    border-color: rgba(0, 229, 192, 0.3);
    transform: translateY(-2px);
}

.trusted-item span {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--brand-text-muted);
}

.trusted-icon {
    font-size: 1.25rem;
    color: var(--brand-primary);
}

/* Section headings */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
}

.section-header h2 {
    margin-bottom: 1.25rem;
    color: var(--brand-text);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 1px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--brand-text-muted);
    line-height: 1.7;
}

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

.service-card {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover {
    border-color: rgba(0, 229, 192, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(0, 229, 192, 0.08);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--brand-on-primary);
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(0, 229, 192, 0.25);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--brand-text);
}

.service-description {
    font-size: 0.9375rem;
    color: var(--brand-text-muted);
    line-height: 1.65;
}

.service-card ul {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--brand-border);
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--brand-text-muted);
    margin-bottom: 0.5rem;
}

.service-card li i {
    color: var(--brand-primary);
    margin-top: 0.2rem;
}

/* About section */
.about-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.about-section > * {
    min-width: 0;
}

.about-content h2 {
    margin-bottom: 1.25rem;
    color: var(--brand-text);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--brand-text);
    font-weight: 500;
}


.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(0, 229, 192, 0.12);
    border: 1px solid rgba(0, 229, 192, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--brand-text);
}

.about-feature p {
    font-size: 0.9375rem;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    border-color: rgba(0, 229, 192, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
    text-shadow: 0 0 30px rgba(0, 229, 192, 0.3);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-text-muted);
}

.about-visual {
    position: relative;
    overflow: hidden;
}

.about-stat-single {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    margin-top: 1.5rem;
    background: rgba(0, 229, 192, 0.08);
    border: 2px solid rgba(0, 229, 192, 0.25);
    border-radius: var(--radius-md);
}

.about-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--brand-primary);
}

.about-stat-label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--brand-text-muted);
}

.about-expertise-card {
    background: var(--brand-surface);
    border: 2px solid var(--brand-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.about-expertise-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--brand-text);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-expertise-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    min-width: 0;
    background: rgba(0, 229, 192, 0.04);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.about-expertise-item:hover {
    border-color: rgba(0, 229, 192, 0.4);
    background: rgba(0, 229, 192, 0.06);
    transform: translateY(-2px);
}

.about-expertise-item i {
    font-size: 1.5rem;
    color: var(--brand-primary);
    flex-shrink: 0;
}

.about-expertise-item span {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--brand-text);
    word-break: break-word;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.mission-vision-card {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all var(--transition-normal);
}

.mission-vision-card:hover {
    border-color: rgba(0, 229, 192, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.mission-vision-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: rgba(0, 229, 192, 0.12);
    border: 1px solid rgba(0, 229, 192, 0.2);
    color: var(--brand-primary);
}

.mission-vision-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--brand-text);
}

.mission-vision-description {
    font-size: 0.9375rem;
    color: var(--brand-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.mission-vision-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--brand-text-muted);
    margin-bottom: 0.5rem;
}

.mission-vision-list li i {
    color: var(--brand-primary);
    margin-top: 0.2rem;
}

/* Core values */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.core-value-card {
    text-align: center;
    padding: 2rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.core-value-card:hover {
    border-color: rgba(0, 229, 192, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.core-value-icon-wrapper {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--brand-on-primary);
    font-size: 1.25rem;
}

.core-value-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-text);
}

.core-value-description {
    font-size: 0.875rem;
    color: var(--brand-text-muted);
    line-height: 1.6;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 2.25rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.process-step:hover {
    border-color: rgba(0, 229, 192, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(0, 229, 192, 0.06);
}

.process-step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--brand-on-primary);
    box-shadow: 0 8px 24px rgba(0, 229, 192, 0.3);
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--brand-text);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--brand-text-muted);
    margin: 0;
}

/* Service Packages */
.section-packages {
    background: var(--brand-surface);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.package-card {
    background: var(--brand-darker);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 0;
}

/* Desktop: subgrid aligns header row height across all 4 cards → dividers at same level */
@media (min-width: 1025px) {
    .packages-grid {
        grid-template-rows: auto 1fr;
    }
    .package-card {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 2;
        grid-template-columns: 1fr;
    }
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Package 1 - Teal/Cyan (brand) */
.package-p1::before {
    background: linear-gradient(90deg, #00e5c0, #5effd4);
}
.package-p1 .package-tier,
.package-p1 .package-features li i { color: #00e5c0; }
.package-p1 .package-price { color: #5effd4; }
.package-p1:hover {
    border-color: rgba(0, 229, 192, 0.45);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 229, 192, 0.12);
}

/* Package 2 - Blue */
.package-p2::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}
.package-p2 .package-tier,
.package-p2 .package-features li i { color: #60a5fa; }
.package-p2 .package-price { color: #93c5fd; }
.package-p2:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.15);
}

/* Package 3 - Emerald */
.package-p3::before {
    background: linear-gradient(90deg, #10b981, #34d399);
}
.package-p3 .package-tier,
.package-p3 .package-features li i { color: #34d399; }
.package-p3 .package-price { color: #6ee7b7; }
.package-p3:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(16, 185, 129, 0.15);
}

/* Package 4 - Amber/Gold (VIP) */
.package-p4::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
.package-p4 .package-tier,
.package-p4 .package-features li i { color: #fbbf24; }
.package-p4 .package-price { color: #fcd34d; }
.package-p4 {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, var(--brand-darker) 100%);
    border-color: rgba(245, 158, 11, 0.2);
}
.package-p4:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(245, 158, 11, 0.12);
}

.package-card:hover {
    transform: translateY(-4px);
}

.package-header {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Push price to bottom of header cell so divider aligns across cards */
.package-header .package-price {
    margin-top: auto;
}

.package-tier {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.package-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--brand-border);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--brand-text-muted);
    line-height: 1.5;
    margin-bottom: 0.625rem;
}

.package-features li:last-child {
    margin-bottom: 0;
}

.package-features li i {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Contact */
.contact-container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    min-width: 0;
    box-sizing: border-box;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h2 {
    margin-bottom: 0.75rem;
    color: var(--brand-text);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    min-width: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-width: 0;
}

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

.form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--brand-text);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.875rem 1rem;
    background: var(--brand-darker);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    color: var(--brand-text);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--brand-primary);
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info-card {
    padding: 1.5rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-fast);
}

.contact-info-card:hover {
    border-color: rgba(0, 229, 192, 0.35);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-on-primary);
    font-size: 1.125rem;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--brand-text-muted);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-size: 0.9375rem;
    color: var(--brand-text);
}

/* Contact page layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-page-grid > * {
    min-width: 0;
}

.contact-info-cards {
    display: grid;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
}

.contact-info-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: var(--brand-on-primary);
}

.contact-info-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--brand-text);
}

.contact-info-content p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--brand-text-muted);
}

.business-hours-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
}

.business-hours-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--brand-text);
}

.business-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--brand-border);
    font-size: 0.9375rem;
}

.business-hours-item:last-child { border-bottom: none; }

/* Footer */
.footer {
    background: linear-gradient(180deg, #080c14 0%, #05070c 100%);
    color: var(--brand-text-muted);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid var(--brand-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 192, 0.3), transparent);
    opacity: 0.5;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-text);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.footer-logo img { height: 28px; }
.footer-logo:hover { color: var(--brand-text); }

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-text-muted);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    border-color: var(--brand-primary);
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-text);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--brand-text-muted);
}
.footer-link:hover { color: var(--brand-primary); }

.footer-legal-text {
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

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

.footer-copyright {
    font-size: 0.875rem;
    margin: 0;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-status strong { color: var(--brand-primary); }

/* Legal pages */
.legal-page {
    padding: 6rem 0 4rem;
}

.legal-container {
    max-width: 720px;
    margin: 0 auto;
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--brand-text);
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--brand-primary);
}

.legal-content h3 {
    font-size: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--brand-text-muted);
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Page hero (inner pages) */
.page-hero {
    padding: 9rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 229, 192, 0.12), transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: 1rem;
    color: var(--brand-text);
    position: relative;
    font-size: clamp(2.5rem, 6vw, 4rem);
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    color: var(--brand-text-muted);
}

/* Alternating section backgrounds */
.section-alt {
    background: var(--brand-surface);
}

/* ==========================================
   Light theme overrides — refined bright mode
   ========================================== */
:root[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

:root[data-theme="light"] .navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .hero::before {
    background:
        linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, var(--brand-darker) 70%),
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(13, 148, 136, 0.15), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(13, 148, 136, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 30% at 0% 90%, rgba(13, 148, 136, 0.06), transparent 50%);
}

:root[data-theme="light"] .hero-grid {
    background-image:
        linear-gradient(rgba(13, 148, 136, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.04) 1px, transparent 1px);
}

:root[data-theme="light"] .hero-badge {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.25);
    color: var(--brand-primary);
}

:root[data-theme="light"] .hero-title-gradient {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: none;
}

:root[data-theme="light"] .section-alt {
    background: #f1f5f9;
}

:root[data-theme="light"] .section-packages {
    background: #f1f5f9;
}

:root[data-theme="light"] .package-card {
    background: #ffffff;
    border-color: #e2e8f0;
}

:root[data-theme="light"] .package-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

:root[data-theme="light"] .package-p1:hover { border-color: rgba(13, 148, 136, 0.5); }
:root[data-theme="light"] .package-p2:hover { border-color: rgba(59, 130, 246, 0.5); }
:root[data-theme="light"] .package-p3:hover { border-color: rgba(16, 185, 129, 0.5); }
:root[data-theme="light"] .package-p4:hover { border-color: rgba(245, 158, 11, 0.5); }

:root[data-theme="light"] .package-p4 {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.08) 0%, #ffffff 100%);
    border-color: rgba(245, 158, 11, 0.25);
}

:root[data-theme="light"] .package-p1 .package-tier,
:root[data-theme="light"] .package-p1 .package-features li i { color: #0d9488; }
:root[data-theme="light"] .package-p1 .package-price { color: #0f766e; }

:root[data-theme="light"] .package-p2 .package-tier,
:root[data-theme="light"] .package-p2 .package-features li i { color: #2563eb; }
:root[data-theme="light"] .package-p2 .package-price { color: #1d4ed8; }

:root[data-theme="light"] .package-p3 .package-tier,
:root[data-theme="light"] .package-p3 .package-features li i { color: #059669; }
:root[data-theme="light"] .package-p3 .package-price { color: #047857; }

:root[data-theme="light"] .package-p4 .package-tier,
:root[data-theme="light"] .package-p4 .package-features li i { color: #d97706; }
:root[data-theme="light"] .package-p4 .package-price { color: #b45309; }

:root[data-theme="light"] .service-card {
    background: var(--brand-surface);
    border-color: #e2e8f0;
    box-shadow: var(--shadow-sm);
}

:root[data-theme="light"] .service-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 148, 136, 0.4);
}

:root[data-theme="light"] .stat-item,
:root[data-theme="light"] .about-stat-single {
    background: rgba(13, 148, 136, 0.08);
    border-color: rgba(13, 148, 136, 0.2);
}

:root[data-theme="light"] .about-expertise-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

:root[data-theme="light"] .about-expertise-item,
:root[data-theme="light"] .mission-vision-card,
:root[data-theme="light"] .core-value-card,
:root[data-theme="light"] .process-step {
    background: var(--brand-surface);
    border-color: #e2e8f0;
    box-shadow: var(--shadow-sm);
}

:root[data-theme="light"] .mission-vision-card:hover,
:root[data-theme="light"] .core-value-card:hover,
:root[data-theme="light"] .process-step:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 148, 136, 0.35);
}

:root[data-theme="light"] .contact-container,
:root[data-theme="light"] .legal-container {
    background: var(--brand-surface);
    border-color: #e2e8f0;
    box-shadow: var(--shadow-md);
}

:root[data-theme="light"] .form-input,
:root[data-theme="light"] .form-textarea,
:root[data-theme="light"] .form-select {
    background: #ffffff;
    border-color: #cbd5e1;
}

:root[data-theme="light"] .form-input:focus,
:root[data-theme="light"] .form-textarea:focus,
:root[data-theme="light"] .form-select:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

:root[data-theme="light"] .contact-info-card,
:root[data-theme="light"] .contact-info-item,
:root[data-theme="light"] .business-hours-card {
    background: var(--brand-surface);
    border-color: #e2e8f0;
}

:root[data-theme="light"] .contact-info-card:hover {
    border-color: rgba(13, 148, 136, 0.4);
}

:root[data-theme="light"] .footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Footer has dark background — ensure light text in light mode */
:root[data-theme="light"] .footer,
:root[data-theme="light"] .footer .footer-description,
:root[data-theme="light"] .footer .footer-legal-text,
:root[data-theme="light"] .footer .footer-copyright,
:root[data-theme="light"] .footer .footer-meta {
    color: #94a3b8;
}

:root[data-theme="light"] .footer .footer-logo,
:root[data-theme="light"] .footer .footer-heading {
    color: #f1f5f9;
}

:root[data-theme="light"] .footer .footer-link {
    color: #94a3b8;
}

:root[data-theme="light"] .footer .footer-link:hover {
    color: #ffffff;
}

:root[data-theme="light"] .footer .social-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #94a3b8;
}

:root[data-theme="light"] .footer .social-icon:hover {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
}

:root[data-theme="light"] .page-hero {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.04) 0%, transparent 100%);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

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

.hidden-mobile {
    display: none;
}
@media (min-width: 768px) {
    .hidden-mobile { display: block; }
}

/* ==========================================
   Mobile Menu Overlay — Complex Layout
   ========================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 769px) {
    .mobile-menu-overlay { display: none !important; }
}

@media (max-width: 768px) {
    .mobile-menu-overlay {
        display: block;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: visibility 0.4s, opacity 0.4s ease;
    }

    .mobile-menu-overlay.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: linear-gradient(165deg, var(--brand-darker) 0%, var(--brand-surface) 50%, var(--brand-darker) 100%);
    z-index: 0;
    cursor: pointer;
}

.mobile-menu-overlay.open .mobile-menu-backdrop {
    animation: mobileMenuBackdropIn 0.5s ease-out;
}

@keyframes mobileMenuBackdropIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-menu-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 4.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: none;
}

.mobile-menu-content * {
    pointer-events: auto;
}

.mobile-menu-header {
    position: relative;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--brand-border);
}

.mobile-menu-close {
    position: absolute;
    top: -0.5rem;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--brand-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-menu-close:hover {
    color: var(--brand-primary);
}

.mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-text);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.375rem;
}

.mobile-menu-logo img { height: 32px; }

.mobile-menu-tagline {
    margin: 0.375rem 0 0;
    font-size: 0.8125rem;
    color: var(--brand-text-muted);
    letter-spacing: 0.02em;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-link {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-lg);
    color: var(--brand-text);
    transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: rgba(0, 229, 192, 0.08);
    border-color: rgba(0, 229, 192, 0.35);
}

.mobile-menu-link-icon {
    grid-row: 1 / -1;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    border-radius: var(--radius-md);
    color: var(--brand-on-primary);
    font-size: 1.25rem;
}

.mobile-menu-link-text {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
}

.mobile-menu-link-desc {
    font-size: 0.8125rem;
    color: var(--brand-text-muted);
}

.mobile-menu-services {
    padding: 1rem 0;
    border-top: 1px solid var(--brand-border);
}

.mobile-menu-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-text-muted);
    margin-bottom: 0.75rem;
}

.mobile-menu-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.mobile-menu-service-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-text-muted);
    transition: all 0.25s ease;
}

.mobile-menu-service-pill i {
    color: var(--brand-primary);
    font-size: 0.875rem;
}

.mobile-menu-service-pill:hover {
    background: rgba(0, 229, 192, 0.06);
    border-color: rgba(0, 229, 192, 0.25);
    color: var(--brand-text);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.mobile-menu-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.mobile-menu-theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-md);
    color: var(--brand-text-muted);
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mobile-menu-theme-btn:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.mobile-menu-theme-btn span { display: none; }

.mobile-menu-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-border);
    text-align: center;
}

.mobile-menu-email {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--brand-border);
    border-radius: var(--radius-sm);
    color: var(--brand-text-muted);
    transition: all 0.25s ease;
}

.mobile-menu-social a:hover {
    background: var(--brand-primary);
    color: var(--brand-on-primary);
    border-color: var(--brand-primary);
}

/* Staggered animation for menu items when opening */
.mobile-menu-overlay.open .mobile-menu-header {
    animation: mobileMenuSlideIn 0.5s ease-out 0.1s both;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(1) {
    animation: mobileMenuSlideIn 0.5s ease-out 0.15s both;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(2) {
    animation: mobileMenuSlideIn 0.5s ease-out 0.2s both;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(3) {
    animation: mobileMenuSlideIn 0.5s ease-out 0.25s both;
}

.mobile-menu-overlay.open .mobile-menu-link:nth-child(4) {
    animation: mobileMenuSlideIn 0.5s ease-out 0.3s both;
}

.mobile-menu-overlay.open .mobile-menu-services {
    animation: mobileMenuSlideIn 0.5s ease-out 0.35s both;
}

.mobile-menu-overlay.open .mobile-menu-actions {
    animation: mobileMenuSlideIn 0.5s ease-out 0.4s both;
}

.mobile-menu-overlay.open .mobile-menu-footer {
    animation: mobileMenuSlideIn 0.5s ease-out 0.45s both;
}

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

/* Light theme mobile menu */
:root[data-theme="light"] .mobile-menu-backdrop {
    background: linear-gradient(165deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
}

:root[data-theme="light"] .mobile-menu-link {
    background: rgba(0, 0, 0, 0.02);
    border-color: #e2e8f0;
}

:root[data-theme="light"] .mobile-menu-link:hover,
:root[data-theme="light"] .mobile-menu-link.active {
    background: rgba(13, 148, 136, 0.06);
    border-color: rgba(13, 148, 136, 0.3);
}

:root[data-theme="light"] .mobile-menu-service-pill {
    background: rgba(0, 0, 0, 0.02);
    border-color: #e2e8f0;
}

:root[data-theme="light"] .mobile-menu-service-pill:hover {
    background: rgba(13, 148, 136, 0.05);
    border-color: rgba(13, 148, 136, 0.25);
}

:root[data-theme="light"] .mobile-menu-theme-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: #e2e8f0;
}

:root[data-theme="light"] .mobile-menu-social a {
    background: rgba(0, 0, 0, 0.03);
    border-color: #e2e8f0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-section { grid-template-columns: 1fr; }
    .about-expertise-grid { grid-template-columns: repeat(2, 1fr); }
    .packages-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .core-values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .theme-switcher-btn { display: none; }
    .mobile-menu-btn { display: flex; }

    .contact-container { padding: 1.25rem; }
    .contact-header { margin-bottom: 1.5rem; }
    .package-card { padding: 1.5rem; }

    .packages-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .core-values-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .about-expertise-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .trusted-logos { gap: 1rem; }
    .legal-container { padding: 2rem; }
    .contact-container { padding: 1rem; }
}
