/* ===================================
   Forman Services LLC - Stylesheet
   Government Contracting Specialists
   =================================== */

/* Mobile-First Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors - Pink & Baby Blue */
    --primary-pink: #E91E8C;
    --primary-pink-light: #FF4DA6;
    --primary-pink-dark: #C71771;
    --baby-blue: #A8D8EA;
    --baby-blue-light: #D4F1F4;
    --baby-blue-dark: #75C4D4;
    
    /* Accent Colors - Trust & Power */
    --deep-navy: #1A2A52;
    --royal-blue: #2E5090;
    --gold-accent: #FFB84D;
    --rose-gold: #E8B4B8;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #F0F0F0;
    --medium-gray: #CCCCCC;
    --dark-gray: #666666;
    --charcoal: #333333;
    --black: #000000;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-pink) 0%, var(--baby-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--deep-navy) 0%, var(--royal-blue) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-pink-light) 0%, var(--primary-pink-dark) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(233, 30, 140, 0.1);
    --shadow-md: 0 4px 16px rgba(233, 30, 140, 0.15);
    --shadow-lg: 0 8px 32px rgba(233, 30, 140, 0.2);
    --shadow-xl: 0 12px 48px rgba(233, 30, 140, 0.25);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Global Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-tap-highlight-color: rgba(233, 30, 140, 0.2);
    -webkit-overflow-scrolling: touch;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-navy);
}

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

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

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.logo h1 span {
    color: var(--primary-pink);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-pink);
    border-radius: 3px;
    transition: var(--transition-normal);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    animation: pulseGlow 2s ease-in-out infinite;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary-nav {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary-nav:hover {
    transform: scale(1.05);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--baby-blue-light);
    color: var(--primary-pink);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    animation: fadeInScale 0.6s ease backwards;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--baby-blue-light) 0%, var(--off-white) 50%, #FFE5F1 100%);
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(233,30,140,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--primary-pink);
    animation: fadeInScale 0.6s ease backwards;
}

.hero-badge i {
    color: var(--gold-accent);
    animation: floatGentle 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-navy);
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--baby-blue) 50%, var(--primary-pink-light) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.hero-title .accent-text {
    color: var(--royal-blue);
    position: relative;
    display: inline-block;
}

.hero-title .accent-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    animation: shimmer 3s linear infinite;
    background-size: 200% 100%;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--baby-blue);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hero-image {
    animation: fadeInRight 1s ease;
    position: relative;
    z-index: 1;
}

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

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    font-size: 2rem;
    color: var(--primary-pink);
}

/* ===================================
   About Section
   =================================== */

.about {
    background: var(--white);
}

/* Photo Carousel */
.carousel-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.carousel-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--gradient-accent);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    will-change: transform;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn i {
    font-size: 1.25rem;
    color: var(--primary-pink);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    box-shadow: 0 0 10px rgba(233, 30, 140, 0.5);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

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

.about-image-wrapper img {
    width: 100%;
    height: auto;
}

.about-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--baby-blue);
    border-radius: 50%;
    z-index: -1;
}

.about-quote {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.about-quote i {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 1rem;
}

.about-quote p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-quote span {
    font-weight: 600;
    color: var(--baby-blue-light);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-pink);
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.about-highlights {
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.highlight-item p {
    margin: 0;
    color: var(--dark-gray);
}

.about-mission {
    background: var(--baby-blue-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-pink);
    margin: 2rem 0;
}

.about-mission h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.about-mission i {
    color: var(--primary-pink);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.services {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--baby-blue-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gold-accent);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: var(--white);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card.featured .service-icon i {
    color: var(--primary-pink);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.service-features i {
    color: var(--primary-pink);
}

.service-card.featured .service-features i {
    color: var(--baby-blue-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.service-card.featured .service-link {
    color: var(--baby-blue-light);
}

.service-link:hover {
    gap: 1rem;
}

.process-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.process-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--deep-navy);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    transition: var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    transition: transform 0.6s ease;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.process-arrow {
    color: var(--primary-pink);
    font-size: 1.5rem;
    animation: slideInLeft 1s ease infinite alternate;
}

/* ===================================
   Video Section
   =================================== */

.video-section {
    background: linear-gradient(135deg, #FFF5F8 0%, var(--baby-blue-light) 50%, #FFF5F8 100%);
    padding: 120px 0;
}

.video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding-bottom: 50.625%; /* 16:9 ratio for max-width container */
    height: 0;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.9),
        0 0 0 12px rgba(233, 30, 140, 0.15),
        0 30px 80px rgba(233, 30, 140, 0.3);
    background: var(--charcoal);
    border: 4px solid var(--white);
}

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

.video-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 
        0 10px 40px rgba(233, 30, 140, 0.15),
        0 0 0 1px rgba(233, 30, 140, 0.08);
    border: 2px solid rgba(233, 30, 140, 0.1);
}

.video-cta p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-family: var(--font-heading);
}

.video-cta .btn {
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 8px 25px rgba(233, 30, 140, 0.3);
}

/* ===================================
   GovCon Section
   =================================== */

.govcon {
    background: var(--white);
}

.govcon-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.govcon-info .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.govcon-benefits {
    margin: 3rem 0;
}

.govcon-benefits h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--deep-navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.benefit-item h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.govcon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--baby-blue-light);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-pink);
    font-size: 1.25rem;
}

.govcon-card {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-xl);
    position: sticky;
    top: 100px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-pink);
}

