/* ============================================
   SHASHEMENE COMPREHENSIVE SPECIALIZED HOSPITAL
   Unified Design System - Built from Scratch
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Shashemene Hospital */
    --shashemene-primary: #0d9488;        /* Teal - Trust & Health */
    --shashemene-primary-dark: #0f766e;
    --shashemene-primary-light: #14b8a6;
    --shashemene-secondary: #7c3aed;       /* Purple - Innovation */
    --shashemene-accent: #f59e0b;          /* Amber - Energy */
    --shashemene-success: #059669;
    --shashemene-warning: #d97706;
    --shashemene-danger: #dc2626;
    
    /* Neutrals */
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Source Sans Pro', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--neutral-900);
    margin-bottom: var(--space-4);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-4);
    color: var(--neutral-600);
    font-size: 1.0625rem;
}

a {
    color: var(--shashemene-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--shashemene-primary-dark);
}

/* ============================================
   HEADER - UNIFIED DESIGN
   ============================================ */

.shashemene-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.shashemene-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.shashemene-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-4) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.shashemene-logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    text-decoration: none;
    color: var(--neutral-900);
}

.shashemene-logo img,
.shashemene-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.shashemene-logo-placeholder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    border-radius: 12px;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.shashemene-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--shashemene-primary);
    line-height: 1.2;
}

.shashemene-main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shashemene-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.shashemene-nav-item {
    position: relative;
}

.shashemene-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
}

.shashemene-nav-link.dropdown-trigger {
    cursor: pointer;
}

.shashemene-nav-link .dropdown-icon {
    font-size: 0.75rem;
    margin-left: var(--space-1);
    transition: transform 0.3s ease;
    color: var(--neutral-500);
}

.shashemene-nav-item.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--shashemene-primary);
}

.shashemene-nav-link::after {
    content: '';
    position: absolute;
    bottom: var(--space-1);
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, var(--shashemene-primary), var(--shashemene-secondary));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.shashemene-nav-link:hover,
.shashemene-nav-link.active {
    color: var(--shashemene-primary);
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(124, 58, 237, 0.05));
}

.shashemene-nav-link:hover::after,
.shashemene-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Modern Dropdown Menu */
.shashemene-nav-dropdown {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    min-width: 260px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: var(--space-3);
    padding-top: calc(var(--space-3) + 6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 1000;
    overflow: visible;
    backdrop-filter: blur(10px);
}

/* Invisible bridge area at top of dropdown to prevent hover gap */
.shashemene-nav-dropdown::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 6px;
    background: transparent;
    z-index: 1001;
    pointer-events: auto;
}

/* Keep dropdown open when hovering over nav item or dropdown - CSS fallback */
.shashemene-nav-item.has-dropdown:hover .shashemene-nav-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.shashemene-nav-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

/* Ensure dropdown items are always clickable */
.shashemene-nav-dropdown-item {
    pointer-events: auto;
    cursor: pointer;
}

.shashemene-nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: white;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 2;
    pointer-events: none;
}

.shashemene-nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    white-space: nowrap;
    margin-bottom: var(--space-1);
}

.shashemene-nav-dropdown-item:last-child {
    margin-bottom: 0;
}

.shashemene-nav-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    border-radius: 0 2px 2px 0;
    transition: height 0.25s ease;
}

.shashemene-nav-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--shashemene-primary);
    font-size: 0.875rem;
    transition: transform 0.25s ease;
}

.shashemene-nav-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
    color: var(--shashemene-primary);
    padding-left: var(--space-5);
    transform: translateX(4px);
}

.shashemene-nav-dropdown-item:hover::before {
    height: 70%;
}

.shashemene-nav-dropdown-item:hover i {
    transform: scale(1.1);
}

.shashemene-nav-dropdown-item.active {
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.12), rgba(13, 148, 136, 0.06));
    color: var(--shashemene-primary);
    font-weight: 600;
    padding-left: var(--space-5);
}

.shashemene-nav-dropdown-item.active::before {
    height: 70%;
}

.shashemene-header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    justify-content: flex-end;
}

/* ============================================
   HERO SECTION - UNIFIED DESIGN
   ============================================ */

