* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2d4a2b;
    --color-secondary: #556b2f;
    --color-accent: #8b7355;
    --color-warning: #d4a574;
    --color-danger: #8b4513;
    --color-text: #2c2416;
    --color-text-light: #5a4a3a;
    --color-bg: #f5f1e8;
    --color-bg-dark: #e8e0d5;
    --color-camo: #4a5d3f;
    --color-border: #c8b896;
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-camo) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-warning);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--color-warning);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-sub {
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-warning);
}

.cta-btn {
    background: var(--color-warning);
    color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.cta-btn:hover {
    background: #c89660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.7);
    border-color: #fff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--color-primary);
    border-top: 2px solid var(--color-warning);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    max-height: 400px;
}

.mobile-menu a {
    padding: 1.25rem 2rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: rgba(212, 165, 116, 0.2);
    padding-left: 2.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    background:
        linear-gradient(rgba(45, 74, 43, 0.85), rgba(74, 93, 63, 0.75)),
        url('images/218_20250918000555_1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.03) 10px,
            rgba(0, 0, 0, 0.03) 20px
        );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-warning);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn {
    padding: 1.25rem 3rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--color-warning);
    color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

.btn-primary:hover {
    background: #c89660;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--color-bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-warning) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.featured {
    background: linear-gradient(to bottom, #fff 0%, #fffbf5 100%);
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.2);
}

.featured::before {
    background: linear-gradient(90deg, var(--color-warning) 0%, var(--color-danger) 100%);
    transform: scaleX(1);
}

.featured:hover {
    box-shadow: 0 16px 40px rgba(212, 165, 116, 0.3);
}

.featured-tag {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: var(--color-warning);
    color: var(--color-primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.4);
    z-index: 10;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
}

.deer {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.training {
    background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-danger) 100%);
}

.consultation {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-camo) 100%);
}

.service-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--color-text);
    position: relative;
    padding-left: 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-price {
    background: var(--color-primary);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.services-note {
    background: rgba(212, 165, 116, 0.15);
    border: 2px dashed var(--color-warning);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.services-note p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-style: italic;
}

/* Why Us Section */
.why-section {
    background: var(--color-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.why-card {
    background: #fff;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.why-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.why-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(45, 74, 43, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.stat-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-camo) 100%);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--color-warning);
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(45, 74, 43, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

.stars {
    color: var(--color-warning);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-bg-dark);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
}

.author-name {
    font-weight: 700;
    color: var(--color-text);
    font-size: 1.125rem;
}

.author-location {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Contact Section */
.contact-section {
    background: var(--color-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.contact-lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon-box {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.contact-icon-box.phone {
    background: linear-gradient(135deg, #2d4a2b 0%, #1f3a1f 100%);
}

.contact-icon-box.email {
    background: linear-gradient(135deg, #556b2f 0%, #4a5d3f 100%);
}

.contact-icon-box.location {
    background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
}

.contact-details strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--color-text);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.method-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.hours-box {
    background: var(--color-secondary);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.hours-box h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hours-box p {
    margin-bottom: 0.5rem;
}

.hours-note {
    font-size: 0.875rem;
    opacity: 0.8;
    font-style: italic;
}

.contact-form-wrapper {
    background: #fff;
    border: 3px solid var(--color-border);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: #fff;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--color-warning);
    color: var(--color-primary);
    border: none;
    border-radius: 8px;
    font-family: 'Russo One', sans-serif;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #c89660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-style: italic;
}

.footer-col h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-warning);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-warning);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-disclaimers {
    margin-bottom: 1.5rem;
}

.footer-disclaimers p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.parody-notice {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--color-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-story h3,
.about-team h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.about-story p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.timeline {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.timeline::before {
    display: none;
}

.timeline-item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--color-secondary);
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left-color: var(--color-warning);
}

.timeline-item::before {
    display: none;
}

.timeline-year {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--color-warning);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-intro {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top-color: var(--color-warning);
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-warning) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-member h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--color-warning);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-note {
    color: var(--color-danger);
    font-size: 0.7rem;
    font-style: italic;
    margin-top: 0.75rem;
}

/* Roadkill Section */
.roadkill-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg) 100%);
    position: relative;
}

.roadkill-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.roadkill-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.roadkill-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.roadkill-lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-warning) 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(8px);
}

.feature-item:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon.truck {
    background: linear-gradient(135deg, #4a5d3f 0%, #556b2f 100%);
}

.feature-icon.trophy {
    background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
}

.feature-icon.document {
    background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
}

.feature-icon.target {
    background: linear-gradient(135deg, #2d4a2b 0%, #1f3a1f 100%);
}

.feature-content h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.roadkill-cta {
    text-align: center;
}

.cta-note {
    margin-top: 1rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.roadkill-pricing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-warning) 100%);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.highlight {
    box-shadow: 0 6px 24px rgba(212, 165, 116, 0.25);
    background: linear-gradient(to bottom, #fff 0%, #fffbf5 100%);
}

.pricing-card.highlight::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--color-warning) 0%, var(--color-danger) 100%);
}

.pricing-card.highlight:hover {
    box-shadow: 0 12px 32px rgba(212, 165, 116, 0.35);
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--color-secondary);
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    color: var(--color-text);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
}

