/* ============================================
   Website Guy KY - Main Styles
   Retro Louisville Web Design
   ============================================ */

/* CSS Variables */
:root {
    --color-cream: #FDF6E9;
    --color-cream-dark: #F5EBD7;
    --color-brown: #5C3D2E;
    --color-brown-dark: #3D2518;
    --color-orange: #E85D24;
    --color-orange-light: #F07D4A;
    --color-yellow: #E5A836;
    --color-yellow-light: #F0C05A;
    --color-teal: #4A9BA3;
    --color-teal-dark: #3A7A80;
    --color-tan: #D4A574;
    --color-tan-light: #E8C9A5;

    --font-display: 'Archivo Black', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 2px 4px rgba(92, 61, 46, 0.1);
    --shadow-md: 0 4px 12px rgba(92, 61, 46, 0.15);
    --shadow-lg: 0 8px 24px rgba(92, 61, 46, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 16px;
    background: var(--color-orange);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top 0.3s ease;
    text-decoration: none;
}

.skip-link:focus {
    top: 16px;
    outline: 3px solid var(--color-brown-dark);
    outline-offset: 2px;
}

/* Focus Visible Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 3px solid var(--color-brown-dark);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(232, 93, 36, 0.25);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--color-orange);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-cream);
    color: var(--color-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-brown-dark);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--color-brown-dark);
    text-align: center;
}

h3 {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background-color: var(--color-orange-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-cta {
    background-color: white;
    color: var(--color-brown);
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-lg);
}

.btn-cta:hover {
    background-color: var(--color-cream);
}

.btn-call {
    font-size: 1.1rem;
    padding: 16px 32px;
}

.pricing-cta-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.nav-cta-primary {
    background: var(--color-orange) !important;
    font-weight: 600;
}

/* Check Icon */
.check-icon {
    width: 18px;
    height: 18px;
    fill: var(--color-teal);
    flex-shrink: 0;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--color-cream);
    border-bottom: 2px solid var(--color-brown);
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mascot {
    width: 40px;
    height: 44px;
    transition: width 0.3s ease, height 0.3s ease;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-orange);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-brown-dark);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.nav-cta:hover {
    background: var(--color-brown);
    color: white !important;
}

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

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-brown-dark);
    transition: 0.2s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    padding: 60px 0 40px;
    background: var(--color-cream);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.hero h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-brown);
    margin-bottom: 12px;
    line-height: 1.7;
    text-align: left;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--color-brown);
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.6;
    text-align: left;
    font-style: italic;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 24px;
}

.location-icon {
    font-size: 1.25rem;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(92, 61, 46, 0.2));
}


/* ============================================
   Section Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-brown);
    margin-top: 12px;
}

/* ============================================
   How It Works - Colorful Card Design
   ============================================ */
.how-it-works {
    padding: 80px 0;
    background: var(--color-cream);
}

.steps-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(92, 61, 46, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(92, 61, 46, 0.2);
}

/* Each card gets a unique accent color */
.step-card:nth-child(1) .step-card-header { background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%); }
.step-card:nth-child(2) .step-card-header { background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%); }
.step-card:nth-child(3) .step-card-header { background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-yellow-light) 100%); }
.step-card:nth-child(4) .step-card-header { background: linear-gradient(135deg, #3A5A80 0%, #2C4460 100%); }

.step-card-header {
    padding: 24px;
    text-align: center;
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: white;
}

.step-card-icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.step-card-body {
    padding: 28px 24px 32px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.step-card-text {
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.7;
    flex: 1;
}

/* Legacy step styles (keep for backwards compatibility) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
    padding: 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-yellow);
    margin-bottom: 8px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--color-brown);
}

.step-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-yellow);
}

.step-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.step h3 {
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.6;
}

/* ============================================
   Here's the Deal Section
   ============================================ */
.heres-the-deal {
    padding: 80px 0;
    background: var(--color-cream);
}

.deal-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: center;
    margin-bottom: 48px;
}

.deal-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 20px;
}

.deal-lead {
    font-size: 1.2rem;
    color: var(--color-brown);
    line-height: 1.7;
    margin-bottom: 24px;
}

.deal-services {
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-orange);
    margin-bottom: 24px;
}

