/* =====================================================
   KIDS Global Holdings - Corporate Website
   Theme: Navy Blue (#24263f) from Letterhead
   Compliance Badges: Single Horizontal Line
   ===================================================== */

:root {
    /* Primary Brand Colors from Letterhead */
    --primary-dark: #24263f;
    --primary-darker: #1a1c2e;
    --primary-light: #3a3d5f;
    --primary-lighter: #4a4d6f;

    /* Accent Colors - Refined */
    --accent-gold: #c9a961;
    --accent-gold-light: #d4b573;
    --accent-teal: #0d9488;
    --accent-teal-light: #14b8a6;
    --accent-blue: #2563eb;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Shadows with theme color */
    --shadow-sm: 0 1px 2px rgba(36, 38, 63, 0.05);
    --shadow-md: 0 4px 6px rgba(36, 38, 63, 0.08);
    --shadow-lg: 0 10px 15px rgba(36, 38, 63, 0.1);
    --shadow-xl: 0 20px 25px rgba(36, 38, 63, 0.12);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   Header & Navigation
   ===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header-top {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: var(--white);
    font-size: 14px;
    padding: 10px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.contact-info svg {
    stroke-width: 2;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    background: var(--white);
    padding: 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtext {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-teal);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    gap: 5px;
    align-items: center;
}

.nav-menu li a {
    display: block;
    padding: 12px 20px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: var(--primary-dark);
    background: var(--gray-50);
}

.nav-menu li.active a {
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* =====================================================
   Hero Section
   ===================================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 110px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary-light) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201,169,97,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13,148,136,0.12) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px 0;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    max-width: 800px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* =====================================================
   Buttons
   ===================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.4);
}

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

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

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* =====================================================
   Services Section
   ===================================================== */

.services-section {
    padding: 80px 0;
    background: var(--gray-50);
}

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

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-teal);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--white);
    stroke-width: 2.5;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-600);
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

/* =====================================================
   Why Choose Section
   ===================================================== */

.why-choose-section {
    padding: 80px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    color: var(--gray-600);
    line-height: 1.6;
}

.image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,148,136,0.15) 0%, rgba(37,99,235,0.15) 100%);
    z-index: 1;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   Compliance Section - SINGLE HORIZONTAL LINE
   ===================================================== */

.compliance-section {
    padding: 80px 0;
    background: var(--primary-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.compliance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 10% 50%, rgba(201,169,97,0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(13,148,136,0.08) 0%, transparent 50%);
}

.compliance-content {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.compliance-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.compliance-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FIXED: Single horizontal line with 4 equal badges */
.compliance-badges {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 10px 0;

    /* Custom scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(201,169,97,0.4) transparent;
}

.compliance-badges::-webkit-scrollbar {
    height: 6px;
}

.compliance-badges::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.compliance-badges::-webkit-scrollbar-thumb {
    background: rgba(201,169,97,0.4);
    border-radius: 10px;
}

.compliance-badges::-webkit-scrollbar-thumb:hover {
    background: rgba(201,169,97,0.6);
}

.badge-item {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 35px 30px;
    min-width: 260px;
    max-width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 24px rgba(201,169,97,0.2);
}

.badge-icon {
    font-size: 56px;
    margin-bottom: 18px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.badge-text strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--white);
}

.badge-text span {
    font-size: 14px;
    opacity: 0.85;
    color: rgba(255,255,255,0.9);
}

/* =====================================================
   CTA Section
   ===================================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* =====================================================
   Page Header
   ===================================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201,169,97,0.1) 0%, transparent 50%);
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    position: relative;
    z-index: 2;
}

/* =====================================================
   Page Content
   ===================================================== */

.page-content {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 50px 0 20px;
    font-weight: 700;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

/* =====================================================
   Contact Form
   ===================================================== */

.contact-form-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper,
.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3,
.contact-info-box h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}

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

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.info-item svg {
    flex-shrink: 0;
    stroke: var(--accent-teal);
}

.info-item strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

.business-hours {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 15px;
}

.business-hours svg {
    flex-shrink: 0;
    stroke: var(--accent-teal);
}

.business-hours strong {
    display: block;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 16px;
}

.business-hours p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* =====================================================
   Footer
   ===================================================== */

.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 30px;
}

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

.footer-col h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.85;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-teal);
}

.certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cert-badge {
    background: var(--accent-teal);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-list svg {
    flex-shrink: 0;
    stroke: var(--accent-teal);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 5px;
}

.compliance-note {
    font-size: 13px;
    opacity: 0.6;
}

/* =====================================================
   Admin Styles
   ===================================================== */

.admin-login, .admin-forgot {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    padding: 20px;
}

.login-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(36,38,63,0.2);
    max-width: 450px;
    width: 100%;
}

.login-card h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    text-align: center;
}

.login-card .subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.admin-dashboard {
    min-height: 100vh;
    background: var(--gray-50);
    padding-top: 110px;
}

.admin-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.admin-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.admin-header h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.page-list {
    display: grid;
    gap: 20px;
}

.page-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.page-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.page-item h3 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.page-item .slug {
    color: var(--gray-500);
    font-size: 14px;
}

.page-actions {
    display: flex;
    gap: 10px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* =====================================================
   Animations
   ===================================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   Responsive Design
   ===================================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .why-choose-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .compliance-badges {
        justify-content: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 640px) {
    .header-top-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .compliance-badges {
        padding: 10px 5px;
    }

    .badge-item {
        min-width: 220px;
        max-width: 220px;
        padding: 30px 25px;
    }

    .badge-icon {
        font-size: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-box {
        padding: 30px 25px;
    }
}

/* =====================================================
   Utility Classes
   ===================================================== */

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }

/* =====================================================
   Print Styles
   ===================================================== */

@media print {
    .site-header,
    .site-footer,
    .hero-buttons,
    .mobile-toggle,
    .contact-form-section {
        display: none;
    }

    .page-header {
        margin-top: 0;
        padding: 40px 0;
    }

    body {
        background: white;
    }
}