.govcon-card h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.govcon-card p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.testimonial-mini {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-pink);
}

.testimonial-mini p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-mini span {
    color: var(--baby-blue-light);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   Industries Section
   =================================== */

.industries {
    background: linear-gradient(135deg, var(--baby-blue-light) 0%, var(--off-white) 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    text-align: center;
}

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

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--baby-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon i {
    font-size: 2rem;
    color: var(--primary-pink);
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.industry-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.industries-cta {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.industries-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.industries-cta p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--deep-navy);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--primary-pink);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.cta-section {
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

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

/* ===================================
   Contact Section
   =================================== */

.contact {
    background: linear-gradient(135deg, var(--baby-blue-light) 0%, var(--off-white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info .lead {
    color: var(--baby-blue-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-pink);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--baby-blue-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p,
.contact-item a {
    color: var(--white);
    margin: 0;
}

.contact-item a:hover {
    color: var(--primary-pink);
}

.business-hours {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.business-hours h4 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-hours i {
    color: var(--primary-pink);
}

.business-hours p {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--deep-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.form-message {
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: var(--baby-blue-light);
    color: var(--deep-navy);
    display: block;
}

.form-message.error {
    background: #FFE5E5;
    color: #C71771;
    display: block;
}

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

.footer {
    background: var(--deep-navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column h3 span {
    color: var(--primary-pink);
}

.footer-column h4 {
    color: var(--baby-blue-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: var(--baby-blue-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--baby-blue-light);
    transition: var(--transition-normal);
}

.footer-column ul li a:hover {
    color: var(--primary-pink);
}

.footer-column ul li i {
    margin-right: 0.5rem;
    color: var(--primary-pink);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--royal-blue);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--baby-blue-light);
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--baby-blue-light);
}

.footer-legal a:hover {
    color: var(--primary-pink);
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Tasteful Text Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatGentle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 30, 140, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(233, 30, 140, 0.5);
    }
}

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

@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .govcon-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    * {
        animation-duration: 0.5s !important;
        transition-duration: 0.3s !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.4s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .btn-primary-nav {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        animation: fadeInUp 0.8s ease backwards;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .stat-item {
        text-align: left;
        width: 100%;
        padding: 1rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: var(--shadow-sm);
    }
    
    .services-grid,
    .industries-grid,
    .testimonials-grid,
    .benefits-grid,
    .govcon-features {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .about-text h3,
    .govcon-card h3 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    /* Better touch targets */
    .btn,
    .nav-link,
    .service-link,
    .contact-item a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Carousel Mobile Optimization */
    .carousel-container {
        margin: 2rem auto;
        padding: 0 0.5rem;
    }
    
    .carousel-slides {
        aspect-ratio: 4 / 3; /* Better for mobile screens */
    }
    
    .carousel-slide img {
        object-fit: contain;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .carousel-indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Video Section Mobile */
    .video-section {
        padding: 70px 0;
    }
    
    .video-wrapper {
        padding: 0 1.5rem;
    }
    
    .video-container {
        max-width: 100%;
        border-radius: 20px;
        margin-bottom: 2.5rem;
        border-width: 3px;
        box-shadow: 
            0 0 0 6px rgba(255, 255, 255, 0.9),
            0 0 0 10px rgba(233, 30, 140, 0.12),
            0 20px 50px rgba(233, 30, 140, 0.25);
    }
    
    .video-container iframe {
        border-radius: 16px;
    }
    
    .video-cta {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        margin: 0 1rem;
    }
    
    .video-cta p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .video-cta .btn {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    /* Improved spacing for mobile */
    .hero-container,
    .about-content,
    .govcon-content,
    .contact-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle,
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .industry-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .service-icon,
    .industry-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .industry-icon i {
        font-size: 1.5rem;
    }
    
    /* Optimize contact form for small screens */
    .contact-form {
        gap: 1rem;
    }
    
    .contact-info,
    .contact-form-wrapper,
    .govcon-card {
        padding: 1.5rem;
    }
    
    /* Better readability on small screens */
    body {
        font-size: 15px;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    /* Optimize images for mobile */
    .hero-image,
    .about-image {
        max-width: 100%;
    }
    
    .image-frame,
    .about-image-wrapper {
        border-radius: 15px;
    }
    
    /* Video Section Extra Small */
    .video-section {
        padding: 60px 0;
    }
    
    .video-wrapper {
        padding: 0 1rem;
    }
    
    .video-container {
        margin-bottom: 2rem;
        border-radius: 18px;
        border-width: 2px;
        box-shadow: 
            0 0 0 4px rgba(255, 255, 255, 0.9),
            0 0 0 8px rgba(233, 30, 140, 0.1),
            0 15px 40px rgba(233, 30, 140, 0.2);
    }
    
    .video-container iframe {
        border-radius: 14px;
    }
    
    .video-cta {
        padding: 2rem 1.5rem;
        border-radius: 18px;
        margin: 0 0.5rem;
    }
    
    .video-cta p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    /* Stack process steps vertically */
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    /* Adjust footer for small screens */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    /* Improve touch targets */
    .contact-item {
        padding: 0.5rem 0;
    }
    
    /* Optimize hero stats layout */
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.75rem;
    }
    
    /* Better spacing for mobile content */
    .about-highlights,
    .highlight-item {
        margin-bottom: 1rem;
    }
    
    /* Optimize testimonials for mobile reading */
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}