.disclaimer-box {
    background: rgba(139, 69, 19, 0.1);
    border: 2px dashed var(--color-danger);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.disclaimer-box p {
    color: var(--color-text);
    line-height: 1.7;
}

/* Game Commission Section */
.game-commission-section {
    background: var(--color-bg-dark);
}

.commission-intro {
    position: relative;
    margin-bottom: 4rem;
}

.commission-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--color-warning);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.commission-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.commission-image img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-text {
    position: absolute;
    bottom: -2rem;
    right: 3rem;
    max-width: 550px;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.7;
    padding: 2.5rem;
    background: #fff;
    border: 3px solid var(--color-primary);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: rotate(1deg);
    z-index: 10;
}

.commission-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.commission-card:nth-child(1) {
    grid-column: span 5;
}

.commission-card:nth-child(2) {
    grid-column: span 7;
}

.commission-card:nth-child(3) {
    grid-column: span 6;
}

.commission-card:nth-child(4) {
    grid-column: span 6;
}

.commission-card:nth-child(5) {
    grid-column: span 7;
}

.commission-card:nth-child(6) {
    grid-column: span 5;
}

@media (max-width: 1024px) {
    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commission-card:nth-child(1),
    .commission-card:nth-child(2),
    .commission-card:nth-child(3),
    .commission-card:nth-child(4),
    .commission-card:nth-child(5),
    .commission-card:nth-child(6) {
        grid-column: span 1;
    }
}