.shashemene-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d9488 0%, #7c3aed 50%, #0f766e 100%);
    background-size: 200% 200%;
    animation: shashemeneGradientShift 15s ease infinite;
    overflow: hidden;
    margin-top: 80px;
}

@keyframes shashemeneGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.shashemene-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.shashemene-hero-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--space-16) var(--space-6);
    width: 100%;
}

.shashemene-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.shashemene-hero-text {
    color: white;
}

.shashemene-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.shashemene-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.shashemene-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: var(--space-8);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.shashemene-hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.shashemene-hero-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: var(--space-8);
}

.shashemene-hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    display: block;
}

.shashemene-hero-image-fallback {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shashemene-hero-image-fallback i {
    font-size: 120px;
    color: white;
    opacity: 0.3;
}

/* ============================================
   BUTTONS - UNIFIED DESIGN
   ============================================ */

.shashemene-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.shashemene-btn-primary {
    background: linear-gradient(135deg, var(--shashemene-primary) 0%, var(--shashemene-primary-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.shashemene-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.shashemene-btn-secondary {
    background: white;
    color: var(--shashemene-primary);
    border: 2px solid var(--shashemene-primary);
}

.shashemene-btn-secondary:hover {
    background: var(--shashemene-primary);
    color: white;
}

.shashemene-btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.shashemene-btn-outline:hover {
    border-color: var(--shashemene-primary);
    color: var(--shashemene-primary);
}

.shashemene-btn-lg {
    padding: var(--space-5) var(--space-8);
    font-size: 1.0625rem;
}

/* ============================================
   SECTIONS - UNIFIED DESIGN
   ============================================ */

.shashemene-section {
    padding: var(--space-24) var(--space-6);
}

.shashemene-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.shashemene-section-label {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(13, 148, 136, 0.1);
    color: var(--shashemene-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shashemene-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-4);
    color: var(--neutral-900);
}

.shashemene-section-description {
    font-size: 1.125rem;
    color: var(--neutral-600);
    line-height: 1.8;
}

/* ============================================
   CARDS - UNIFIED DESIGN
   ============================================ */

.shashemene-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.shashemene-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--shashemene-primary), var(--shashemene-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.shashemene-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--shashemene-primary);
}

.shashemene-card:hover::before {
    transform: scaleX(1);
}

.shashemene-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: var(--space-6);
}

.shashemene-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--neutral-900);
}

.shashemene-card-description {
    color: var(--neutral-600);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: var(--space-6);
}

.shashemene-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--shashemene-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.shashemene-card-link:hover {
    gap: var(--space-3);
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

.shashemene-grid {
    display: grid;
    gap: var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.shashemene-grid-2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.shashemene-grid-3 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.shashemene-grid-4 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ============================================
   STATISTICS
   ============================================ */

.shashemene-stats {
    background: linear-gradient(135deg, var(--shashemene-primary) 0%, var(--shashemene-secondary) 100%);
    padding: var(--space-24) var(--space-6);
    color: white;
}

.shashemene-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    max-width: 1400px;
    margin: 0 auto;
}

.shashemene-stat-item {
    text-align: center;
    padding: var(--space-8);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shashemene-stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    margin-bottom: var(--space-2);
    line-height: 1;
}

.shashemene-stat-label {
    font-size: 1.125rem;
    opacity: 0.95;
    font-weight: 600;
}

/* ============================================
   DOCTOR CARDS
   ============================================ */

.shashemene-doctor-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--neutral-200);
}

.shashemene-doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.shashemene-doctor-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: var(--neutral-100);
}

.shashemene-doctor-image-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.shashemene-doctor-image-placeholder i {
    font-size: 80px;
    color: white;
    opacity: 0.3;
}

.shashemene-doctor-info {
    padding: var(--space-6);
}

.shashemene-doctor-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--neutral-900);
}

.shashemene-doctor-specialty {
    color: var(--shashemene-primary);
    font-weight: 600;
    margin-bottom: var(--space-4);
    font-size: 1rem;
}