.deal-services p {
    margin-bottom: 12px;
    color: var(--color-brown);
    line-height: 1.6;
}

.deal-services p:last-child {
    margin-bottom: 0;
}

.deal-services strong {
    color: var(--color-brown-dark);
}

.deal-text > p {
    color: var(--color-brown);
    line-height: 1.7;
    margin-bottom: 16px;
}

.deal-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-teal);
    font-style: italic;
    margin-top: 24px;
}

.deal-photo {
    text-align: center;
}

.deal-photo img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.deal-process {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-brown);
}

.deal-process h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 24px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.process-text {
    font-size: 0.9rem;
    color: var(--color-brown);
    line-height: 1.5;
}

.process-text strong {
    color: var(--color-brown-dark);
}

/* Responsive for Here's the Deal */
@media (max-width: 900px) {
    .deal-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .deal-photo {
        order: -1;
    }

    .deal-photo img {
        max-width: 250px;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .deal-text h2 {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }

    .deal-process {
        padding: 24px;
    }
}

/* ============================================
   Featured Examples Section
   ============================================ */
.examples {
    padding: 80px 0;
    background: var(--color-cream-dark);
}

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

.featured-example-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-brown);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.featured-example-info {
    padding: 20px;
}

.featured-example-info h4 {
    font-size: 1.1rem;
    color: var(--color-brown-dark);
    margin-bottom: 4px;
}

.example-industry {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--color-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.example-result {
    font-size: 0.9rem;
    color: var(--color-brown);
    margin-bottom: 12px;
    line-height: 1.4;
}

.example-link {
    font-size: 0.85rem;
    color: var(--color-orange);
    font-weight: 600;
}

.featured-example-card:hover .example-link {
    text-decoration: underline;
}

.examples-cta {
    text-align: center;
    margin-top: 40px;
}

.example-browser {
    background: var(--color-cream-dark);
    border-bottom: 2px solid var(--color-brown);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-tan);
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-tan);
}

.browser-dots span:first-child {
    background: #FF6B6B;
}

.browser-dots span:nth-child(2) {
    background: #FFD93D;
}

.browser-dots span:nth-child(3) {
    background: #6BCB77;
}

.example-screenshot {
    aspect-ratio: 16/10;
    background: var(--color-cream);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--color-tan);
    font-size: 0.875rem;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.example-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Demo Preview Screenshot */
.demo-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    border: none;
    transition: transform 0.4s ease;
}

/* Subtle zoom on hover */
.example-card:hover .demo-preview-img,
.featured-example-card:hover .demo-preview-img {
    transform: scale(1.02);
}

/* Iframe Preview Container - kept for legacy support */
.iframe-preview {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.iframe-preview iframe {
    width: 1440px;
    height: 900px;
    transform: scale(0.25);
    transform-origin: top left;
    border: none;
    pointer-events: none;
    transition: transform 3s ease-in-out;
}

/* Animated scroll on hover - scrolls the iframe content */
.example-card:hover .iframe-preview iframe,
.featured-example-card:hover .iframe-preview iframe {
    transform: scale(0.25) translateY(-20%);
}

/* Gradient overlay for smooth edges */
.iframe-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, var(--color-cream-dark), transparent);
    pointer-events: none;
}

.screenshot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    color: var(--color-tan);
}

.screenshot-placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.5;
}

.screenshot-placeholder span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-brown);
}

/* Examples Carousel for Industry Pages */
.examples-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.example-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-brown);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

@media (max-width: 900px) {
    .examples-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .examples-carousel {
        grid-template-columns: 1fr;
    }
}

.example-card h4 {
    padding: 16px 16px 8px;
    text-align: center;
    font-size: 1rem;
    color: var(--color-brown-dark);
}

.example-tag {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-teal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 16px 16px;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    padding: 80px 0;
    background: var(--color-cream);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 3px solid var(--color-brown);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.pricing-card .pricing-features {
    flex-grow: 1;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-brown);
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 24px;
}

.pricing-amount span {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-teal);
    color: white;
    font-family: var(--font-display);
    font-size: 1.5rem;
    padding: 8px 24px;
    border-radius: var(--radius-md);
    border: 3px solid var(--color-brown);
}