.commission-card {
    background: #fff;
    border: 3px solid var(--color-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.commission-card:nth-child(odd) {
    transform: rotate(-0.5deg);
}

.commission-card:nth-child(even) {
    transform: rotate(0.5deg);
}

.commission-card:nth-child(1) {
    border-color: var(--color-secondary);
    border-left-width: 6px;
}

.commission-card:nth-child(2) {
    border-color: var(--color-warning);
    border-top-width: 6px;
}

.commission-card:nth-child(3) {
    border-color: var(--color-danger);
    border-right-width: 6px;
}

.commission-card:nth-child(4) {
    border-color: var(--color-camo);
    border-bottom-width: 6px;
}

.commission-card:nth-child(5) {
    border-color: var(--color-secondary);
    border-left-width: 6px;
}

.commission-card:nth-child(6) {
    border-color: var(--color-warning);
    border-right-width: 6px;
}

.commission-card:hover {
    transform: translateY(-6px) rotate(0deg) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-width: 3px;
}

.commission-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.commission-card:hover .commission-icon-wrapper {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.commission-icon-wrapper.calendar {
    background: linear-gradient(135deg, #2d4a2b 0%, #1f3a1f 100%);
}

.commission-icon-wrapper.money {
    background: linear-gradient(135deg, #d4a574 0%, #c89660 100%);
}

.commission-icon-wrapper.badge {
    background: linear-gradient(135deg, #556b2f 0%, #4a5d3f 100%);
}

.commission-icon-wrapper.book {
    background: linear-gradient(135deg, #8b7355 0%, #6b5a45 100%);
}

.commission-icon-wrapper.crosshair {
    background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
}

.commission-icon-wrapper.scale {
    background: linear-gradient(135deg, #2d4a2b 0%, #4a5d3f 100%);
}

.commission-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.commission-stat {
    display: inline-block;
    background: var(--color-danger);
    color: #fff;
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

.commission-content p {
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.hot-take {
    background: var(--color-bg-dark);
    padding: 1rem;
    border-left: 4px solid var(--color-warning);
    border-radius: 6px;
    margin-top: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.hot-take strong {
    color: var(--color-danger);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.commission-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-camo) 100%);
    color: #fff;
    padding: 2.5rem 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 3px solid var(--color-warning);
    flex: 1;
    min-width: 220px;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, var(--color-warning) 0%, var(--color-danger) 50%, var(--color-warning) 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:nth-child(2):hover {
    transform: scale(1.08) rotate(2deg);
}

.stat-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--color-warning);
    line-height: 1;
    margin-bottom: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.commission-cta {
    position: relative;
    background: #fff;
    border: 4px dashed var(--color-warning);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: rotate(-0.5deg);
    transition: all 0.3s ease;
}

.commission-cta:hover {
    transform: rotate(0deg) scale(1.02);
    border-style: solid;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
}

.commission-cta h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.commission-cta > p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    background: var(--color-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: #fff;
    border: none;
    border-left: 4px solid var(--color-secondary);
    border-radius: 12px;
    padding: 2rem 2rem 2rem 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-warning) 0%, var(--color-danger) 100%);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h4 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-item strong {
    color: var(--color-text);
}

/* Responsive Styles */

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .roadkill-content {
        grid-template-columns: 1fr;
    }

    .commission-intro {
        margin-bottom: 3rem;
    }

    .commission-image {
        border-width: 3px;
    }

    .intro-text {
        position: static;
        max-width: 100%;
        margin-top: 2rem;
        transform: rotate(0deg);
        font-size: 1.05rem;
    }

    .commission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .timeline {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.25rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Header */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .cta-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.875rem;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-features {
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .feature-pill {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-scroll {
        bottom: 1rem;
        font-size: 0.75rem;
    }

    /* Sections */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .featured-tag {
        top: 0.75rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .why-card {
        padding: 1.5rem;
    }

    .why-number {
        font-size: 2.5rem;
    }

    .why-card h3 {
        font-size: 1.25rem;
    }

    .stat-banner {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.75rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    /* About */
    .about-content {
        gap: 2.5rem;
    }

    .about-story h3,
    .about-team h3 {
        font-size: 1.5rem;
    }

    .about-story p {
        font-size: 0.95rem;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .timeline-item {
        padding: 1.25rem;
    }

    .timeline-year {
        font-size: 1.75rem;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .team-avatar {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
    }

    .team-member h4 {
        font-size: 1rem;
    }

    .team-bio {
        font-size: 0.875rem;
    }

    /* Roadkill */
    .roadkill-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .roadkill-info h3 {
        font-size: 1.75rem;
    }

    .roadkill-lead {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .service-features-list {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .feature-item:hover {
        transform: translateX(0);
        transform: translateY(-4px);
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-content h4 {
        font-size: 1.125rem;
    }

    .roadkill-pricing {
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .disclaimer-box {
        padding: 1.5rem;
    }

    /* Game Commission */
    .commission-intro {
        margin-bottom: 2.5rem;
    }

    .commission-image {
        transform: rotate(0deg);
        border-width: 3px;
    }

    .commission-image:hover {
        transform: rotate(0deg) scale(1.01);
    }

    .intro-text {
        position: static;
        max-width: 100%;
        font-size: 1rem;
        padding: 1.5rem;
        margin-top: 1.5rem;
        transform: rotate(0deg);
        border-width: 2px;
    }

    .commission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .commission-card:nth-child(odd),
    .commission-card:nth-child(even) {
        transform: rotate(0deg);
    }

    .commission-card:hover {
        transform: translateY(-4px) rotate(0deg) scale(1.01);
    }

    .commission-card:nth-child(1),
    .commission-card:nth-child(2),
    .commission-card:nth-child(3),
    .commission-card:nth-child(4),
    .commission-card:nth-child(5),
    .commission-card:nth-child(6) {
        border-width: 3px;
    }

    .commission-stats {
        flex-direction: column;
    }

    .stat-card {
        min-width: 100%;
    }

    .stat-card:hover,
    .stat-card:nth-child(2):hover {
        transform: scale(1.03) rotate(0deg);
    }

    .commission-cta {
        transform: rotate(0deg);
        padding: 2rem;
    }

    .commission-card {
        padding: 2rem;
    }

    .commission-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .commission-card h3 {
        font-size: 1.5rem;
    }

    .commission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-big {
        font-size: 3rem;
    }

    .commission-cta {
        padding: 2rem;
    }

    .commission-cta h3 {
        font-size: 2rem;
    }

    .commission-cta > p {
        font-size: 1rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .author-name {
        font-size: 1rem;
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem 1.5rem 1.5rem 2rem;
    }

    .faq-item h4 {
        font-size: 1.125rem;
    }

    /* Contact */
    .contact-content {
        gap: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2.25rem;
    }

    .contact-lead {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .contact-methods {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        gap: 1.25rem;
    }

    .contact-icon-box {
        width: 56px;
        height: 56px;
    }

    .contact-details strong {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }

    .hours-box {
        padding: 1.5rem;
    }

    .hours-box h4 {
        font-size: 1.25rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-header h3 {
        font-size: 1.75rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo .logo-icon {
        width: 48px;
        height: 48px;
    }

    .footer-col h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-disclaimers p {
        font-size: 0.8rem;
    }

    .copyright {
        font-size: 0.875rem;
    }

    .parody-notice {
        font-size: 0.7rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .service-card,
    .why-card,
    .testimonial-card,
    .commission-card,
    .faq-item {
        padding: 1.5rem;
    }

    .stat-banner {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .timeline {
        gap: 1rem;
    }

    .timeline-item {
        padding: 1rem;
    }
}