.shashemene-doctor-bio {
    color: var(--neutral-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* ============================================
   FOOTER - UNIQUE SHASHEMENE DESIGN
   ============================================ */

.shashemene-footer {
    position: relative;
    background: linear-gradient(180deg, #0a1929 0%, #0d1b2a 50%, #0a0e1a 100%);
    color: var(--neutral-300);
    padding: var(--space-24) var(--space-6) var(--space-8);
    overflow: hidden;
}

.shashemene-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--shashemene-primary) 0%, var(--shashemene-secondary) 50%, var(--shashemene-accent) 100%);
    background-size: 200% 100%;
    animation: shashemeneFooterGradient 3s ease infinite;
}

@keyframes shashemeneFooterGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.shashemene-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.shashemene-footer-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
    margin-bottom: var(--space-16);
}

.shashemene-footer-brand {
    position: relative;
}

.shashemene-footer-brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.shashemene-footer-brand-logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.shashemene-footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--shashemene-primary-light) 0%, var(--shashemene-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.shashemene-footer-brand-tagline {
    color: var(--neutral-400);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-6);
    max-width: 400px;
}

.shashemene-footer-social {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-top: var(--space-6);
}

.shashemene-footer-social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-300);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.shashemene-footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    transition: left var(--transition-base);
    z-index: 0;
}

.shashemene-footer-social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
}

.shashemene-footer-social-link:hover {
    border-color: var(--shashemene-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.shashemene-footer-social-link:hover::before {
    left: 0;
}

.shashemene-footer-social-link:hover i {
    color: white;
}

.shashemene-footer-section {
    position: relative;
}

.shashemene-footer-section-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    position: relative;
    padding-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.shashemene-footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--shashemene-primary), var(--shashemene-secondary));
    border-radius: var(--radius-full);
}

.shashemene-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shashemene-footer-links li {
    margin-bottom: var(--space-3);
    position: relative;
    padding-left: var(--space-4);
}

.shashemene-footer-links li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--shashemene-primary);
    opacity: 0;
    transition: all var(--transition-fast);
    font-weight: 600;
}

.shashemene-footer-links li:hover::before {
    opacity: 1;
    transform: translateX(4px);
}

.shashemene-footer-links a {
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    display: inline-block;
    position: relative;
}

.shashemene-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--shashemene-primary);
    transition: width var(--transition-base);
}

.shashemene-footer-links a:hover {
    color: var(--shashemene-primary-light);
    padding-left: var(--space-2);
}

.shashemene-footer-links a:hover::after {
    width: 100%;
}

.shashemene-footer-contact {
    position: relative;
}

.shashemene-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.shashemene-footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(13, 148, 136, 0.3);
    transform: translateX(4px);
}

.shashemene-footer-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--shashemene-primary), var(--shashemene-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.shashemene-footer-contact-info {
    flex: 1;
}

.shashemene-footer-contact-label {
    color: var(--neutral-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-1);
    font-weight: 600;
}

.shashemene-footer-contact-value {
    color: var(--neutral-300);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.shashemene-footer-contact-value a {
    color: var(--neutral-300);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.shashemene-footer-contact-value a:hover {
    color: var(--shashemene-primary-light);
}

.shashemene-footer-bottom {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shashemene-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.shashemene-footer-copyright {
    color: var(--neutral-500);
    font-size: 0.875rem;
    margin: 0;
}

.shashemene-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.shashemene-footer-bottom-links a {
    color: var(--neutral-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition-fast);
    position: relative;
}

.shashemene-footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--shashemene-primary);
    transition: width var(--transition-base);
}

.shashemene-footer-bottom-links a:hover {
    color: var(--shashemene-primary-light);
}

.shashemene-footer-bottom-links a:hover::after {
    width: 100%;
}

.shashemene-footer-powered {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    padding-left: var(--space-6);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--neutral-500);
}

.shashemene-footer-powered a {
    color: var(--shashemene-primary-light);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
}

.shashemene-footer-powered a:hover {
    color: var(--shashemene-secondary);
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .shashemene-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }
    
    .shashemene-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .shashemene-footer {
        padding: var(--space-16) var(--space-4) var(--space-6);
    }
    
    .shashemene-footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .shashemene-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-4);
    }
    
    .shashemene-footer-bottom-links {
        justify-content: center;
    }
    
    .shashemene-footer-powered {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: var(--space-4);
        justify-content: center;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.shashemene-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.shashemene-text-center { text-align: center; }
.shashemene-text-left { text-align: left; }
.shashemene-text-right { text-align: right; }

.shashemene-mt-1 { margin-top: var(--space-4); }
.shashemene-mt-2 { margin-top: var(--space-8); }
.shashemene-mt-3 { margin-top: var(--space-12); }

.shashemene-mb-1 { margin-bottom: var(--space-4); }
.shashemene-mb-2 { margin-bottom: var(--space-8); }
.shashemene-mb-3 { margin-bottom: var(--space-12); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .shashemene-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .shashemene-hero-image {
        order: -1;
    }
}

/* Mobile Menu Toggle */
.shashemene-mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(15, 23, 42, 0.45);
    -webkit-tap-highlight-color: transparent;
}