/* Two-Tier Pricing Layout */
.pricing-cards-two {
    max-width: 900px;
}

/* Three-Tier Pricing Layout */
.pricing-cards-three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

@media (max-width: 1024px) {
    .pricing-cards-three {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-cards-three .pricing-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-cards-three {
        grid-template-columns: 1fr;
    }
    .pricing-cards-three .pricing-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

.pricing-tier-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-teal);
    margin-bottom: 8px;
}

.pricing-amounts {
    margin-bottom: 24px;
}

.pricing-amounts .pricing-amount {
    margin-bottom: 4px;
    font-size: 2rem;
}

.pricing-monthly {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-brown);
}

.pricing-monthly span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
}

.pricing-card-featured {
    border-color: var(--color-orange);
    background: linear-gradient(to bottom, #fff9f5 0%, white 100%);
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
}

.pricing-ownership-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-brown);
    margin-top: 32px;
    font-style: italic;
}

/* Additional Services */
.additional-services {
    max-width: 600px;
    margin: 48px auto 32px;
    text-align: center;
}

.additional-services h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.additional-services > p {
    color: var(--color-brown);
    margin-bottom: 24px;
}

.services-grid {
    display: grid;
    gap: 12px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--color-brown);
    text-decoration: none;
    transition: all 0.2s ease;
}

.service-item:hover {
    background: var(--color-cream);
    border-color: var(--color-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-name {
    font-weight: 500;
    color: var(--color-brown-dark);
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-orange);
}

/* Partner Section */
.partner-section {
    padding: 60px 0;
    background: var(--color-brown-dark);
}

.partner-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.partner-text h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
}

.partner-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partner-text p a {
    color: var(--color-orange);
    text-decoration: none;
}

.partner-text p a:hover {
    text-decoration: underline;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.partner-link:hover {
    gap: 12px;
}

/* ============================================
   Industries Section (Compact)
   ============================================ */
.industries {
    padding: 48px 0;
    background: var(--color-cream-dark);
}

.industries-compact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.industry-chip {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-brown-dark);
    text-decoration: none;
    transition: all 0.2s;
}

.industry-chip:hover {
    background: var(--color-brown-dark);
    color: white;
    border-color: var(--color-brown-dark);
}

.industries-cta {
    text-align: center;
    margin-top: 24px;
}

.industries-see-all {
    font-size: 0.95rem;
    color: var(--color-orange);
    font-weight: 600;
    text-decoration: none;
}

.industries-see-all:hover {
    text-decoration: underline;
}

/* Industry Mascots Grid */
.industry-mascots {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.industry-mascot {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.industry-mascot:hover {
    transform: translateY(-8px);
}

.industry-mascot img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.industry-mascot span {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brown);
    text-align: center;
}

.industry-mascot:hover span {
    color: var(--color-orange);
}

@media (max-width: 768px) {
    .industry-mascots {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .industry-mascot img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .industry-mascots {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Reviews Section
   ============================================ */
.reviews {
    padding: 80px 0;
    background: var(--color-cream);
}

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

.review-card {
    background: white;
    border: 2px solid var(--color-brown);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-stars {
    color: var(--color-yellow);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-brown);
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-tan-light);
    overflow: hidden;
    border: 2px solid var(--color-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-brown-dark);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-brown-dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--color-brown);
}

/* ============================================
   CTA Footer
   ============================================ */
.cta-footer {
    background: var(--color-tan);
    padding: 32px 0;
    border-top: 3px solid var(--color-brown);
    border-bottom: 3px solid var(--color-brown);
}

.cta-footer .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-footer p {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-brown-dark);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-cream-dark);
    padding: 32px 0;
    position: relative;
}

.footer .container {
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-bottom: 16px;
    padding: 0 16px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--color-brown);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--color-orange);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--color-brown);
}

.footer-mascot {
    position: absolute;
    right: 40px;
    bottom: 20px;
}

