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

:root {
    --primary: #0046aa;
    --primary-light: #4486f4;
    --primary-dark: #003180;
    --accent: #00c2ff;
    --accent-light: #e0f7ff;
    --bg: #f5f8fc;
    --bg-dark: #0a1128;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-border: rgba(0, 70, 170, 0.08);
    --text: #1d2530;
    --text-muted: #5e6d82;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --shadow: 0 10px 30px -5px rgba(0, 70, 170, 0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0, 70, 170, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

a:hover {
    color: var(--accent);
}

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

/* Page Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px; /* Space on left and right for mobile and tablet margins */
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 70, 170, 0.25);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 70, 170, 0.15);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #00a2ff 100%);
    color: var(--white);
}

.btn-accent:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 194, 255, 0.25);
}

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

.btn-danger:hover {
    background-color: #b91c1c;
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Header & Nav */
.site-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-image {
    max-height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 24px; /* Reduced gap to fit all items cleanly on desktop */
}

@media (max-width: 1200px) {
    .nav-menu {
        gap: 14px; /* Even smaller gap on smaller desktops/tablets to prevent overflow */
    }
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 550;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    white-space: nowrap; /* Prevent menu text or chevrons from wrapping */
    display: inline-flex; /* Group text and chevron icon on the same line */
    align-items: center;
    gap: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Navigation Dropdowns */
.nav-item-dropdown {
    position: relative;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-submenu li {
    width: 100%;
}

.nav-submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-weight: 550;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-submenu li a:hover {
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

/* Hover behavior for desktop navigation dropdowns */
@media (min-width: 769px) {
    .nav-item-dropdown:hover .nav-submenu {
        display: block;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
    padding: 4px;
}

/* Real-Time Hours Badge */
.status-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    gap: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.status-badge.open {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.closed {
    background-color: #fee2e2;
    color: #991b1b;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.open .pulse-dot {
    background-color: var(--success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse-green 1.8s infinite;
}

.closed .pulse-dot {
    background-color: var(--danger);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 1.8s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.badge-text-details {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-left: 24px;
}

.lang-btn {
    background: rgba(0, 70, 170, 0.05);
    border: 1px solid var(--card-border);
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    transition: var(--transition);
}

.lang-btn:hover {
    background-color: rgba(0, 70, 170, 0.1);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 4px);
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-hover);
    min-width: 110px;
    overflow: hidden;
    z-index: 1001;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown a {
    display: block;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background-color: var(--bg);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 140px 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.1) 0%, rgba(0, 70, 170, 0.05) 50%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 580px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--primary-dark) 30%, var(--primary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image-container {
    position: relative;
}

.hero-img-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 70, 170, 0.15);
    border: 6px solid var(--white);
    transform: rotate(1deg);
    transition: var(--transition);
}

.hero-img-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card:hover {
    background-color: var(--white);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 194, 255, 0.2);
}

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

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 70, 170, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* About & Contact Section (Split Columns) */
.about-contact-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.info-panel {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.info-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(0, 70, 170, 0.06);
    padding-bottom: 12px;
}

.about-panel p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.contact-list {
    list-style: none;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 70, 170, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-content h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-content p {
    font-size: 1.05rem;
    font-weight: 550;
    color: var(--text);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.hours-table tr {
    border-bottom: 1px solid rgba(0, 70, 170, 0.05);
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.hours-day {
    font-weight: 600;
    color: var(--text);
}

.hours-time {
    text-align: right;
    color: var(--text-muted);
}

/* Alerts and Notifications */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fca5a5;
}

/* Authentication Forms & Cards */
.auth-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 15px 40px rgba(0, 70, 170, 0.08);
}

.auth-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-align: center;
}

.auth-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 30px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid rgba(0, 70, 170, 0.1);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    background-color: var(--bg);
}

.form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 194, 255, 0.15);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.auth-links {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Developer Notification Area */
.dev-pin-toast {
    background-color: var(--bg-dark);
    color: #a5f3fc;
    border: 1px solid #0891b2;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-family: monospace;
    font-size: 0.9rem;
}

.dev-pin-toast strong {
    color: #22d3ee;
}

/* Blogs Grid List */
.blogs-section {
    padding: 80px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

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

.blog-card-body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 70, 170, 0.05);
}

.blog-content-text {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 24px;
    white-space: pre-wrap;
    flex-grow: 1;
}

/* Video embed container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Dashboard Layout */
.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 50px 0;
}

.dashboard-sidebar {
    background-color: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.user-profile-widget {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 70, 170, 0.06);
}

.avatar-initials {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 5px 15px rgba(0, 70, 170, 0.15);
}

.user-profile-widget h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.user-profile-widget p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.dash-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
}

.dash-menu-link:hover,
.dash-menu-link.active {
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dash-card {
    background-color: var(--white);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.dash-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 70, 170, 0.05);
    padding-bottom: 16px;
}

.dash-card-header h2 {
    font-size: 1.6rem;
}

/* Dashboard Table List */
.dash-table-wrapper {
    overflow-x: auto;
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.dash-table th {
    background-color: var(--bg);
    padding: 14px 16px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(0, 70, 170, 0.08);
}

.dash-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 70, 170, 0.05);
    font-size: 0.95rem;
}

.dash-table tr:hover td {
    background-color: rgba(0, 194, 255, 0.02);
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.no-data-notice {
    text-align: center;
    padding: 40px 0;
    color: var(--text-muted);
}

/* Site Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px 0;
    margin-top: auto;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--accent);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive Breakdown */
@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .header-container {
        height: 70px;
    }
    
    /* Responsive Menu Overlay */
    .mobile-nav-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 30px 24px;
        gap: 20px;
        border-bottom: 2px solid var(--primary);
    }
    
    .nav-menu.mobile-active {
        display: flex;
    }
    
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        text-align: center;
    }
    
    .nav-item-dropdown .dropdown-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
    }
    
    .nav-submenu {
        display: none;
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(0, 70, 170, 0.03);
        border-radius: var(--radius-sm);
        padding: 8px 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .nav-submenu li a {
        text-align: center;
    }
    
    .nav-item-dropdown.active .nav-submenu {
        display: block;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-container {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer Status Badge Contrast Override */
.footer-status-badge .badge-text-details {
    color: rgba(255, 255, 255, 0.7) !important;
}