.shashemene-mobile-backdrop.active {
    display: block;
}

.shashemene-mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.shashemene-mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.shashemene-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.shashemene-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.shashemene-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu (enabled ≤1024px to match hamburger; panel below fixed header) */
.shashemene-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(100vw - 48px, 380px);
    max-width: 100%;
    padding: calc(72px + env(safe-area-inset-top, 0px)) var(--space-5) var(--space-6);
    background: white;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    visibility: hidden;
    pointer-events: none;
}

.shashemene-mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}

.shashemene-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shashemene-mobile-nav-item {
    border-bottom: 1px solid var(--border);
}

.shashemene-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.shashemene-mobile-nav-link:hover,
.shashemene-mobile-nav-link.active {
    color: var(--shashemene-primary);
    background: rgba(13, 148, 136, 0.05);
    padding-left: var(--space-6);
}

.shashemene-mobile-nav-link i {
    width: 24px;
    text-align: center;
    color: var(--shashemene-primary);
}

.shashemene-mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--neutral-700);
    text-align: left;
    transition: all var(--transition-fast);
}

.shashemene-mobile-dropdown-toggle:hover {
    color: var(--shashemene-primary);
    background: rgba(13, 148, 136, 0.05);
}

.shashemene-mobile-dropdown-toggle i:last-child {
    transition: transform 0.3s ease;
    color: var(--shashemene-primary);
}

.shashemene-mobile-dropdown-toggle.active i:last-child {
    transform: rotate(180deg);
}

.shashemene-mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(13, 148, 136, 0.02);
}

.shashemene-mobile-dropdown.active {
    max-height: 500px;
}

.shashemene-mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4) var(--space-3) var(--space-12);
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.shashemene-mobile-dropdown-item:hover,
.shashemene-mobile-dropdown-item.active {
    color: var(--shashemene-primary);
    background: rgba(13, 148, 136, 0.05);
    padding-left: var(--space-16);
}

.shashemene-mobile-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--shashemene-primary);
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .shashemene-main-nav {
        display: none;
    }
    
    .shashemene-mobile-menu-toggle {
        display: flex;
    }

    .shashemene-mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .shashemene-nav {
        display: none;
    }
    
    .shashemene-mobile-menu-toggle {
        display: flex;
    }

    .shashemene-mobile-menu {
        padding-bottom: calc(var(--space-8) + 72px + env(safe-area-inset-bottom, 0px));
    }
    
    .shashemene-header-actions {
        gap: var(--space-2);
    }
    
    .shashemene-btn {
        padding: var(--space-2) var(--space-4);
        font-size: 0.875rem;
    }
    
    .shashemene-btn span {
        display: none;
    }
    
    .shashemene-hero {
        min-height: 70vh;
        margin-top: 70px;
    }
    
    .shashemene-section {
        padding: var(--space-16) var(--space-4);
    }
    
    .shashemene-grid-2,
    .shashemene-grid-3,
    .shashemene-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .shashemene-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shashemene-nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
    }
    
    .shashemene-nav-dropdown::before {
        display: none;
    }
}