.footer-mascot img {
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 24px;
        border-bottom: 2px solid var(--color-brown);
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-mascot img {
        max-width: 300px;
    }

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

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 360px;
        margin: 0 auto;
    }

    .featured-examples-grid {
        grid-template-columns: 1fr;
    }

    .example-screenshot {
        min-height: 180px;
        aspect-ratio: 16/10;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

    .footer-mascot {
        display: none;
    }

    .footer-nav {
        gap: 12px 20px;
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.contact-primary {
    text-align: center;
    margin-bottom: 60px;
}

.contact-primary h2 {
    margin-bottom: 12px;
}

.contact-primary-subtitle {
    font-size: 1.1rem;
    color: var(--color-brown);
    margin-bottom: 24px;
}

.btn-call-large {
    font-size: 1.25rem;
    padding: 20px 40px;
}

.contact-primary .contact-hours {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--color-brown);
    opacity: 0.8;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-cream-dark);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid var(--color-tan);
}

.contact-form-wrapper h3 {
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--color-brown);
}

.contact-form-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.simple-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--color-brown);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--color-cream);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.contact-form-simple .btn-submit {
    align-self: center;
    padding: 14px 32px;
}

/* Avatar initials style */
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .simple-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .btn-call-large {
        font-size: 1.1rem;
        padding: 16px 24px;
    }
}

/* ============================================
   Add-Ons Section
   ============================================ */
.addons-section {
    margin-top: 60px;
    padding: 40px;
    background: var(--color-cream-dark);
    border-radius: var(--radius-xl);
    border: 2px solid var(--color-tan);
}

.addons-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-brown-dark);
    margin-bottom: 32px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.addon-item {
    background: white;
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-brown);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.addon-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.addon-price {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-teal);
    margin-bottom: 8px;
}

.addon-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--color-brown);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .addons-grid {
        grid-template-columns: 1fr;
    }

    .addons-section {
        padding: 24px;
    }
}

/* ============================================
   FAQ Section - Accordion Style
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--color-cream-dark);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item-accordion {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-brown);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item-accordion:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-brown-dark);
    line-height: 1.4;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--color-cream);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-orange);
    transition: transform 0.3s ease;
}

.faq-item-accordion.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item-accordion.active .faq-question {
    background-color: var(--color-cream);
    color: var(--color-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item-accordion.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--color-orange);
    text-decoration: underline;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--color-orange-light);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   About Me Section
   ============================================ */
.about-section {
    padding: 80px 0;
    background: var(--color-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.about-photo {
    display: flex;
    justify-content: center;
}

.about-photo-frame {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 4px solid var(--color-brown);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-cream-dark);
    position: relative;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-teal-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-photo-placeholder span {
    font-family: var(--font-display);
    font-size: 4rem;
    color: white;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 16px;
    font-size: 2rem;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text p {
    font-size: 1rem;
    color: var(--color-brown);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid var(--color-tan-light);
}

.about-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-cream-dark);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-tan);
}

.about-value svg {
    color: var(--color-orange);
    flex-shrink: 0;
}

.about-value span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-brown-dark);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-photo-frame {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .about-text h2 {
        text-align: center;
    }

    .about-values {
        justify-content: center;
    }
}

/* About Section - Static Background Layout */
.about-section-static {
    background-image: url('../images/hunter-background.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 80px 0;
    min-height: 500px;
}

.about-section-static .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}

.about-section-static .about-text-side {
    flex: 0 0 45%;
    padding: 20px 0;
}

@media (max-width: 1024px) {
    .about-section-static .about-text-side {
        flex: 0 0 50%;
    }
}

/* Mobile Hunter image - hidden on desktop */
.about-hunter-mobile {
    display: none;
}

@media (max-width: 768px) {
    .about-section-static {
        background-image: none;
        background-color: #E85D24;
        padding: 0;
        min-height: auto;
    }

    .about-hunter-mobile {
        display: block;
        width: 70%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        padding-top: 30px;
    }

    .about-section-static .about-container {
        justify-content: center;
        padding: 30px 20px;
    }

    .about-section-static .about-text-side {
        flex: 0 0 100%;
        text-align: center;
    }
}

/* About Values Section - Simple Grid Layout */
.about-values-section {
    padding: 60px 0;
    background: var(--color-cream-dark);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-value-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--color-brown);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-value-card svg {
    color: var(--color-orange);
    margin-bottom: 16px;
}

.about-value-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 0.95rem;
    color: var(--color-brown);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-value-card {
        padding: 24px 20px;
    }
}

