/* =========================================
   E&E STAFFING SERVICES - STYLESHEET
   ========================================= */

:root {
    /* Brand Colors (From Logo) */
    --color-primary-navy: #20295D;   /* Dark sky/blue */
    --color-primary-light: #2E3A73;
    
    --color-accent-magenta: #9E3167; /* E&E Text */
    --color-accent-cyan: #35A1DE;    /* Bright gradient star */
    --color-accent-green: #6DBB41;   /* Bottom leaf green */
    --color-accent-green-dark: #276C36;

    /* Neutrals */
    --color-white: #FFFFFF;
    --color-white-80: rgba(255, 255, 255, 0.8);
    --color-white-90: rgba(255, 255, 255, 0.9);
    --color-bg-light: #F7FAFC; /* Soft Light blue/gray */
    --color-text-main: #2D3748;
    --color-text-muted: #718096;
    --color-border: #E2E8F0;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, blinkmacsystemfont, sans-serif;
    --font-heading: 'Outfit', var(--font-sans);
    
    /* Spacing & Layout */
    --container-max: 1400px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(53, 161, 222, 0.4);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE 
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary-navy);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img, svg {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* =========================================
   UTILITIES & LAYOUT 
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container { padding: 0 var(--spacing-md); }
}

.section {
    padding: var(--spacing-xl) 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary-navy); }
.text-cyan { color: var(--color-accent-cyan); }
.text-magenta { color: var(--color-accent-magenta); }
.text-white { color: var(--color-white); }
.text-white-80 { color: var(--color-white-80); }
.bg-light { background-color: var(--color-bg-light); }
.bg-white { background-color: var(--color-white); }
.relative { position: relative; }
.z-10 { z-index: 10; }
.mt-6 { margin-top: 1.5rem; }

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-primary-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    background-color: rgba(53, 161, 222, 0.1);
    color: var(--color-accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.badge-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

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

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
    font-family: var(--font-sans);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.25rem; }

.btn-primary {
    background-color: var(--color-accent-magenta);
    color: var(--color-white);
    box-shadow: 0 4px 14px 0 rgba(158, 49, 103, 0.39);
}
.btn-primary:hover {
    background-color: #7A2552;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(158, 49, 103, 0.23);
}

.btn-secondary {
    background-color: var(--color-accent-cyan);
    color: var(--color-white);
}
.btn-secondary:hover {
    background-color: #2982B3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 161, 222, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary-navy);
    border-color: var(--color-primary-navy);
}
.btn-outline:hover {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn-outline-white:hover {
    background-color: var(--color-white);
    color: var(--color-primary-navy);
    transform: translateY(-2px);
}

/* Button Icon Animation */
.group .icon-arrow {
    transition: transform 0.3s ease;
}
.group:hover .icon-arrow {
    transform: translateX(4px);
}

/* =========================================
   NAVIGATION
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Image Logo Styles */
.brand-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-navy);
    line-height: 1.1;
    border-left: 2px solid var(--color-border);
    padding-left: 0.75rem;
}

.brand-img-small {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 992px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 0.95rem;
    white-space: nowrap;
}
.nav-links a.active {
    color: var(--color-accent-cyan);
    font-weight: 700;
}
.nav-links a:hover:not(.btn) {
    color: var(--color-accent-cyan);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--color-primary-navy);
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-btn { display: none; }
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(53, 161, 222, 0.08) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(158, 49, 103, 0.05) 0%, transparent 40%);
    z-index: 1;
    pointer-events: none; /* Ensure clicks pass through to buttons */
}

@media (min-width: 992px) {
    .hero {
        padding: 180px 0 120px;
        min-height: 85vh;
        display: flex;
        align-items: center;
    }
    
    .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 10;
    }
    
    .hero-content {
        max-width: none;
        text-align: left;
    }
}

.hero-image-wrapper {
    display: none;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        display: block;
    }
}

.hero-title {
    font-size: 2.75rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-primary-navy);
}

@media (min-width: 768px) {
    .hero-title { font-size: 3.5rem; line-height: 1.1; }
}

@media (min-width: 1200px) {
    .hero-title { font-size: 4rem; }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.25rem; }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
        position: relative;
        z-index: 20;
    }
}

.hero-text-wrapper {
    position: relative;
    z-index: 10;
}


/* Background Abstract Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}
.shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
}
.shape-1 {
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--color-accent-cyan);
    animation: float 10s ease-in-out infinite;
}
.shape-2 {
    bottom: 20%;
    right: 20%;
    width: 300px;
    height: 300px;
    background: var(--color-accent-magenta);
    animation: float 14s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* =========================================
   2. CREDIBILITY STRIP
   ========================================= */
