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

/* Edugyd Custom Styles */

:root {
    --primary: #FF8C00;
    --secondary: #FBBF24;
    --accent: #6AB527;
    --dark-bg: #212121;
    --light-bg: #F7FAF9;
    --text-muted: #777777;
    --text-dark: #222222;
    --white: #ffffff;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 88px; /* Fixed navbar height */
}

.admin-bar body {
    padding-top: 120px; /* Fixed navbar + Admin bar height */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Animations */
@keyframes customFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

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

.animate-float {
    animation: customFloat 6s ease-in-out infinite;
}

.animate-fade-in {
    animation: customFadeIn 0.8s ease-out forwards;
}

/* Grid System */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    
    .lg\:gap-20 { gap: 5rem; }
    
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
}

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }
.gap-24 { gap: 6rem; }
@media (min-width: 1024px) {
    .lg\:gap-20 { gap: 5rem; }
    .lg\:gap-24 { gap: 6rem; }
}

/* Font Size Utilities */
.text-5xl { font-size: 3rem; }
@media (min-width: 768px) {
    .md\:text-6xl { font-size: 3.75rem; }
}

/* Flexbox System */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1 1 0%; }

/* Spacing System */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-24 { margin-bottom: 6rem; }
.mb-32 { margin-bottom: 8rem; }

.ml-1 { margin-left: 0.25rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }

.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 2rem; }
.pt-40 { padding-top: 5rem; }

.pb-6 { padding-bottom: 1.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }

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

/* Sizing Utilities */
.w-full { width: 100%; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-fit { width: fit-content; }

.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-64 { height: 16rem; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-lg { max-width: 32rem; }
.max-w-7xl { 
    max-width: 1280px; 
    width: 100%;
}

.aspect-4-3 { aspect-ratio: 4 / 3; }

/* Typography System */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

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

@media (min-width: 768px) {
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
}

.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.italic { font-style: italic; }
.underline { text-decoration: underline; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }
.text-dark-bg { color: var(--dark-bg); }
.text-text-muted { color: var(--text-muted); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-500 { color: var(--slate-500); }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }

/* Colors & Backgrounds */
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark-bg { background-color: var(--dark-bg); }
.bg-light-bg { background-color: var(--light-bg); }
.bg-white { background-color: var(--white); }
.bg-slate-50 { background-color: var(--slate-50); }

.bg-primary\/10 { background-color: rgba(255, 140, 0, 0.1); }
.bg-primary\/5 { background-color: rgba(255, 140, 0, 0.05); }
.bg-secondary\/10 { background-color: rgba(251, 191, 36, 0.1); }
.bg-secondary\/20 { background-color: rgba(251, 191, 36, 0.2); }
.bg-accent\/10 { background-color: rgba(106, 181, 39, 0.1); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }

/* Borders & Shadows */
.border { border: 1px solid var(--slate-100); }
.border-2 { border: 2px solid var(--slate-100); }
.border-b { border-bottom: 1px solid var(--slate-100); }
.pb-20 { padding-bottom: 5rem !important; }
.border-none { border: none; }
.border-white\/5 { border-color: rgba(255, 255, 255, 0.05); }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-slate-200 { border-color: var(--slate-200); }
.border-slate-300 { border-color: var(--slate-300); }
.border-primary { border-color: var(--primary); }
.border-primary\/10 { border-color: rgba(255, 140, 0, 0.1); }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-sm { border-radius: 0.125rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Order Utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (min-width: 768px) {
    .md\:order-1 { order: 1; }
    .md\:order-2 { order: 2; }
}

/* Rounded Utilities */
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Color Utilities (Orange) */
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.shadow-orange-500\/20 { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2); }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* Positioning & Display */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-1000 { z-index: 1000; }
.z-2000 { z-index: 2000; }

.translate-x-full { transform: translateX(100%); }
.transition-transform { transition-property: transform; }
.transition-all { transition-property: all; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-500 { animation-delay: 500ms; }
.delay-1000 { animation-delay: 1000ms; }
.delay-1500 { animation-delay: 1500ms; }
.delay-2000 { animation-delay: 2000ms; }

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#2a2a2a\] { background-color: #2a2a2a; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }

.p-12 { padding: 3rem; }
.p-4 { padding: 1rem; }

.mb-0\.5 { margin-bottom: 0.125rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-16 { margin-top: 4rem; }

.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-xl { border-radius: 0.75rem; }

.leading-relaxed { line-height: 1.625; }
.leading-snug { line-height: 1.375; }

.text-\[10px\] { font-size: 10px; }
.block { display: block; }
.min-h-\[140px\] { min-height: 140px; }
.resize-none { resize: none; }

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

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

.shadow-orange-glow {
    box-shadow: 0 15px 30px -5px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
}

.shadow-orange-glow:hover {
    box-shadow: 0 20px 40px -5px rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

.shadow-soft {
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.05);
}

.hidden { display: none; }

.pb-40 { padding-bottom: 10rem !important; }
.pt-16 { padding-top: 4rem !important; }
.pt-32 { padding-top: 8rem !important; }
.pb-16 { padding-bottom: 4rem !important; }

@media (min-width: 1024px) {
    .lg\:hidden { display: none !important; }
    .lg\:flex { display: flex !important; }
}

/* Specific Theme Classes */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    background-color: transparent;
}

.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

.navbar .font-outfit i {
    width: 28px;
    height: 28px;
    stroke-width: 2.5px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 500;
    color: #1f2937;
    transition: color 0.3s ease;
}

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

/* Primary Menu Styles */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.primary-menu li a {
    font-weight: 600;
    color: #4b5563;
    transition: color 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
    color: var(--primary);
}

/* Dropdown Support */
.primary-menu li {
    position: relative;
}

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 0.5rem;
    display: none;
    z-index: 100;
    list-style: none;
    margin: 0;
}

.primary-menu li:hover > .sub-menu {
    display: block;
    animation: slideUp 0.3s ease;
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    border: none;
}

.primary-menu .sub-menu li a:hover {
    background-color: #f9fafb;
    color: var(--primary);
}

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

/* Mobile Menu Styles */
.mobile-primary-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-primary-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Mobile Sub-menu support */
.mobile-primary-menu .sub-menu {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--slate-100);
}

.mobile-primary-menu .sub-menu li a {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 0;
    color: #4b5563;
    border-bottom: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #ea580c;
    box-shadow: 0 10px 15px -3px rgba(255, 140, 0, 0.3);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid #e2e8f0;
    color: #4b5563;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(255, 140, 0, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
}

.btn-lg {
    padding: 1.25rem 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 36rem;
}

/* WordPress Menu Styles */
.primary-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.primary-menu li {
    position: relative;
    list-style: none;
}

.primary-menu li a {
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.primary-menu li a:hover, .primary-menu li.current-menu-item a {
    color: var(--primary);
}

.primary-menu .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 0.5rem;
    margin-top: -0.2rem;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.primary-menu .menu-item-has-children:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 0.2rem;
}

.primary-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    margin-top: 0.25rem;
    width: 14rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    padding: 0.75rem;
}