/* About Section - Full Width Horizontal Layout */
.about-section-wrapper {
    background: var(--color-cream);
    padding: 0;
}

.about-section-animated {
    background: linear-gradient(135deg, #E85D24 0%, #D54D1A 100%);
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 60px 60px 40px;
    gap: 60px;
}

.about-hunter-side {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: -40px 0 -40px -20px;
}

.about-hunter-img {
    width: 100%;
    max-width: 950px;
    height: auto;
    object-fit: contain;
}

.about-hunter-img.revealed {
    opacity: 1;
}

/* Static version */
.about-hunter-img.about-hunter-static {
    animation: none !important;
    opacity: 1;
    transform: none;
}

.about-hunter-img.about-hunter-static.revealed {
    animation: none !important;
    transform: none;
}

/* Zero-gravity floating animation */
@keyframes hunterFloat {
    0%, 100% {
        transform: translateY(0) rotate(-0.5deg);
    }
    25% {
        transform: translateY(-12px) rotate(0.3deg);
    }
    50% {
        transform: translateY(-6px) rotate(0.5deg);
    }
    75% {
        transform: translateY(-15px) rotate(-0.3deg);
    }
}

.about-text-side {
    flex: 1;
    padding: 20px 0;
}

.about-text-side h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-text-side .about-lead {
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-text-side p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text-side .about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.about-text-side .about-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(92, 61, 46, 0.6);
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    transition: background 0.2s, transform 0.2s;
}

.about-text-side .about-value:hover {
    background: rgba(92, 61, 46, 0.8);
    transform: translateY(-2px);
}

.about-text-side .about-value svg {
    color: white;
    flex-shrink: 0;
}

.about-text-side .about-value span {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

@media (max-width: 1024px) {
    .about-section-animated {
        border-radius: 20px;
        margin: 0 20px;
    }

    .about-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .about-hunter-side {
        flex: none;
        width: 100%;
        margin: -30px 0 0 0;
        padding: 0;
    }

    .about-hunter-img {
        width: 100%;
        max-width: 400px;
    }

    .about-text-side {
        text-align: center;
    }

    .about-text-side .about-values {
        justify-content: center;
    }
}

/* About Section - Full Background Image Variant (Legacy) */
.about-section-fullbg {
    padding: 0;
    overflow: hidden;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.about-fullbg-container {
    display: flex;
    justify-content: flex-end;
    min-height: 500px;
    padding: 60px;
}

.about-text-overlay {
    max-width: 550px;
    padding: 40px;
}

.about-section-fullbg .about-text-overlay h2 {
    color: white;
    text-align: left;
    margin-bottom: 16px;
    font-size: 2.25rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-section-fullbg .about-lead {
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-section-fullbg .about-text-overlay p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-section-fullbg .about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.about-section-fullbg .about-value {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-section-fullbg .about-value svg {
    color: white;
    flex-shrink: 0;
}

.about-section-fullbg .about-value span {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

@media (max-width: 1024px) {
    .about-section-fullbg {
        background-position: center top;
        background-size: auto 300px;
        background-color: var(--color-orange);
    }

    .about-fullbg-container {
        flex-direction: column;
        padding: 320px 20px 40px 20px;
        justify-content: flex-start;
    }

    .about-text-overlay {
        max-width: 100%;
        padding: 20px;
        text-align: center;
    }

    .about-section-fullbg .about-text-overlay h2 {
        text-align: center;
    }

    .about-section-fullbg .about-values {
        justify-content: center;
    }
}

/* ============================================
   ANIMATIONS & ENHANCEMENTS
   ============================================ */

/* ---- Hero Entrance 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);
    }
}

.hero h1 {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.15s forwards;
    opacity: 0;
}

.hero-tagline {
    animation: fadeInUp 0.8s ease-out 0.25s forwards;
    opacity: 0;
}

.hero-location {
    animation: fadeInUp 0.8s ease-out 0.35s forwards;
    opacity: 0;
}

.hero-ctas {
    animation: fadeInUp 0.8s ease-out 0.45s forwards;
    opacity: 0;
}

.hero-features {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* ---- Mascot Float Animation ---- */
@keyframes mascotFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.hero-mascot img {
    animation: mascotFloat 4s ease-in-out infinite;
}

/* ---- Hamburger to X Transformation ---- */
.mobile-menu-btn span {
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Background Gradient & Texture ---- */
.hero {
    background:
        radial-gradient(ellipse at 80% 20%, rgba(232, 93, 36, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(74, 155, 163, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
    position: relative;
}

/* Louisville Skyline Background */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../images/louisville-skyline.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C3D2E' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* ---- Location Badge Pill Style ---- */
.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--color-cream-dark) 0%, white 100%);
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid var(--color-tan);
    box-shadow: 0 2px 8px rgba(92, 61, 46, 0.1);
    font-size: 0.95rem;
    color: var(--color-brown-dark);
}

.hero-location .location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-orange);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-location .location-icon svg {
    fill: white;
    width: 16px;
    height: 16px;
}

/* ---- Enhanced Button Hover States ---- */
.btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background-color: var(--color-orange-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(232, 93, 36, 0.35);
}

.btn-secondary {
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--color-teal-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(74, 155, 163, 0.35);
}

.btn-cta:hover {
    background-color: var(--color-cream);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(92, 61, 46, 0.2);
}

.nav-cta {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(61, 37, 24, 0.3);
}

/* ---- Scroll-Based Compact Header ---- */
.navbar {
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(92, 61, 46, 0.15);
}

.navbar.scrolled .logo-mascot {
    width: 32px;
    height: 35px;
}

/* ---- Footer Wavy Divider ---- */
.footer {
    position: relative;
    overflow: visible;
    margin-top: 30px;
}

.footer::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 30' preserveAspectRatio='none'%3E%3Cpath d='M0,30 C200,10 400,25 600,15 C800,5 1000,20 1200,10 L1200,30 L0,30 Z' fill='%23F5EBD7'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.cta-footer {
    position: relative;
    z-index: 1;
    margin-bottom: -30px;
}

/* ---- Improved Footer Mascot ---- */
.footer .container {
    position: relative;
}

.footer-mascot {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.footer-mascot img {
    filter: drop-shadow(0 4px 8px rgba(92, 61, 46, 0.2));
    width: 70px;
    height: auto;
}

.footer-mascot:hover {
    transform: translateY(-50%) translateX(-3px) rotate(-5deg);
}

/* Show footer mascot on mobile too */
@media (max-width: 768px) {
    .footer-mascot {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin-top: 20px;
    }

    .footer-mascot img {
        width: 50px;
    }

    .footer-mascot:hover {
        transform: translateY(-5px) rotate(-5deg);
    }
}

/* ---- Reduced Motion Support ---- */
@media (prefers-reduced-motion: reduce) {
    .hero h1,
    .hero-subtitle,
    .hero-tagline,
    .hero-location,
    .hero-ctas,
    .hero-features {
        animation: none;
        opacity: 1;
    }

    .hero-mascot img {
        animation: none;
    }

    .btn,
    .nav-cta,
    .navbar,
    .logo,
    .footer-mascot,
    .mobile-menu-btn span,
    .skip-link {
        transition: none;
    }

    .footer-mascot:hover {
        transform: translateY(-50%);
    }

    @media (max-width: 768px) {
        .footer-mascot:hover {
            transform: none;
        }
    }
}

/* ============================================
   Louisville Skyline Background
   Adds subtle Louisville skyline to sections
   ============================================ */
.skyline-bg {
    position: relative;
    overflow: visible;
}

.skyline-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background-image: url('../images/louisville-skyline.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.skyline-bg > * {
    position: relative;
    z-index: 1;
}

/* Industry page hero with skyline overlay */
.industry-hero.skyline-hero {
    position: relative;
    overflow: hidden;
}

.industry-hero.skyline-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background-image: url('../images/louisville-skyline.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.industry-hero.skyline-hero .industry-hero-content,
.industry-hero.skyline-hero .container {
    position: relative;
    z-index: 2;
}

/* Stats section with skyline */
.stats-skyline {
    position: relative;
    background-color: var(--color-cream);
}

.stats-skyline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background-image: url('../images/louisville-skyline.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    opacity: 0.12;
    pointer-events: none;
}