.credibility-strip {
    background-color: var(--color-primary-navy);
    color: var(--color-white);
    padding: 1.5rem 0;
    border-top: 4px solid var(--color-accent-magenta);
    border-bottom: 4px solid var(--color-accent-cyan);
    overflow: hidden;
}

.credibility-header {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: scroll 25s linear infinite;
}
/* Duplicate content for seamless scroll normally done via JS, using fallback lengths here */

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.cred-item svg {
    color: var(--color-accent-cyan);
}

.cred-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
}

.active-status {
    color: var(--color-accent-green);
}
.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-accent-green);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(109, 187, 65, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(109, 187, 65, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(109, 187, 65, 0); }
    100% { box-shadow: 0 0 0 0 rgba(109, 187, 65, 0); }
}

/* =========================================
   3. CORE SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card-wide { grid-column: span 3; max-width: 800px; margin: 0 auto; }
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
    border-color: transparent;
}
.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}

.icon-cyan { background: rgba(53, 161, 222, 0.1); color: var(--color-accent-cyan); }
.icon-magenta { background: rgba(158, 49, 103, 0.1); color: var(--color-accent-magenta); }
.icon-green { background: rgba(109, 187, 65, 0.1); color: var(--color-accent-green); }
.icon-navy { background: rgba(32, 41, 93, 0.1); color: var(--color-primary-navy); }
.icon-gold { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--color-text-muted);
}

/* =========================================
   4. GOVERNMENT CONTRACTING
   ========================================= */
.gov-section {
    background-color: var(--color-primary-navy);
    position: relative;
    overflow: hidden;
}

.gov-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .gov-layout-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.gov-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 992px) {
    .gov-container {
        flex-direction: row;
        align-items: center;
    }
}

.gov-content {
    flex: 1;
    z-index: 2;
}

.gov-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.gov-checklists {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gov-checklists li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--color-white-90);
    font-size: 1.05rem;
}

.check-icon {
    color: var(--color-accent-magenta);
    flex-shrink: 0;
    margin-top: 2px;
}

.gov-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.glass-header {
    display: flex;
    gap: 8px;
    margin-bottom: 2rem;
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-accent-cyan);
}

.stat-label {
    color: var(--color-white);
    font-weight: 500;
}

.h-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.gov-visual .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}
.gov-visual .orb-1 {
    top: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: var(--color-accent-magenta);
    opacity: 0.4;
}
.gov-visual .orb-2 {
    bottom: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--color-accent-cyan);
    opacity: 0.3;
}

/* =========================================
   5. DIFFERENTIATORS
   ========================================= */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.diff-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-bg-light);
    transition: var(--transition);
}

.diff-card:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.diff-icon-wrapper {
    background-color: var(--color-white);
    color: var(--color-accent-cyan);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.diff-card:hover .diff-icon-wrapper {
    background-color: var(--color-accent-cyan);
    color: var(--color-white);
}

.diff-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.diff-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* =========================================
   6. WHO YOU SERVE
   ========================================= */
.serve-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .serve-cards { grid-template-columns: repeat(3, 1fr); }
}

.serve-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary-navy), var(--color-accent-cyan));
    z-index: 0;
}

.serve-card-inner {
    padding: 2.5rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.serve-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    color: var(--color-accent-magenta);
}

.serve-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.serve-card p {
    color: var(--color-text-muted);
}

/* =========================================
   7. FINAL CTA
   ========================================= */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-navy) 0%, #11152a 100%);
    color: var(--color-white);
    padding: 6rem 0;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(158, 49, 103, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.5rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-white-80);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-actions { flex-direction: row; }
}

.cta-contact {
    color: var(--color-white-80);
}
.cta-contact a {
    color: var(--color-accent-cyan);
    font-weight: 600;
    text-decoration: underline;
}

/* =========================================
   7.5 REQUEST STAFFING FORM
   ========================================= */
.request-section {
    background-color: #F7F9FB;
    padding: 80px 0;
}

.request-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .request-container {
        grid-template-columns: 4fr 6fr; /* 40% left, 60% right */
    }
}

.request-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-navy);
}

.request-left .subheadline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.request-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 2rem 0;
    width: 100%;
}

.quick-contact {
    margin-bottom: 2rem;
    font-weight: 500;
}
.quick-contact span {
    display: block;
    font-size: 1.25rem;
    color: var(--color-primary-navy);
    font-weight: 700;
    margin-top: 0.25rem;
}