/* Bridge to prevent gap */
.primary-menu .sub-menu::after {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    width: 100%;
    height: 1rem;
}

.primary-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -0.4rem;
    left: 1.5rem;
    width: 0.8rem;
    height: 0.8rem;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.primary-menu .sub-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.75rem;
}

.primary-menu .sub-menu li a:hover {
    background-color: rgba(255, 140, 0, 0.05);
    color: var(--primary);
}

/* Modal Styles */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(33, 33, 33, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 95%;
    max-width: 28rem;
    background-color: var(--white);
    border-radius: 2.5rem;
    z-index: 2001;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2.5rem;
}

.modal-content.active {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--white);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
}

.reveal.animate-fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease-out;
}

.asymmetric-image {
    border-radius: 80px 20px 80px 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.asymmetric-image img {
    border-radius: inherit;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Utility Classes for About Page */
.border-l-4 { border-left-width: 4px !important; border-left-style: solid !important; }
.border-primary { border-color: var(--primary) !important; }
.bg-orange-50-50 { background-color: rgba(255, 247, 237, 0.5); }
.bg-primary-10 { background-color: rgba(255, 140, 0, 0.1); }
.rounded-4xl { border-radius: 2.5rem !important; }
.rounded-5xl { border-radius: 3.5rem !important; }
.inset-y-0 { top: 0; bottom: 0; }
.left-6 { left: 1.5rem !important; }
.right-6 { right: 1.5rem !important; }
.pl-14 { padding-left: 3.5rem !important; }
.pr-14 { padding-right: 3.5rem !important; }
.mt-12 { margin-top: 3rem !important; }
.mb-20 { margin-bottom: 5rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-8 { margin-bottom: 2rem !important; }
.inline-flex { display: inline-flex !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.text-\[9px\] { font-size: 9px !important; }
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tracking-widest { letter-spacing: 0.1em !important; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-7 { width: 1.75rem !important; }
.h-7 { height: 1.75rem !important; }
.w-8 { width: 2rem !important; }
.h-8 { height: 2rem !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.w-14 { width: 3.5rem !important; }
.h-14 { height: 3.5rem !important; }

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
    .lg\:gap-24 { gap: 6rem !important; }
    .lg\:flex-row { flex-direction: row !important; }
    .lg\:items-start { align-items: flex-start !important; }
    .lg\:text-left { text-align: left !important; }
    .lg\:w-auto { width: auto !important; }
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
    color: var(--dark-bg);
    font-weight: 900;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-content h2 { font-size: 2rem; }
.post-content h3 { font-size: 1.5rem; }

.post-content p {
    margin-bottom: 1.75rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.post-content a:hover {
    border-bottom-color: var(--primary);
    background: rgba(255, 140, 0, 0.05);
}

.post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 1.5rem 2rem;
    background: var(--slate-50);
    border-radius: 0 1.5rem 1.5rem 0;
    font-style: italic;
    margin: 2.5rem 0;
    color: var(--dark-bg);
}

.stat-card-mini {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile Menu Styles */
#mobileMenu {
    transition: all 0.5s ease;
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
}

#mobileMenu.translate-x-full {
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
}

@media (max-width: 1023px) {
    .hidden.lg\:flex { display: none !important; }
}

/* Desktop Fixes */
@media (min-width: 1024px) {
    .lg\:hidden, 
    .mobile-menu-btn, 
    #mobileMenu {
        display: none !important;
    }
    
    .lg\:flex {
        display: flex !important;
    }
}

/* Header Height Fix */
.navbar {
    height: 88px;
}

.navbar > .max-w-7xl {
    height: 100%;
}

.primary-menu {
    display: flex !important;
}

.hero-bg {
    background: linear-gradient(135deg, #eef9ee 0%, #fdfbe8 100%);
}

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

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

/* Footer Menu Styles */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    color: var(--slate-400);
    transition: color 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-menu li a:hover {
    color: var(--primary);
}

/* FAQ Accordion Styles */
.faq-item {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--slate-400);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--slate-50);
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Assessment CTA Styles */
.assessment-cta {
    background-color: #1a1a1a;
}

.cta-button {
    background: linear-gradient(to right, #FBBF24, #FF8C00);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(251, 191, 36, 0.6);
}

.assessment-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.stat-bar-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.stat-bar-container.primary { border-left-color: #FF8C00; }
.stat-bar-container.secondary { border-left-color: #FBBF24; }
.stat-bar-container.accent { border-left-color: #6AB527; }

.stat-bar-track {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 999px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 999px;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.stat-bar-fill.primary { background: #FF8C00; box-shadow: 0 0 15px rgba(255, 140, 0, 0.5); }
.stat-bar-fill.secondary { background: #FBBF24; box-shadow: 0 0 15px rgba(251, 191, 36, 0.5); }
.stat-bar-fill.accent { background: #6AB527; box-shadow: 0 0 15px rgba(106, 181, 39, 0.5); }

/* Range Input Styling */
input[type="range"].custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 999px;
    outline: none;
}

input[type="range"].custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

input[type="range"].custom-range::-webkit-slider-thumb:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

input[type="range"].custom-range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #ffffff;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.roi-card {
    background: #FFFBF0;
    border: 1px solid #FEE2B3;
    border-radius: 1.25rem;
    padding: 2rem;
}

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

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.premium-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 50%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

.premium-gradient::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.premium-gradient::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.03) 0%, transparent 70%);
    z-index: 0;
}

/* Career Assessment Wizard Steps */
.step {
    display: none;
}
.step.active {
    display: block;
}

/* Peer Checked Styling for Radio Option Cards */
.peer:checked + label {
    border-color: var(--primary) !important;
    background-color: rgba(255, 140, 0, 0.05) !important;
    box-shadow: 0 10px 15px -3px rgba(255, 140, 0, 0.1) !important;
}

.peer:checked + label .w-14 {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* Assessment Controls Positioning Override */
#controls {
    margin-top: 50px !important;
    padding-top: 10px !important;
}

/* Custom Utility Class Replications for Assessment Navigation */
.py-10 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
}
.px-10 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
}

