/* Frontend Landing Page Styles - Inspired by TeKMediApp Template */

/* ============================================
   TAILWIND CSS UTILITIES (tw- prefix)
   ============================================ */

/* CSS Variables for Brand Colors */
:root {
    /* Brand Colors */
    --brand-50: #eff6ff;
    --brand-100: #dbeafe;
    --brand-200: #bfdbfe;
    --brand-300: #93c5fd;
    --brand-400: #60a5fa;
    --brand-500: #3b82f6;
    --brand-600: #2563eb;
    --brand-700: #1d4ed8;
    --brand-800: #1e40af;
    --brand-900: #1e3a8a;
    --brand-950: #172554;
    
    /* Accent Colors */
    --accent-50: #f0fdf4;
    --accent-100: #dcfce7;
    --accent-200: #bbf7d0;
    --accent-300: #86efac;
    --accent-400: #4ade80;
    --accent-500: #22c55e;
    --accent-600: #16a34a;
    --accent-700: #15803d;
    --accent-800: #166534;
    --accent-900: #14532d;
    --accent-950: #052e16;
    
    /* Slate Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    /* Legacy Variables */
    --tab-orange: linear-gradient(135deg, #ff6b35, #f7931e);
    --tab-green: linear-gradient(135deg, #4ecdc4, #44a08d);
    --tab-pink: linear-gradient(135deg, #ff6b9d, #c44569);
    --tab-yellow: linear-gradient(135deg, #feca57, #ff9ff3);
    --tab-blue: linear-gradient(135deg, #54a0ff, #2e86de);
    --tab-white: linear-gradient(135deg, #ffffff, #f7f7f7);
    
    --bg-cream: #f5f2e8;
    --bg-light: #f7f7f7;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.08);
    --shadow-md: 0 6px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   TAILWIND UTILITY CLASSES WITH tw- PREFIX
   ============================================ */

/* Font & Text */
.tw-font-sans { font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
.tw-antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.tw-text-xs { font-size: 0.75rem; line-height: 1rem; }
.tw-text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tw-text-base { font-size: 1rem; line-height: 1.5rem; }
.tw-text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.tw-text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.tw-text-2xl { font-size: 1.5rem; line-height: 2rem; }
.tw-text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.tw-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.tw-text-5xl { font-size: 3rem; line-height: 1.16; }
.tw-text-7xl { font-size: 4.5rem; line-height: 1; }
.tw-font-medium { font-weight: 500; }
.tw-font-semibold { font-weight: 600; }
.tw-font-bold { font-weight: 700; }
.tw-font-extrabold { font-weight: 800; }
.tw-uppercase { text-transform: uppercase; }
.tw-tracking-tight { letter-spacing: -0.025em; }
.tw-tracking-wide { letter-spacing: 0.025em; }
.tw-tracking-widest { letter-spacing: 0.1em; }
.tw-leading-tight { line-height: 1.25; }
.tw-leading-relaxed { line-height: 1.625; }
.tw-text-center { text-align: center; }
.tw-text-left { text-align: left; }

/* Text Colors */
.tw-text-white { color: #ffffff; }
.tw-text-black { color: #000000; }
.tw-text-transparent { color: transparent; }
.tw-text-slate-50 { color: var(--slate-50); }
.tw-text-slate-100 { color: var(--slate-100); }
.tw-text-slate-200 { color: var(--slate-200); }
.tw-text-slate-300 { color: var(--slate-300); }
.tw-text-slate-400 { color: var(--slate-400); }
.tw-text-slate-500 { color: var(--slate-500); }
.tw-text-slate-600 { color: var(--slate-600); }
.tw-text-slate-700 { color: var(--slate-700); }
.tw-text-slate-800 { color: var(--slate-800); }
.tw-text-slate-900 { color: var(--slate-900); }
.tw-text-gray-400 { color: #9ca3af; }
.tw-text-gray-500 { color: #6b7280; }
.tw-text-gray-600 { color: #4b5563; }
.tw-text-gray-800 { color: #1f2937; }
.tw-text-gray-900 { color: #111827; }
.tw-text-brand-50 { color: var(--brand-50); }
.tw-text-brand-100 { color: var(--brand-100); }
.tw-text-brand-200 { color: var(--brand-200); }
.tw-text-brand-500 { color: var(--brand-500); }
.tw-text-brand-600 { color: var(--brand-600); }
.tw-text-brand-700 { color: var(--brand-700); }
.tw-text-accent-500 { color: var(--accent-500); }
.tw-text-green-600 { color: #16a34a; }
.tw-text-blue-600 { color: #2563eb; }
.tw-text-yellow-600 { color: #ca8a04; }
.tw-text-purple-600 { color: #9333ea; }
.tw-text-pink-600 { color: #db2777; }
.tw-text-red-300 { color: #fca5a5; }
.tw-text-amber-400 { color: #fbbf24; }

/* Background Colors */
.tw-bg-white { background-color: #ffffff; }
.tw-bg-black { background-color: #000000; }
.tw-bg-transparent { background-color: transparent; }
.tw-bg-slate-50 { background-color: var(--slate-50); }
.tw-bg-slate-100 { background-color: var(--slate-100); }
.tw-bg-slate-200 { background-color: var(--slate-200); }
.tw-bg-slate-800 { background-color: var(--slate-800); }
.tw-bg-slate-900 { background-color: var(--slate-900); }
.tw-bg-gray-50 { background-color: #f9fafb; }
.tw-bg-gray-100 { background-color: #f3f4f6; }
.tw-bg-brand-50 { background-color: var(--brand-50); }
.tw-bg-brand-100 { background-color: var(--brand-100); }
.tw-bg-brand-500 { background-color: var(--brand-500); }
.tw-bg-brand-600 { background-color: var(--brand-600); }
.tw-bg-brand-700 { background-color: var(--brand-700); }
.tw-bg-brand-800 { background-color: var(--brand-800); }
.tw-bg-brand-900 { background-color: var(--brand-900); }
.tw-bg-brand-950 { background-color: var(--brand-950); }
.tw-bg-accent-50 { background-color: var(--accent-50); }
.tw-bg-green-100 { background-color: #dcfce7; }
.tw-bg-blue-100 { background-color: #dbeafe; }
.tw-bg-yellow-100 { background-color: #fef9c3; }
.tw-bg-purple-100 { background-color: #f3e8ff; }
.tw-bg-pink-100 { background-color: #fce7f3; }

/* Background with Opacity */
.tw-bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.tw-bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.tw-bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.tw-bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.tw-bg-brand-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.tw-bg-accent-500\/10 { background-color: rgba(34, 197, 94, 0.1); }
.tw-bg-accent-400\/20 { background-color: rgba(74, 222, 128, 0.2); }

/* Gradients */
.tw-bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.tw-bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.tw-bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.tw-from-brand-50 { --tw-gradient-from: var(--brand-50); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-500 { --tw-gradient-from: var(--brand-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-600 { --tw-gradient-from: var(--brand-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-700 { --tw-gradient-from: var(--brand-700); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-800 { --tw-gradient-from: var(--brand-800); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-900 { --tw-gradient-from: var(--brand-900); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-900\/30 { --tw-gradient-from: rgba(30, 58, 138, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-accent-500 { --tw-gradient-from: var(--accent-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-accent-400 { --tw-gradient-from: var(--accent-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-white { --tw-gradient-from: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-slate-900\/80 { --tw-gradient-from: rgba(15, 23, 42, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-via-white { --tw-gradient-via: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-via-brand-500 { --tw-gradient-via: var(--brand-500); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-via-brand-600 { --tw-gradient-via: var(--brand-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-via-brand-800 { --tw-gradient-via: var(--brand-800); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-via-brand-800\/20 { --tw-gradient-via: rgba(30, 64, 175, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-via-slate-900\/20 { --tw-gradient-via: rgba(15, 23, 42, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-to-brand-200 { --tw-gradient-to: var(--brand-200); }
.tw-to-brand-500 { --tw-gradient-to: var(--brand-500); }
.tw-to-brand-600 { --tw-gradient-to: var(--brand-600); }
.tw-to-brand-700 { --tw-gradient-to: var(--brand-700); }
.tw-to-brand-950 { --tw-gradient-to: var(--brand-950); }
.tw-to-accent-50 { --tw-gradient-to: var(--accent-50); }
.tw-to-accent-300 { --tw-gradient-to: var(--accent-300); }
.tw-to-accent-400 { --tw-gradient-to: var(--accent-400); }
.tw-to-accent-500 { --tw-gradient-to: var(--accent-500); }
.tw-to-accent-600 { --tw-gradient-to: var(--accent-600); }
.tw-to-accent-900\/30 { --tw-gradient-to: rgba(20, 83, 45, 0.3); }
.tw-to-transparent { --tw-gradient-to: transparent; }
.tw-bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* Spacing - Padding */
.tw-p-2 { padding: 0.5rem; }
.tw-p-4 { padding: 1rem; }
.tw-p-6 { padding: 1.5rem; }
.tw-p-8 { padding: 2rem; }
.tw-p-12 { padding: 3rem; }
.tw-px-4 { padding-left: 1rem; padding-right: 1rem; }
.tw-px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.tw-px-8 { padding-left: 2rem; padding-right: 2rem; }
.tw-px-12 { padding-left: 3rem; padding-right: 3rem; }
.tw-py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.tw-py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.tw-py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.tw-py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.tw-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.tw-pt-32 { padding-top: 8rem; }
.tw-pb-20 { padding-bottom: 5rem; }

/* Spacing - Margin */
.tw-m-0 { margin: 0; }
.tw-mx-auto { margin-left: auto; margin-right: auto; }
.tw-mb-1 { margin-bottom: 0.25rem; }
.tw-mb-2 { margin-bottom: 0.5rem; }
.tw-mb-3 { margin-bottom: 0.75rem; }
.tw-mb-4 { margin-bottom: 1rem; }
.tw-mb-6 { margin-bottom: 1.5rem; }
.tw-mb-8 { margin-bottom: 2rem; }
.tw-mb-12 { margin-bottom: 3rem; }
.tw-mb-16 { margin-bottom: 4rem; }
.tw-mr-2 { margin-right: 0.5rem; }
.tw-mr-3 { margin-right: 0.75rem; }
.tw-mr-4 { margin-right: 1rem; }
.tw-ml-2 { margin-left: 0.5rem; }
.tw-mt-4 { margin-top: 1rem; }
.tw-mt-8 { margin-top: 2rem; }
.tw-mt-12 { margin-top: 3rem; }
.tw-mt-40 { margin-top: 10rem; }

/* Sizing */
.tw-w-5 { width: 1.25rem; }
.tw-w-8 { width: 2rem; }
.tw-w-10 { width: 2.5rem; }
.tw-w-12 { width: 3rem; }
.tw-w-16 { width: 4rem; }
.tw-w-24 { width: 6rem; }
.tw-w-32 { width: 8rem; }
.tw-w-64 { width: 16rem; }
.tw-w-72 { width: 18rem; }
.tw-w-96 { width: 24rem; }
.tw-w-full { width: 100%; }
.tw-h-5 { height: 1.25rem; }
.tw-h-8 { height: 2rem; }
.tw-h-10 { height: 2.5rem; }
.tw-h-12 { height: 3rem; }
.tw-h-16 { height: 4rem; }
.tw-h-24 { height: 6rem; }
.tw-h-32 { height: 8rem; }
.tw-h-64 { height: 16rem; }
.tw-h-72 { height: 18rem; }
.tw-h-80 { height: 20rem; }
.tw-h-96 { height: 24rem; }
.tw-h-full { height: 100%; }
.tw-min-h-screen { min-height: 100vh; }
.tw-max-w-xs { max-width: 20rem; }
.tw-max-w-lg { max-width: 32rem; }
.tw-max-w-2xl { max-width: 42rem; }
.tw-max-w-3xl { max-width: 48rem; }

/* Flexbox */
.tw-flex { display: flex; }
.tw-inline-flex { display: inline-flex; }
.tw-flex-col { flex-direction: column; }
.tw-flex-row { flex-direction: row; }
.tw-flex-wrap { flex-wrap: wrap; }
.tw-flex-shrink-0 { flex-shrink: 0; }
.tw-items-center { align-items: center; }
.tw-items-end { align-items: flex-end; }
.tw-justify-center { justify-content: center; }
.tw-justify-between { justify-content: space-between; }
.tw-gap-1 { gap: 0.25rem; }
.tw-gap-4 { gap: 1rem; }
.tw-gap-5 { gap: 1.25rem; }
.tw-gap-8 { gap: 2rem; }
.tw-gap-16 { gap: 4rem; }
.tw-space-x-4 > * + * { margin-left: 1rem; }
.tw-space-y-4 > * + * { margin-top: 1rem; }
.tw-space-y-6 > * + * { margin-top: 1.5rem; }

/* Grid */
.tw-grid { display: grid; }
.tw-grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Display & Position */
.tw-block { display: block; }
.tw-inline-block { display: inline-block; }
.tw-hidden { display: none; }
.tw-relative { position: relative; }
.tw-absolute { position: absolute; }
.tw-sticky { position: sticky; }
.tw-inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.tw-top-0 { top: 0; }
.tw-left-0 { left: 0; }
.tw-right-0 { right: 0; }
.tw-bottom-0 { bottom: 0; }
.tw-top-10 { top: 2.5rem; }
.tw-top-20 { top: 5rem; }
.tw-left-10 { left: 2.5rem; }
.tw-left-20 { left: 5rem; }
.tw-right-10 { right: 2.5rem; }
.tw-right-20 { right: 5rem; }
.tw-bottom-10 { bottom: 2.5rem; }
.tw-bottom-20 { bottom: 5rem; }
.-tw-top-4 { top: -1rem; }
.-tw-left-4 { left: -1rem; }
.-tw-right-4 { right: -1rem; }
.-tw-bottom-4 { bottom: -1rem; }
.-tw-bottom-10 { bottom: -2.5rem; }
.-tw-left-10 { left: -2.5rem; }
.-tw-translate-y-1\/2 { transform: translateY(-50%); }
.tw-translate-x-1\/2 { transform: translateX(50%); }
.tw-translate-y-1\/2 { transform: translateY(50%); }
.-tw-translate-x-1\/2 { transform: translateX(-50%); }
.tw-z-0 { z-index: 0; }
.tw-z-10 { z-index: 10; }
.tw-z-20 { z-index: 20; }

/* Borders */
.tw-border { border-width: 1px; border-style: solid; }
.tw-border-b-4 { border-bottom-width: 4px; }
.tw-border-slate-100 { border-color: var(--slate-100); }
.tw-border-slate-200 { border-color: var(--slate-200); }
.tw-border-gray-200 { border-color: #e5e7eb; }
.tw-border-brand-100 { border-color: var(--brand-100); }
.tw-border-brand-500 { border-color: var(--brand-500); }
.tw-border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.tw-border-transparent { border-color: transparent; }
.tw-rounded { border-radius: 0.25rem; }
.tw-rounded-lg { border-radius: 0.5rem; }
.tw-rounded-xl { border-radius: 0.75rem; }
.tw-rounded-2xl { border-radius: 1rem; }
.tw-rounded-3xl { border-radius: 1.5rem; }
.tw-rounded-full { border-radius: 9999px; }
.tw-ring-1 { box-shadow: 0 0 0 1px var(--tw-ring-color, rgba(0,0,0,0.05)); }
.tw-ring-4 { box-shadow: 0 0 0 4px var(--tw-ring-color, rgba(0,0,0,0.05)); }
.tw-ring-brand-100 { --tw-ring-color: var(--brand-100); }
.tw-ring-brand-500\/20 { --tw-ring-color: rgba(37, 99, 235, 0.2); }
.tw-ring-slate-100 { --tw-ring-color: var(--slate-100); }

/* Shadows */
.tw-shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.tw-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.tw-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.tw-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.tw-shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.tw-shadow-sharp { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05); }
.tw-shadow-sharp-md { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05); }
.tw-shadow-sharp-lg { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 8px 16px rgba(0, 0, 0, 0.05), 0 16px 32px rgba(0, 0, 0, 0.1); }
.tw-shadow-sharp-xl { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.08), 0 32px 64px rgba(0, 0, 0, 0.1); }
.tw-shadow-brand-500\/30 { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
.tw-shadow-brand-500\/40 { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4); }
.tw-shadow-accent-500\/30 { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); }

/* Effects */
.tw-opacity-5 { opacity: 0.05; }
.tw-opacity-0 { opacity: 0; }
.tw-opacity-25 { opacity: 0.25; }
.tw-opacity-70 { opacity: 0.70; }
.tw-opacity-75 { opacity: 0.75; }
.tw-opacity-85 { opacity: 0.85; }
.tw-opacity-90 { opacity: 0.90; }
.tw-blur-3xl { filter: blur(64px); }
.tw-backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.tw-backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.tw-backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.tw-backdrop-blur-\[2px\] { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }

/* Flex utilities */
.tw-flex-nowrap { flex-wrap: nowrap; }
.tw-inline-flex { display: inline-flex; }

/* Appearance */
.tw-appearance-none { appearance: none; }

/* Overflow */
.tw-overflow-hidden { overflow: hidden; }
.tw-overflow-x-hidden { overflow-x: hidden; }

/* Object Fit */
.tw-object-cover { object-fit: cover; }
.tw-object-top { object-position: top; }

/* Cursor */
.tw-cursor-pointer { cursor: pointer; }
.tw-cursor-not-allowed { cursor: not-allowed; }

/* Active state */
.active\:tw-scale-95:active { transform: scale(0.95); }

/* Disabled state */
.disabled\:tw-opacity-70:disabled { opacity: 0.7; }
.disabled\:tw-cursor-not-allowed:disabled { cursor: not-allowed; }

/* Additional colors for Hero section */
.tw-text-brand-300 { color: var(--brand-300); }
.tw-from-brand-200 { --tw-gradient-from: var(--brand-200); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-from-brand-300 { --tw-gradient-from: var(--brand-300); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-via-brand-200 { --tw-gradient-via: var(--brand-200); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, transparent); }
.tw-to-brand-300 { --tw-gradient-to: var(--brand-300); }
.tw-bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.tw-bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }
.tw-text-green-300 { color: #86efac; }
.tw-text-red-300 { color: #fca5a5; }
.tw-border-green-500\/50 { border-color: rgba(34, 197, 94, 0.5); }
.tw-border-brand-100 { border-color: var(--brand-100); }
.tw-border-brand-200 { border-color: var(--brand-200); }
.tw-border-brand-300 { border-color: var(--brand-300); }

/* Focus states for form inputs */
.focus\:tw-border-brand-300:focus { border-color: var(--brand-300); }
.focus\:tw-ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.5)); }
.focus\:tw-ring-brand-500:focus { --tw-ring-color: var(--brand-500); }

/* Transitions */
.tw-transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.tw-transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.tw-transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.tw-transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.tw-duration-300 { transition-duration: 300ms; }
.tw-duration-500 { transition-duration: 500ms; }
.tw-duration-700 { transition-duration: 700ms; }

/* Transforms */
.tw-scale-95 { transform: scale(0.95); }
.tw-scale-105 { transform: scale(1.05); }
.tw-rotate-2 { transform: rotate(2deg); }
.-tw-translate-y-0\.5 { transform: translateY(-0.125rem); }
.-tw-translate-y-1 { transform: translateY(-0.25rem); }
.-tw-translate-y-2 { transform: translateY(-0.5rem); }
.-tw-translate-y-3 { transform: translateY(-0.75rem); }
.tw-translate-y-2 { transform: translateY(0.5rem); }

/* Hover States */
.hover\:tw-bg-white:hover { background-color: #ffffff; }
.hover\:tw-bg-brand-50:hover { background-color: var(--brand-50); }
.hover\:tw-bg-brand-100:hover { background-color: var(--brand-100); }
.hover\:tw-bg-brand-700:hover { background-color: var(--brand-700); }
.hover\:tw-bg-slate-50:hover { background-color: var(--slate-50); }
.hover\:tw-bg-slate-100:hover { background-color: var(--slate-100); }
.hover\:tw-bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:tw-bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:tw-bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:tw-bg-gradient-to-br:hover { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.hover\:tw-from-brand-600:hover { --tw-gradient-from: var(--brand-600); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:tw-from-brand-700:hover { --tw-gradient-from: var(--brand-700); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:tw-from-accent-400:hover { --tw-gradient-from: var(--accent-400); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.hover\:tw-to-brand-600:hover { --tw-gradient-to: var(--brand-600); }
.hover\:tw-to-brand-700:hover { --tw-gradient-to: var(--brand-700); }
.hover\:tw-to-accent-300:hover { --tw-gradient-to: var(--accent-300); }
.hover\:tw-to-accent-500:hover { --tw-gradient-to: var(--accent-500); }
.hover\:tw-text-white:hover { color: #ffffff; }
.hover\:tw-text-brand-600:hover { color: var(--brand-600); }
.hover\:tw-text-brand-700:hover { color: var(--brand-700); }
.hover\:tw-shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.hover\:tw-shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.hover\:tw-shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:tw-shadow-sharp-xl:hover { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08), 0 16px 32px rgba(0, 0, 0, 0.08), 0 32px 64px rgba(0, 0, 0, 0.1); }
.hover\:tw-shadow-glow:hover { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
.hover\:tw-shadow-glow-lg:hover { box-shadow: 0 0 50px rgba(59, 130, 246, 0.5); }
.hover\:tw-border-brand-200:hover { border-color: var(--brand-200); }
.hover\:-tw-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-tw-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-tw-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:-tw-translate-y-3:hover { transform: translateY(-0.75rem); }
.hover\:tw-translate-y-0:hover { transform: translateY(0); }
.hover\:-tw-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-tw-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:tw-scale-105:hover { transform: scale(1.05); }
.hover\:tw-scale-110:hover { transform: scale(1.1); }
.hover\:tw-rotate-0:hover { transform: rotate(0deg); }
.hover\:tw-border-brand-200:hover { border-color: var(--brand-200); }
.hover\:tw-border-transparent:hover { border-color: transparent; }
.hover\:tw-opacity-100:hover { opacity: 1; }

/* Group Hover */
.tw-group:hover .group-hover\:tw-text-white { color: #ffffff; }
.tw-group:hover .group-hover\:tw-text-brand-100 { color: var(--brand-100); }
.tw-group:hover .group-hover\:tw-bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.tw-group:hover .group-hover\:tw-scale-105 { transform: scale(1.05); }
.tw-group:hover .group-hover\:tw-scale-110 { transform: scale(1.1); }
.tw-group:hover .group-hover\:tw-opacity-100 { opacity: 1; }

/* Animations */
.tw-animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.tw-animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

.tw-animate-spin {
    animation: spin 1s linear infinite;
}

.tw-animate-spin-slow {
    animation: spin 10s linear infinite;
}

/* Additional colors for dark theme section */
.tw-bg-slate-950 { background-color: #020617; }
.tw-bg-slate-900 { background-color: #0f172a; }
.tw-border-slate-800 { border-color: #1e293b; }
.tw-border-slate-700 { border-color: #334155; }
.tw-text-slate-400 { color: #94a3b8; }
.tw-text-cyan-400 { color: #22d3ee; }
.tw-from-cyan-400 { --tw-gradient-from: #22d3ee; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-to-brand-400 { --tw-gradient-to: var(--brand-400); }
.tw-bg-brand-400 { background-color: var(--brand-400); }
.tw-text-brand-300 { color: var(--brand-300); }
.tw-text-brand-400 { color: var(--brand-400); }
.tw-bg-brand-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.tw-bg-orange-500 { background-color: #f97316; }
.tw-bg-cyan-500 { background-color: #06b6d4; }
.tw-bg-purple-500 { background-color: #a855f7; }
.tw-shadow-orange-500\/30 { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3); }
.tw-shadow-cyan-500\/30 { box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3); }
.tw-shadow-purple-500\/30 { box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.3); }
.tw-text-8xl { font-size: 6rem; line-height: 1; }
.tw-fill-white { fill: #ffffff; }
.tw-origin-top-left { transform-origin: top left; }
.tw-origin-top-right { transform-origin: top right; }
.-tw-rotate-45 { transform: rotate(-45deg); }
.tw-rotate-45 { transform: rotate(45deg); }
.tw-rotate-180 { transform: rotate(180deg); }
.group-open\:tw-rotate-180:is(details[open] *) { transform: rotate(180deg); }
.group-open\:tw-bg-brand-500:is(details[open] *) { background-color: var(--brand-500); }
.group-open\:tw-bg-brand-600:is(details[open] *) { background-color: var(--brand-600); }

/* Emerald/Cyan gradient colors for How It Works section */
.tw-from-emerald-50 { --tw-gradient-from: #ecfdf5; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-via-cyan-50 { --tw-gradient-stops: var(--tw-gradient-from), #ecfeff, var(--tw-gradient-to, transparent); }
.tw-to-blue-50 { --tw-gradient-to: #eff6ff; }
.tw-bg-emerald-50 { background-color: #ecfdf5; }
.tw-bg-emerald-100 { background-color: #d1fae5; }
.tw-text-emerald-600 { color: #059669; }
.tw-bg-cyan-50 { background-color: #ecfeff; }
.tw-bg-cyan-100 { background-color: #cffafe; }
.tw-text-cyan-600 { color: #0891b2; }
.tw-from-cyan-500 { --tw-gradient-from: #06b6d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-to-cyan-500 { --tw-gradient-to: #06b6d4; }
.tw-from-brand-200\/50 { --tw-gradient-from: rgba(var(--brand-200-rgb, 191, 219, 254), 0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.tw-to-cyan-200\/50 { --tw-gradient-to: rgba(165, 243, 252, 0.5); }
.tw-bg-purple-50 { background-color: #faf5ff; }
.tw-bg-purple-100 { background-color: #f3e8ff; }
.tw-text-purple-600 { color: #9333ea; }
.tw-drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Infinite Scroll Animation for Trust Bar */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tw-animate-infinite-scroll {
    animation: scroll 25s linear infinite;
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tw-animate-fade-in-down {
    animation: fadeInDown 0.3s ease-out forwards;
}

/* Size Classes */
.tw-size-5 { width: 1.25rem; height: 1.25rem; }

/* Container */
.tw-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Small screens (sm: 640px) */
@media (min-width: 640px) {
    .sm\:tw-flex-row { flex-direction: row; }
    .sm\:tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Medium screens (md: 768px) */
@media (min-width: 768px) {
    .md\:tw-flex { display: flex; }
    .md\:tw-hidden { display: none; }
    .md\:tw-inline-flex { display: inline-flex; }
    .md\:tw-block { display: block; }
    .md\:tw-flex-row { flex-direction: row; }
    .md\:tw-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:tw-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:tw-text-5xl { font-size: 3rem; line-height: 1.16; }
    .md\:tw-justify-start { justify-content: flex-start; }
}

/* Large screens (lg: 1024px) */
@media (min-width: 1024px) {
    .lg\:tw-flex { display: flex; }
    .lg\:tw-hidden { display: none; }
    .lg\:tw-flex-row { flex-direction: row; }
    .lg\:tw-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:tw-w-1\/2 { width: 50%; }
    .lg\:tw-w-5\/12 { width: 41.666667%; }
    .lg\:tw-mb-0 { margin-bottom: 0; }
    .lg\:tw-pt-0 { padding-top: 0; }
    .lg\:tw-pt-48 { padding-top: 12rem; }
    .lg\:tw-pb-32 { padding-bottom: 8rem; }
    .lg\:tw-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .lg\:tw-p-16 { padding: 4rem; }
    .lg\:tw-text-5xl { font-size: 3rem; line-height: 1.16; }
    .lg\:tw-text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* Header & Sticky Nav utilities */
.tw-sticky { position: sticky; }
.tw-top-0 { top: 0; }
.tw-z-50 { z-index: 50; }
.tw-z-20 { z-index: 20; }
.tw-z-10 { z-index: 10; }
.tw-z-0 { z-index: 0; }
.tw-h-20 { height: 5rem; }
.tw-h-12 { height: 3rem; }
.tw-h-72 { height: 18rem; }
.tw-w-auto { width: auto; }
.tw-w-6 { width: 1.5rem; }
.tw-h-6 { height: 1.5rem; }
.tw-gap-2 { gap: 0.5rem; }
.tw-gap-8 { gap: 2rem; }
.tw-rounded-full { border-radius: 9999px; }
.tw-rounded-lg { border-radius: 0.5rem; }
.tw-leading-tight { line-height: 1.25; }
.tw-bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.tw-border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.tw-shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.tw-px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.tw-py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.tw-shadow-brand-500\/30 { box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3); }
.tw-shadow-brand-500\/50 { box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.5); }
.tw-shadow-accent-500\/30 { box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3); }
.tw-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.tw-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.tw-min-h-screen { min-height: 100vh; }
.tw-pt-20 { padding-top: 5rem; }
.tw-py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.tw-py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.tw-h-px { height: 1px; }
.tw-my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.tw-bg-red-50 { background-color: #fef2f2; }
.tw-text-red-500 { color: #ef4444; }
.tw-p-3 { padding: 0.75rem; }
.tw-mt-1 { margin-top: 0.25rem; }
.tw-mt-3 { margin-top: 0.75rem; }
.tw-mt-6 { margin-top: 1.5rem; }

/* List styles for trust bar */
.\[mask-image\:_linear-gradient\(to_right\,transparent_0\,_black_128px\,_black_calc\(100\%-128px\)\,transparent_100\%\)\] {
    mask-image: linear-gradient(to right, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 128px, black calc(100% - 128px), transparent 100%);
}
.\[\&_li\]\:tw-mx-12 li { margin-left: 3rem; margin-right: 3rem; }
.\[\&_img\]\:tw-max-w-none img { max-width: none; }

/* ============================================
   ADDITIONAL TAILWIND UTILITIES
   ============================================ */

/* FAQ Details/Summary Rotation */
.group-open\:-tw-rotate-180 {
    transform: rotate(-180deg);
}
details[open] .group-open\:-tw-rotate-180 {
    transform: rotate(-180deg);
}
details:not([open]) .group-open\:-tw-rotate-180 {
    transform: rotate(0deg);
}

/* Hide webkit details marker */
.\[\&_summary\:\:-webkit-details-marker\]\:tw-hidden summary::-webkit-details-marker {
    display: none;
}

/* Shrink utility */
.tw-shrink-0 { flex-shrink: 0; }

/* Transition colors */
.tw-transition-opacity { 
    transition-property: opacity; 
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
    transition-duration: 150ms; 
}

/* Focus ring */
.focus\:tw-ring-4:focus { box-shadow: 0 0 0 4px var(--tw-ring-color, rgba(0,0,0,0.05)); }

/* Opacity transition for doctor card hover */
.tw-group .group-hover\:tw-opacity-100 {
    transition: opacity 0.3s ease;
}
.tw-group:hover .group-hover\:tw-opacity-100 {
    opacity: 1;
}

/* Scale transitions */
.tw-group .group-hover\:tw-scale-105 {
    transition: transform 0.3s ease;
}
.tw-group:hover .group-hover\:tw-scale-105 {
    transform: scale(1.05);
}

/* Object Position */
.tw-object-center { object-position: center; }

/* Additional background opacity variations */
.tw-bg-slate-50\/50 { background-color: rgba(248, 250, 252, 0.5); }
.tw-bg-brand-500\/10 { background-color: rgba(59, 130, 246, 0.1); }
.tw-bg-accent-500\/10 { background-color: rgba(34, 197, 94, 0.1); }

/* Additional translate utilities */
.tw-translate-y-1\/2 { transform: translateY(50%); }
.-tw-translate-y-1\/2 { transform: translateY(-50%); }
.tw-translate-x-1\/2 { transform: translateX(50%); }
.-tw-translate-x-1\/2 { transform: translateX(-50%); }

/* Glow shadows for hover effects */
.tw-shadow-glow { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
.tw-shadow-glow-lg { box-shadow: 0 0 50px rgba(59, 130, 246, 0.5); }

/* Additional Tailwind utilities for DoctorsList page */
.tw-w-72 { width: 18rem; }
.tw-h-auto { height: auto; }
.tw-py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.tw-py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.tw-mb-0\.5 { margin-bottom: 0.125rem; }
.tw-mr-0\.5 { margin-right: 0.125rem; }
.tw-gap-2 { gap: 0.5rem; }
.tw-gap-3 { gap: 0.75rem; }
.tw-gap-6 { gap: 1.5rem; }
.tw-text-rose-500 { color: #f43f5e; }
.tw-text-amber-600 { color: #d97706; }
.tw-text-purple-600 { color: #9333ea; }
.tw-bg-rose-50 { background-color: #fff1f2; }
.tw-bg-purple-50 { background-color: #faf5ff; }
.tw-bg-amber-50 { background-color: #fffbeb; }
.tw-fill-current { fill: currentColor; }
.tw-whitespace-nowrap { white-space: nowrap; }
.tw-animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.tw-cursor-not-allowed { cursor: not-allowed; }
.tw-border-slate-300 { border-color: #cbd5e1; }
.tw-border-brand-300 { border-color: #93c5fd; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Hover states for rose color */
.hover\:tw-bg-rose-50:hover { background-color: #fff1f2; }
.hover\:tw-border-slate-400:hover { border-color: #94a3b8; }
.hover\:tw-border-brand-300:hover { border-color: #93c5fd; }
.hover\:-tw-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:tw-text-rose-500:hover { color: #f43f5e; }
.hover\:tw-text-brand-700:hover { color: var(--brand-700); }
.hover\:tw-shadow-brand-500\/50:hover { box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5); }

/* Additional size classes */
.tw-w-9 { width: 2.25rem; }
.tw-h-9 { height: 2.25rem; }
.tw-w-4 { width: 1rem; }
.tw-h-4 { height: 1rem; }
.tw-p-2\.5 { padding: 0.625rem; }
.tw-py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.tw-py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.tw-top-24 { top: 6rem; }
.tw-h-72 { height: 18rem; }
.tw-w-64 { width: 16rem; }
.tw-h-64 { height: 16rem; }
.tw-w-48 { width: 12rem; }
.tw-h-48 { height: 12rem; }
.tw-w-1 { width: 0.25rem; }
.tw-h-8 { height: 2rem; }
.tw-outline-none { outline: none; }

/* Focus ring */
.focus\:tw-border-brand-500:focus { border-color: var(--brand-500); }
.focus\:tw-ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color, rgba(59, 130, 246, 0.2)); }
.focus\:tw-ring-brand-500\/20:focus { --tw-ring-color: rgba(59, 130, 246, 0.2); }

/* Background with opacity */
.tw-bg-brand-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.tw-bg-accent-500\/20 { background-color: rgba(34, 197, 94, 0.2); }

/* Color variations for info grid */
.tw-text-slate-400 { color: #94a3b8; }

/* Responsive md: variants for doctor cards */
@media (min-width: 768px) {
    .md\:tw-w-72 { width: 18rem; }
    .md\:tw-w-64 { width: 16rem; }
    .md\:tw-h-auto { height: auto; }
}

/* Small responsive variants */
@media (min-width: 640px) {
    .sm\:tw-flex { display: flex; }
    .sm\:tw-hidden { display: none; }
    .sm\:tw-items-center { align-items: center; }
}

/* Large responsive variants */
@media (min-width: 1024px) {
    .lg\:tw-w-96 { width: 24rem; }
}

/* ============================================
   BREADCRUMB STYLES FOR INNER PAGES
   ============================================ */

.breadcrumb-bar-two {
    background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-900) 50%, var(--brand-950) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.breadcrumb-bar-two::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.breadcrumb-bar-two .container {
    position: relative;
    z-index: 1;
}

.breadcrumb-bar-two .inner-banner {
    text-align: center;
}

.breadcrumb-bar-two .breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb-bar-two .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
}

.breadcrumb-bar-two .breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
}

.breadcrumb-bar-two .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-bar-two .breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-bar-two .breadcrumb-item.active {
    color: var(--accent-400);
}

.breadcrumb-bar-two .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    padding-right: 0.75rem;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
}

/* ============================================
   CONTENT AREA & SEARCH FILTER STYLES
   ============================================ */

.content {
    padding: 2rem 0;
    background-color: var(--slate-50);
    min-height: calc(100vh - 200px);
}

.search-filter {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.search-filter .card-body {
    padding: 1.5rem;
}

.search-filter label {
    font-weight: 600;
    color: var(--slate-700);
    font-size: 0.875rem;
}

.search-filter .form-control,
.search-filter .form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.search-filter .form-control:focus,
.search-filter .form-select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Filter List Header */
.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-list h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
}

.dropdown-filter .form-select {
    border-radius: 0.5rem;
    border: 1px solid var(--slate-200);
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    min-width: 180px;
}

/* Map Listing Sidebar */
.map-listing {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    border: 1px solid var(--slate-200);
    position: sticky;
    top: 90px;
}

.map-listing iframe {
    border-radius: 1rem;
}

/* Container fluid adjustments */
.container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .map-listing {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
    
    .breadcrumb-bar-two {
        padding: 40px 0;
    }
    
    .breadcrumb-bar-two .breadcrumb-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .search-filter .card-body {
        padding: 1rem;
    }
    
    .breadcrumb-bar-two .breadcrumb-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   ORIGINAL FRONTEND STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Layout */
.frontend-page {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    min-height: 100vh;
}

/* Navigation */
.frontend-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 0 24px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 48px;
    height: 48px;
    background: var(--tab-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: var(--shadow-sm);
}

.nav-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    padding: 10px 18px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.nav-links a:hover {
    background: rgba(84, 160, 255, 0.1);
    color: #2e86de;
}

.nav-links a.nav-book-link {
    background: var(--tab-green);
    color: white;
    font-weight: 600;
}

.nav-links a.nav-book-link:hover {
    background: linear-gradient(135deg, #3dbdb5, #3a9585);
    color: white;
}

.mobile-book-btn {
    background: var(--tab-green);
    color: white !important;
    text-align: center;
    padding: 14px 20px !important;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--tab-blue);
    color: white;
    box-shadow: 0 4px 12px rgba(46, 134, 222, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 134, 222, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgba(0,0,0,0.15);
}

.btn-outline:hover {
    border-color: #2e86de;
    color: #2e86de;
    background: rgba(84, 160, 255, 0.05);
}

.btn-emergency {
    background: var(--tab-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
    color: white;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.hero-grid-svg {
    width: 100%;
    height: 100%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 50px;
    color: #4ecdc4;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-title-highlight {
    background: var(--tab-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    color: #4ecdc4;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

.hero-badge-icon {
    width: 16px;
    height: 16px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--tab-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Services Section with Colored Tabs Style */
.services-section {
    padding: 100px 24px;
    background: var(--bg-light);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(78, 205, 196, 0.15);
    color: #44a08d;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.service-card:nth-child(1)::before { background: var(--tab-orange); }
.service-card:nth-child(2)::before { background: var(--tab-blue); }
.service-card:nth-child(3)::before { background: var(--tab-pink); }
.service-card:nth-child(4)::before { background: var(--tab-green); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card:nth-child(1) .service-icon { background: rgba(255, 107, 53, 0.12); }
.service-card:nth-child(2) .service-icon { background: rgba(84, 160, 255, 0.12); }
.service-card:nth-child(3) .service-icon { background: rgba(255, 107, 157, 0.12); }
.service-card:nth-child(4) .service-icon { background: rgba(78, 205, 196, 0.12); }

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e86de;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 10px;
}

/* Quick Services Row */
.quick-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.quick-service {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
}

.quick-service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.quick-service:nth-child(1) .quick-service-icon { background: rgba(78, 205, 196, 0.12); }
.quick-service:nth-child(2) .quick-service-icon { background: rgba(254, 202, 87, 0.12); }
.quick-service:nth-child(3) .quick-service-icon { background: rgba(255, 107, 157, 0.12); }

.quick-service-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.quick-service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Booking CTA Section */
.booking-cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.booking-cta-card {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.booking-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--tab-green);
}

.booking-cta-content {
    position: relative;
    z-index: 1;
}

.booking-cta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(68, 160, 141, 0.15));
    color: #44a08d;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 16px;
}

.booking-cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.booking-cta-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin-bottom: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.cta-feature svg {
    color: #4ecdc4;
    flex-shrink: 0;
}

.booking-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.booking-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.booking-cta-actions .btn-primary {
    background: var(--tab-green);
    color: white;
    border: none;
    box-shadow: 0 4px 14px rgba(78, 205, 196, 0.3);
}

.booking-cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.booking-cta-actions .btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

.booking-cta-actions .btn-outline:hover {
    border-color: #94a3b8;
    background: #f8fafc;
}

.booking-cta-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.cta-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.05));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cta-illustration svg {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.cta-stats {
    display: flex;
    gap: 32px;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
}

.cta-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Booking CTA Responsive */
@media (max-width: 1024px) {
    .booking-cta-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .booking-cta-image {
        order: -1;
    }
    
    .cta-image-wrapper {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .booking-cta-section {
        padding: 60px 16px;
    }
    
    .booking-cta-card {
        padding: 32px 24px;
    }
    
    .booking-cta-title {
        font-size: 1.75rem;
    }
    
    .booking-cta-features {
        grid-template-columns: 1fr;
    }
    
    .booking-cta-actions {
        flex-direction: column;
    }
    
    .booking-cta-actions .btn {
        justify-content: center;
        width: 100%;
    }
}

/* Booking Section (preserved for backward compatibility) */
.booking-section {
    padding: 100px 24px;
    background: white;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-form-wrapper {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.booking-form-header {
    margin-bottom: 32px;
}

.booking-form-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 50px;
    margin-bottom: 12px;
}

.booking-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.booking-form-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(255,255,255,0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-select option {
    background: #1e3a5f;
    color: white;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--tab-green);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.form-message.error {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Booking Info Panel */
.booking-info {
    padding-left: 20px;
}

.booking-info-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(84, 160, 255, 0.12);
    color: #2e86de;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50px;
    margin-bottom: 16px;
}

.booking-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.booking-info-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-feature {
    display: flex;
    gap: 16px;
}

.info-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(78, 205, 196, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-feature-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.info-feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Doctors Section */
.doctors-section {
    padding: 100px 24px;
    background: var(--bg-cream);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.doctor-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(84, 160, 255, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-avatar {
    width: 100px;
    height: 100px;
    background: rgba(84, 160, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #54a0ff;
}

.doctor-info {
    padding: 24px;
}

.doctor-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.doctor-specialty {
    color: #44a08d;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.doctor-designation {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.doctor-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2e86de;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.doctor-book-btn:hover {
    gap: 10px;
}

/* About Section */
.about-section {
    padding: 100px 24px;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-stat {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
}

.about-stat:nth-child(1) { background: rgba(84, 160, 255, 0.1); }
.about-stat:nth-child(2) { background: rgba(78, 205, 196, 0.1); }

.about-stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-stat:nth-child(1) .about-stat-value { color: #2e86de; }
.about-stat:nth-child(2) .about-stat-value { color: #44a08d; }

.about-stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-card {
    background: linear-gradient(135deg, rgba(84, 160, 255, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.about-card-inner {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-card-text {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.value-check {
    width: 22px;
    height: 22px;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #44a08d;
    font-size: 12px;
}

/* Contact Section */
.contact-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    text-align: center;
    padding: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(78, 205, 196, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding: 32px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hours-item {
    text-align: center;
}

.hours-label {
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 8px;
}

.hours-value {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Footer */
.frontend-footer {
    background: #0a1628;
    color: white;
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ecdc4;
    font-size: 20px;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.15);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}

.footer-contact-icon {
    color: #4ecdc4;
    font-size: 18px;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.mobile-menu a {
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.mobile-menu a:hover {
    background: rgba(84, 160, 255, 0.1);
    color: #2e86de;
}

.mobile-menu hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 8px 0;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container,
    .booking-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        max-width: 500px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-services {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Validation styles */
.validation-message {
    color: #ff6b35;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
    border-color: #ff6b35;
}
/* =====================================================
   TOP SPECIALISTS SECTION
   ===================================================== */
.specialists-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.specialists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.specialist-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
}

.specialist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.specialist-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
}

.specialist-card.featured .specialist-info {
    padding: 32px;
}

.specialist-card.featured .specialist-name {
    color: white;
    font-size: 1.5rem;
}

.specialist-card.featured .specialist-title,
.specialist-card.featured .specialist-specialty {
    color: rgba(255,255,255,0.8);
}

.specialist-card.featured .specialist-stats {
    border-color: rgba(255,255,255,0.2);
}

.specialist-card.featured .stat-number {
    color: #4ecdc4;
}

.specialist-card.featured .stat-text {
    color: rgba(255,255,255,0.7);
}

.specialist-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(84, 160, 255, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.specialist-card.featured .specialist-image {
    height: 220px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(84, 160, 255, 0.2) 100%);
}

.specialist-avatar {
    font-size: 64px;
}

.specialist-card.featured .specialist-avatar {
    font-size: 80px;
}

.specialist-badge {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tab-green);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.specialist-info {
    padding: 24px;
}

.specialist-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.specialist-title {
    color: #2e86de;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.specialist-specialty {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.specialist-stats {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 16px;
}

.specialist-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2e86de;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.specialists-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   WHY BOOK WITH US SECTION
   ===================================================== */
.why-us-section {
    padding: 100px 24px;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content {
    padding-right: 20px;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(84, 160, 255, 0.15) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #2e86de;
}

.why-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-feature-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-us-stats-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    color: white;
}

.why-stats-header {
    text-align: center;
    margin-bottom: 32px;
}

.why-stats-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-stats-header p {
    color: rgba(255,255,255,0.7);
}

.why-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why-stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.why-stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.why-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #4ecdc4;
    margin-bottom: 4px;
}

.why-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* =====================================================
   ENHANCED ABOUT SECTION
   ===================================================== */
.about-section {
    padding: 100px 24px;
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-container {
    position: relative;
}

.about-image-main {
    background: linear-gradient(135deg, rgba(84, 160, 255, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: var(--radius-xl);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.about-image-placeholder span {
    font-size: 120px;
    display: block;
    margin-bottom: 16px;
}

.about-image-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--tab-blue);
    color: white;
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.badge-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 32px 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-feature-icon {
    width: 20px;
    height: 20px;
    color: #44a08d;
}

.about-mission {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid #4ecdc4;
    box-shadow: var(--shadow-sm);
}

.about-mission h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-mission p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    color: white;
}

.testimonials-section .section-badge {
    background: rgba(78, 205, 196, 0.2);
    color: #4ecdc4;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-description {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    background: rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.3);
}

.testimonial-rating {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--tab-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.author-detail {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    padding: 100px 24px;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(78, 205, 196, 0.3);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-icon {
    font-size: 1.25rem;
}

.faq-question h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 36px;
}

.faq-contact {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(84, 160, 255, 0.08) 0%, rgba(78, 205, 196, 0.08) 100%);
    border-radius: var(--radius-xl);
}

.faq-contact p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ===================================================== */
@media (max-width: 1200px) {
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialist-card.featured {
        grid-row: span 1;
    }
}

@media (max-width: 992px) {
    .why-us-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-content {
        padding-right: 0;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-image-badge {
        bottom: 20px;
        right: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .specialists-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .why-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BOOKING PORTAL STYLES
   ============================================ */

.booking-portal {
    min-height: 100vh;
    background: var(--bg-light);
}

/* Portal Header */
.booking-portal-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #3d7ab5 100%);
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.booking-portal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM32 0l-3.486 3.485L30 4.9 34.9 0H32zm5.657 0l-9.9 9.9 1.415 1.414L40.485 0h-2.828zM37.656 0L24 13.656 25.414 15.07 40.07 0h-2.414zm5.657 0L28.485 14.828 29.9 16.243 46.143 0h-2.83zm5.657 0L33.143 15.828 34.557 17.243 50.8 1l-.828-.828L48.97 0h2.83zM20.97 0L4.728 16.243 6.142 17.657 23.8 0h-2.83z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.portal-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.portal-header-content .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.portal-header-content .back-link:hover {
    color: white;
}

.portal-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.portal-header-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Portal Container */
.booking-portal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.booking-portal-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Main Form Area */
.booking-portal-main {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

/* Progress Steps */
.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.step.active .step-number {
    background: var(--tab-blue);
    color: white;
}

.step.completed .step-number {
    background: #10b981;
    color: white;
}

.step.completed .step-number::after {
    content: '✓';
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--text-dark);
}

.step-connector {
    width: 60px;
    height: 3px;
    background: #e2e8f0;
    margin: 0 8px;
    margin-bottom: 24px;
    border-radius: 2px;
}

.step-connector.active {
    background: linear-gradient(90deg, #10b981, #4ecdc4);
}

/* Form Steps */
.form-step {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-step-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-step-header p {
    color: var(--text-muted);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label svg {
    color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
    color: #1e293b;
}

.form-select option {
    color: #1e293b;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #54a0ff;
    box-shadow: 0 0 0 4px rgba(84, 160, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.validation-message {
    color: #ef4444;
    font-size: 0.85rem;
}

/* Consultation Mode Selector */
.consultation-mode-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.mode-option {
    position: relative;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 16px;
    transition: all 0.2s ease;
    background: white;
    display: block;
}

.mode-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mode-option:hover {
    border-color: #54a0ff;
    background: #f8fafc;
}

.mode-option.selected {
    border-color: #54a0ff;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    box-shadow: 0 0 0 4px rgba(84, 160, 255, 0.1);
}

.mode-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.mode-icon {
    color: #54a0ff;
    margin-bottom: 4px;
}

.mode-option.selected .mode-icon {
    color: #2563eb;
}

.mode-title {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.mode-desc {
    font-size: 0.85rem;
    color: #64748b;
}

.mode-option.selected .mode-title {
    color: #1e40af;
}

.mode-option.selected .mode-desc {
    color: #3b82f6;
}

/* Doctor Selection Grid */
.loading-doctors,
.no-doctors {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
}

.loading-doctors .spinner {
    margin: 0 auto 16px;
}

.no-doctors span {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.doctors-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.doctor-select-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.doctor-select-card:hover {
    border-color: #94a3b8;
    box-shadow: var(--shadow-sm);
}

.doctor-select-card.selected {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05), rgba(68, 160, 141, 0.05));
}

.doctor-select-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
}

.doctor-select-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-select-info {
    flex: 1;
    min-width: 0;
}

.doctor-select-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.doctor-select-info .specialty {
    font-size: 0.85rem;
    color: #4ecdc4;
    margin-bottom: 2px;
}

.doctor-select-info .designation {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.doctor-select-check {
    color: #4ecdc4;
    flex-shrink: 0;
}

/* Time Slots Grid */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.time-slot:hover:not(.unavailable) {
    border-color: #94a3b8;
}

.time-slot.selected {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(68, 160, 141, 0.1));
}

.time-slot.unavailable {
    background: #f1f5f9;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot .time {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.time-slot .unavailable-label {
    font-size: 0.75rem;
    color: #ef4444;
    display: block;
    margin-top: 4px;
}

/* Availability Slots Grid (from database) */
.availability-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.availability-slot {
    position: relative;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.availability-slot:hover:not(.unavailable) {
    border-color: #4ecdc4;
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.15);
    transform: translateY(-2px);
}

.availability-slot.selected {
    border-color: #4ecdc4;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08), rgba(68, 160, 141, 0.08));
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.2);
}

.availability-slot.unavailable {
    background: #f8fafc;
    border-color: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.availability-slot .slot-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.availability-slot .time-separator {
    color: #94a3b8;
}

.availability-slot .slot-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.availability-slot .slot-type {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
}

.availability-slot .slot-type.inperson {
    background: #dbeafe;
    color: #1d4ed8;
}

.availability-slot .slot-type.virtual {
    background: #f3e8ff;
    color: #7c3aed;
}

.availability-slot .slot-type.both {
    background: #ecfccb;
    color: #4d7c0f;
}

.availability-slot .slot-fee {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: #fef3c7;
    color: #92400e;
    font-weight: 600;
}

.availability-slot .slot-capacity {
    font-size: 0.8rem;
}

.availability-slot .capacity-available {
    color: #059669;
    font-weight: 500;
}

.availability-slot .capacity-full {
    color: #dc2626;
    font-weight: 500;
}

.availability-slot .slot-check {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #4ecdc4;
}

/* Loading and empty states for slots */
.loading-slots {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #64748b;
}

.no-slots-message {
    text-align: center;
    padding: 40px 20px;
    background: #fef3c7;
    border-radius: 12px;
    border: 1px solid #fcd34d;
}

.no-slots-message svg {
    color: #f59e0b;
    margin-bottom: 16px;
}

.no-slots-message h4 {
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.no-slots-message p {
    color: #a16207;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.no-slots-message .suggested-dates {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #fcd34d;
    color: #78350f;
}

.form-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 8px;
}

/* Pending notice in success state */
.pending-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    color: #92400e;
    font-size: 0.95rem;
    margin: 20px 0;
    border: 1px solid #fcd34d;
}

.pending-notice svg {
    flex-shrink: 0;
}

/* Booking Summary */
.booking-summary {
    background: #f8fafc;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.summary-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.summary-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.summary-section h3 svg {
    color: #4ecdc4;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item .value {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-item.highlight .value {
    color: #4ecdc4;
    font-size: 1.1rem;
}

.selected-doctor-summary {
    display: flex;
    align-items: center;
    gap: 16px;
}

.doctor-avatar-summary {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.selected-doctor-summary strong {
    display: block;
    margin-bottom: 4px;
}

.selected-doctor-summary p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.symptoms-summary {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Terms Checkbox */
.terms-checkbox {
    margin-bottom: 24px;
}

.terms-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #4ecdc4;
}

.terms-checkbox span {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.form-actions .btn-primary {
    background: var(--tab-blue);
    color: white;
    border: none;
}

.form-actions .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-actions .btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

.form-actions .btn-outline:hover {
    border-color: #94a3b8;
}

.form-actions .btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.form-actions .btn-success:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-actions .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Message */
.form-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Success Step */
.success-step {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: #10b981;
    margin-bottom: 24px;
}

.success-step h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.success-step > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.success-details {
    background: #f0fdf4;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 32px;
    display: inline-block;
    text-align: left;
}

.success-details .detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.success-details .detail-item:last-child {
    margin-bottom: 0;
}

.success-details .label {
    color: var(--text-muted);
    min-width: 60px;
}

.success-details .value {
    font-weight: 600;
    color: var(--text-dark);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.success-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.success-actions .btn-primary {
    background: var(--tab-blue);
    color: white;
    border: none;
}

.success-actions .btn-outline {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
}

/* Sidebar */
.booking-portal-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sidebar-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sidebar-phone {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #4ecdc4;
    text-decoration: none;
    margin-bottom: 4px;
}

.sidebar-phone:hover {
    text-decoration: underline;
}

.sidebar-hours {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list li::before {
    content: '✓';
    color: #4ecdc4;
    font-weight: bold;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #f59e0b;
}

.sidebar-card.highlight h3 {
    color: #92400e;
}

.sidebar-card.highlight p {
    color: #78350f;
}

.btn-emergency {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-emergency:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Booking Portal */
@media (max-width: 1024px) {
    .booking-portal-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-portal-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .portal-header-content h1 {
        font-size: 1.75rem;
    }
    
    .booking-portal-main {
        padding: 24px;
    }
    
    .booking-steps {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .step-connector {
        display: none;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .doctors-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .sidebar-card {
        min-width: 100%;
    }
}
/* Doctor Map List Styles */
.doctor-list-card .card-img {
  width: 300px;
  border-radius: 10px 0 0 10px;
  position: relative;
  height: inherit;
}

@media (max-width: 767.98px) {
  .doctor-list-card .card-img {
    border-radius: 10px 10px 0 0;
    width: 100%;
  }
}

.doctor-list-card .card-img img {
  border-radius: 10px 0 0 10px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .doctor-list-card .card-img img {
    border-radius: 10px 10px 0 0;
    width: 100%;
  }
}

.grid-overlay-item {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid-overlay-item .fav-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
}

.grid-overlay-item .fav-icon i {
  color: var(--gray-400);
}

.card-img-hover {
  transition: 0.5s all;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.card-img-hover img {
  transition: 0.5s all;
  border-radius: 10px 10px 0 0;
  width: 100%;
}

.card-img-hover:hover img {
  transform: scale(1.14);
  transition: 0.5s all;
}

.map-listing {
  height: calc(100vh - 145px);
  width: 100%;
}

@media (max-width: 1199.98px) {
  .map-listing {
    height: 450px;
  }
}

.doctor-available-profile {
  background: var(--light-500);
  border-radius: 10px;
  padding: 20px;
}

.doctor-available-profile .avail-img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
}