.trust-box {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); /* Soft shadow */
}

.trust-box ul {
    margin-bottom: 1.5rem;
}

.trust-box ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.trust-box ul li svg {
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.trust-credentials {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
}
.trust-credentials div {
    margin-bottom: 0.25rem;
}

/* FORM CONTAINER */
.form-container {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Medium shadow */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px; /* 15-20px spacing */
}

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

@media (min-width: 640px) {
    .form-row-2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-size: 0.95rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px; /* Rounded corners */
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--color-white);
    color: var(--color-text-main);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(53, 161, 222, 0.15);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%24%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M6%209L12%2015L18%209%22%20stroke%3D%22%23718096%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
    padding-right: 2.5rem;
}

/* Services Needed Section */
.services-section {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.services-label {
    font-weight: 600;
    color: var(--color-text-main);
    display: block;
    font-size: 0.95rem;
}

.services-small {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.service-category {
    margin-bottom: 1.5rem;
}
.service-category h5 {
    font-size: 1rem;
    color: var(--color-primary-navy);
    margin-bottom: 0.75rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--color-text-main);
}
.checkbox-label input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--color-primary-navy);
    width: 16px;
    height: 16px;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}
.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}
.radio-label input[type="radio"] {
    accent-color: var(--color-primary-navy);
    width: 16px;
    height: 16px;
}

.btn-submit {
    width: 100%;
    background-color: #1E3A5F;
    color: #FFFFFF;
    padding: 16px;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}
.btn-submit:hover {
    background-color: #142844;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.form-footer-note {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .request-section {
        padding: 40px 0;
    }
    .form-container {
        padding: 20px;
    }
}

/* =========================================
   7.6 PARTNER WITH US FORM
   ========================================= */
.partner-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.partner-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .partner-container {
        grid-template-columns: 4fr 6fr; /* 40% left, 60% right */
    }
}

.partner-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary-navy);
}

.partner-left .subheadline {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.partner-divider {
    height: 1px;
    background-color: #E2E8F0;
    margin: 2rem 0;
    width: 100%;
}

.partner-value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin-bottom: 2rem;
}

.partner-capabilities {
    margin-bottom: 2rem;
}

.partner-capabilities li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.partner-capabilities li svg {
    color: var(--color-accent-green);
    flex-shrink: 0;
    margin-top: 2px;
}

.partner-credentials {
    background-color: #F7F9FB;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary-navy);
}

.partner-credentials div {
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
    font-weight: 500;
}
.partner-credentials div:last-child {
    margin-bottom: 0;
}
.partner-credentials span {
    font-weight: 400;
    color: var(--color-text-muted);
}

/* Partner Form Overrides */
.partner-section .form-container {
    background-color: #F7F9FB; /* Light gray container instead of white */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Same shadow but on gray */
}

.partner-section .form-control {
    background-color: var(--color-white);
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
}

.file-upload-input {
    width: 100%;
    padding: 1rem;
    border: 2px dashed var(--color-border);
    border-radius: 6px;
    text-align: center;
    background-color: var(--color-white);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-input:hover {
    border-color: var(--color-accent-cyan);
    background-color: rgba(53, 161, 222, 0.05);
}

.file-upload-input::file-selector-button {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: none;
    background-color: var(--color-primary-navy);
    color: white;
    cursor: pointer;
    margin-right: 1rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .partner-section {
        padding: 40px 0;
    }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: #11152A;
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-desc {
    color: var(--color-white-80);
    max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--color-white-80);
}
.footer-links ul li a:hover {
    color: var(--color-accent-cyan);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white-80);
}
.footer-contact ul li svg { color: var(--color-accent-cyan); }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white-80);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a:hover {
    color: var(--color-white);
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: var(--delay, 0s);
}

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

/* =========================================
   TRUST SIGNALS & REFINEMENTS
   ========================================= */

.trust-bar {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.trust-bar-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-navy);
}

.trust-item svg {
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.section {
    padding: var(--spacing-xl) 0;
}

.clean-layout {
    max-width: 900px;
    margin: 0 auto;
}

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */

.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 4/3;
    background: var(--color-bg-light);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(32, 41, 93, 0.9), transparent);
    color: var(--color-white);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-cyan);
    margin-bottom: 0.5rem;
}

.gallery-item-title {
    font-size: 1.15rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

.pro-spacing {
    margin-top: var(--spacing-lg);
}

/* Realistic Image Styles */
.img-realistic {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.img-realistic:hover {
    transform: scale(1.02);
}

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

